简体   繁体   中英

Joomla 3.1.5 & extplorer 2.1.3 install issues

I get the following errors when installing with Joomla! version, 3.1.5. I am not sure if this is a compatibility issue or a software bug. Has anyone else seen this or no how I can get around this?

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

You should turn strict error reporting off in your php.ini

Find the following:

error_reporting = ... 

and change to:

error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT

I dont think Joomla is ready for PHP5.4 yet.

You could try checking your php.ini value for error_reporting and add | ~E_STRICT | ~E_STRICT to it to stop it reporting these probelms

1st Method

in your php code use error_reporting(E_ALL ^ E_STRICT);

2nd Method

in your php.ini, with change error_reporting = E_ALL to error_reporting = E_ALL & ~E_STRICT . Please make sure to restart Apache server after the changes are made to php.ini

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM