smarty报错,该怎么处理
程序员文章站
2022-05-04 20:36:19
...
smarty报错
smarty属性报错:
Notice: Undefined property: Smarty::$cacheing in D:\develop\PHP\VertrigoServ\www\learn\smarty\libs\Smarty.class.php on line 669
smarty引擎异常:
Fatal error: Uncaught exception 'SmartyException' with message 'Call of unknown method 'hisplay'.' in D:\develop\PHP\VertrigoServ\www\learn\smarty\libs\sysplugins\smarty_internal_templatebase.php on line 758
我是用vertrigo当WEB服务器的,是用apache+mysql,应该是没问题的啊...
但是为什么新建模板就是报错..- -
------解决方案--------------------
sorry 看错了。
Undefined property: Smarty::$cacheing
属性$cacheing没有定义。
Call of unknown method 'hisplay'。。。。
调用一个未知的方法(history)...
------解决方案--------------------
搞清楚二点。
1、你的smarty是否是官方正式版本。
2、上面说的很清楚,缺少变量,你要注册下,比如$smarty->assign('cacheing', 这里是值);
------解决方案--------------------
贴出你执行的代码。看你是否遵循smarty写法。
------解决方案--------------------
你确定是
$smarty->display('');
而不是
$smarty->hisplay("");
?
smarty属性报错:
Notice: Undefined property: Smarty::$cacheing in D:\develop\PHP\VertrigoServ\www\learn\smarty\libs\Smarty.class.php on line 669
smarty引擎异常:
Fatal error: Uncaught exception 'SmartyException' with message 'Call of unknown method 'hisplay'.' in D:\develop\PHP\VertrigoServ\www\learn\smarty\libs\sysplugins\smarty_internal_templatebase.php on line 758
我是用vertrigo当WEB服务器的,是用apache+mysql,应该是没问题的啊...
但是为什么新建模板就是报错..- -
------解决方案--------------------
sorry 看错了。
Undefined property: Smarty::$cacheing
属性$cacheing没有定义。
Call of unknown method 'hisplay'。。。。
调用一个未知的方法(history)...
------解决方案--------------------
搞清楚二点。
1、你的smarty是否是官方正式版本。
2、上面说的很清楚,缺少变量,你要注册下,比如$smarty->assign('cacheing', 这里是值);
------解决方案--------------------
贴出你执行的代码。看你是否遵循smarty写法。
------解决方案--------------------
你确定是
$smarty->display('');
而不是
$smarty->hisplay("");
?
相关文章
相关视频