簡體   English   中英

在本地主機上遷移后的Joomla

[英]Joomla after migration on localhost

我已經將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 

我該如何解決這些錯誤。 謝謝。

您可以通過php.ini.htaccess關閉本地服務器上的嚴格錯誤。

E_ALL和〜E_STRICT

嚴格的標准在PHP 5.4中非常流行。 最好的辦法是通過在本地主機上編輯php.ini文件並更改此設置來關閉嚴格的錯誤報告:

error_reporting = E_ALL 

對此:

error_reporting = E_ALL & ~E_STRICT

否則,只需為您的本地主機下載PHP 5.3擴展

希望這可以幫助

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM