Enable PHP Error reporting in Magento
Enable PHP Error reporting in Magento : This is very important and a must for all magento front-end + back-end developers .By default magento disables the error reporting and if something goes wrong with it , you’ll see an error like this .
There has been an error processing your request
Exception printing is disabled by default for security reasons
The simple solution to enable the error reporting is , go to your magento index.php and add these lines
error_reporting(E_ALL | E_STRICT);
ini_set('display_errors', 1);
Categories:
magento
Tags:
1.4 error_reporting how to index.php ini_set magento magento commerce PHP security tip tutorial
View Comments
Comment or Ask a Question
Quick Links