Joomla 3.1.5& extplorer 2.1.3安装问题

时间:2013-09-16 19:22:18

标签: php joomla joomla3.0

使用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

3 个答案:

答案 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)

第一种方法

你的php代码中的

使用error_reporting(E_ALL ^ E_STRICT);

第二种方法

在您的php.ini中

,将error_reporting = E_ALL更改为error_reporting = E_ALL & ~E_STRICT。在对php.ini

进行更改后,请确保重新启动Apache服务器