in catalog / manage products / edit product. i get fail: There has been an error processing your request Exception printing is disabled by default for security reasons. Error log record number: 304413636909
LEARN ME STEP BY STEP WHERE TO OPEN IT AGAIN?
Hi @patricklau,
It seems that you don't have display_errors and developer mode enabled in Magento and that is why you see that message (with the error file ID) instead of the error in the browser.
In order to turn on error reporting you should:
a) Open index.php and un-comment the following line
Display Errors
|
#ini_set('display_errors', 1);
|
b) Open .htaccess and add the following line at the end:
Developer Mode
|
SetEnv MAGE_IS_DEVELOPER_MODE "true"
|
Best regards.
Gabriel