我的商家网站存在问题,并且在我的网站上不断给我以下错误并登录:
Strict Standards: Accessing static property JCache::$_handler as non static in /home/doveheal/public_html/libraries/joomla/cache/cache.php on line 422
同样在我的网站上是这个错误:
Strict Standards: Only variables should be assigned by reference in /home/doveheal/public_html/plugins/content/jw_allvideos/jw_allvideos.php on line 42
我已经看过许多关于如何通过更改XAMPP中的严格标准设置来修复它的教程,但这不适用于我,因为我不使用XAMPP。说实话,我没有创建网站(其他人做了,它交给了我),我真的很想弄清楚如何解决这个问题。
任何帮助将不胜感激!
答案 0 :(得分:0)
您将在localhost(Xampp)上访问php.ini文件。打开它并搜索:
error_reporting =
您需要更改为=
之后的值:
error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
更改后,请确保重新启动Apache。
但是,您应该向 jw_allvideos 的开发者标记,以便他们可以修复它。
希望这有帮助