Magento模块中的Mydomain错误
我正在Magento的本地机器上安装B2B扩展程序,没有任何问题。 但是在为客户端服务器做同样的事情时,我遇到了以下错误:
404 Not Found
The server can not find the requested page:
mydomain.com/errors/report.php?id=264218583315&skin=default (port 80)
Please forward this error screen to mydomain.com's WebMaster.
我需要做哪些改变? 我在Observer.php文件中替换了以下第33行。
Mage::app()->getResponse()->setRedirect(Mage::helper('adminhtml')->getUrl("customer/account/login"));
同
Mage::app()->getResponse()->setRedirect("http://mydomain.com/magento/index.php/customer/account/login"));
另外当我插入的网址
http://mydomain.com/magento/index.php/customer/account/login
在浏览器中直接工作正常。 但在这里重定向到404错误页面。
我需要对Magento中的任何文件或其他配置进行一些更改吗?
我猜这是配置错误或安装了B2B扩展。 您的配置存储在core_config表中,也尝试重新安装B2B扩展。 正如LittleBigDev所述,它也可能是访问权限的问题。 并检查本地和服务器上的magento版本是否相同。
文件的访问权限应该是644.对于文件夹,它应该是755.对于Mage文件夹的文件和PEAR的lib文件,它应该是550
你也应该检查文件的所有者设置。
欲了解更多信息,请查看http://www.magentocommerce.com/wiki/groups/227/resetting_file_permissions/
链接地址: http://www.djcxy.com/p/11183.html