Mydomain error in Magento module

百般思念 提交于 2019-12-08 17:39:52

问题


I am installing a B2B extension on a local machine for Magento without trouble. But while doing the same for the client server I am getting following error:

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.

Where do I need to do the changes? I replaced the following line 33 in Observer.php file.

    Mage::app()->getResponse()->setRedirect(Mage::helper('adminhtml')->getUrl("customer/account/login"));

with

Mage::app()->getResponse()->setRedirect("http://mydomain.com/magento/index.php/customer/account/login"));

Also when I insert the url

http://mydomain.com/magento/index.php/customer/account/login

in the browser directly it works fine. But here its redirecting to 404 error page.

Do I need to make some changes to any file in Magento or some other configurations?


回答1:


I guess This is an error with the configuration or with the installation of B2B Extension. Your configuration is stored in core_config table, also try to reinstall the B2B extension. As mentioned by LittleBigDev It can also be an issue with access rights. And do check the version of magento is same on local as well as server.




回答2:


Files' access rights should be 644. For folders it should be 755. For Mage folder's files and PEAR lib files it should be 550

And you should also check the files owner settings.

For more info, look at http://www.magentocommerce.com/wiki/groups/227/resetting_file_permissions/



来源:https://stackoverflow.com/questions/12494228/mydomain-error-in-magento-module

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!