0

我已经将 joomla 网站从服务器迁移到我的本地主机,最初我没有得到网站的首页内容,它只是一个白屏,但管理面板工作正常,所有内容都在那里,然后我改变了错误在此站点显示以下错误后,在 joomla 管理面板内的全局站点配置中报告为最大值

Strict Standards: Declaration of fancyboxClass::getHeaderLibrary() should be compatible with JAPopupHelper::getHeaderLibrary($bodyString, $identifierString, $headerString) in C:\xampp\htdocs\joomla\plugins\system\japopup\fancybox\fancybox.php on line 18

Strict Standards: Declaration of oseLanguage::set() should be compatible with JObject::set($property, $value = NULL) in C:\xampp\htdocs\joomla\administrator\components\com_ose_cpu\oseregistry\oseLanguage.php on line 130

Strict Standards: Declaration of oseMscList::drawTree() should be compatible with oseMscListDraw::drawTree() in C:\xampp\htdocs\joomla\administrator\components\com_ose_cpu\membership\oseMscListDraw.php on line 365

Strict Standards: Non-static method oseMscConfig::getConfig() should not be called statically, assuming $this from incompatible context in C:\xampp\htdocs\joomla\components\com_osemsc\init.php on line 44

Strict Standards: Static function osePaymentTaxExtend::getTaxAmount() should not be abstract in C:\xampp\htdocs\joomla\administrator\components\com_ose_cpu\payment\osePaymentTax.php on line 135 

我该如何解决这些错误。谢谢。

4

2 回答 2

0

php.ini您可以通过或关闭本地服务器上的严格错误.htaccess

E_ALL & ~E_STRICT

于 2013-11-01T08:25:17.407 回答
0

严格的标准在 PHP 5.4 中非常普遍。最好的办法是通过编辑本地主机上的 php.ini 文件并更改以下内容来关闭严格的错误报告:

error_reporting = E_ALL 

对此:

error_reporting = E_ALL & ~E_STRICT

否则,只需为您的 localhost 下载 PHP 5.3 扩展

希望这可以帮助

于 2013-11-01T08:58:36.687 回答