Magento 1.9 – Fix Internal Server Error 500 on Specific Pages

errormagento-1.9passwordregister

I have setup a store in magento and i am getting the HTTP internal server error 500 in createpost page that is after a customer clicks on submit button in the register page and in forgotpasswordpost that is after a customer enters email and click on submit button in the forgot password page. and once I hit back a normal message is being shown saying "Thank you for registering" All other pages are working fine. How can I sort this out kindly help me with this.

Best Answer

In root of magento, you can see index.php file, you can un comment these lines in that file :

#ini_set(‘display_errors’, 1);,

Then you can see the real errors that causing the problem.

Related Topic