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?