使用Joomla安装时出现以下错误!版本,3.1.5。我不确定这是兼容性问题还是软件错误。还有其他人看到过这个或者没有我能解决这个问题吗?
Strict Standards: Non-static method ext_Lang::detect_lang() should not be called statically in D:\Coral\UniServer\www\Joomla\administrator\components\com_extplorer\include\init.php on line 103
Strict Standards: Non-static method ext_Result::init() should not be called statically in D:\Coral\UniServer\www\Joomla\administrator\components\com_extplorer\admin.extplorer.php on line 97
Strict Standards: Non-static method ext_Result::empty_errors() should not be called statically in D:\Coral\UniServer\www\Joomla\administrator\components\com_extplorer\include\result.class.php on line 40
Strict Standards: Non-static method ext_Result::empty_messages() should not be called statically in D:\Coral\UniServer\www\Joomla\administrator\components\com_extplorer\include\result.class.php on line 41
Strict Standards: Declaration of ext_List::execAction() should be compatible with ext_Action::execAction($dir, $item) in D:\Coral\UniServer\www\Joomla\administrator\components\com_extplorer\include\list.php on line 387
Back to Joomla! eXtplorer Logo Current mode: extplorer [Logout]. You could switch to ftp mode.
Strict Standards: Non-static method extHTML::loadExtJS() should not be called statically, assuming $this from incompatible context in D:\Coral\UniServer\www\Joomla\administrator\components\com_extplorer\include\list.php on line 374
答案 0 :(得分:0)
您应该在 php.ini
中关闭严格的错误报告找到以下内容:
error_reporting = ...
并改为:
error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
答案 1 :(得分:0)
我不认为Joomla已经为PHP5.4做好了准备。
您可以尝试检查error_reporting
的php.ini值并向其添加| ~E_STRICT
以阻止其报告这些问题
答案 2 :(得分:0)
使用error_reporting(E_ALL ^ E_STRICT);
,将error_reporting = E_ALL
更改为error_reporting = E_ALL & ~E_STRICT
。在对php.ini