我有这个网站,我正在用 Joomla 建立!2.5. 这是一个购物车,当我将它上传到我的服务器时,我正在我的 Xampp 上构建它,它在首页上没有显示任何内容。管理部分还可以,但首页没有显示任何内容。当我为开发打开错误报告时,我收到以下错误。
Strict Standards: Only variables should be assigned by reference in /home/sites/mydomain/public_html/beta/plugins/system/jblibrary/jblibrary.php on line 26
Strict Standards: Only variables should be assigned by reference in /home/sites/mydomain/public_html/beta/plugins/system/jblibrary/jblibrary.php on line 55
Strict Standards: Only variables should be assigned by reference in /home/sites/mydomain/public_html/beta/plugins/system/jatypo/jatypo.php on line 55
Fatal error: t3import not found object: core.libs.browser in /home/sites/mydomain/public_html/beta/plugins/system/jat3/jat3/core/common.php on line 33
我查看了其中一个引发错误的文件,下面的行似乎是问题所在。
$document =& JFactory::getDocument();
我试图将其修改为;
$document = JFactory::getDocument();
但是仍然抛出错误。我也尝试过切换 PHP 版本,但错误仍然存在。我似乎无法弄清楚为什么该站点在我的本地主机上而不是在我的服务器上运行。有任何想法吗?谢谢