0 posted How to enable debug mode on PrestaShop ? i am using PrestaShop 1.6 , want to on error reporting , so is there any way to on debug mode ? Edit Question
0 iPhone-coder answered Nov 30 '-1 00:00 go to file config/defines.inc.php and find _PS_MODE_DEV_ and make it true define('_PS_MODE_DEV_', false); change it to: define('_PS_MODE_DEV_', true); Edit Answer
0 chirag answered Nov 30 '-1 00:00 1. Go to the directories config2. Open the file defines.inc.php;3. In the file defines.inc.php find the line define( ‘_PS_MODE_DEV_’, false); 4. Replace the line define( ‘_PS_MODE_DEV_’, false) with define( ‘_PS_MODE_DEV_’, true) and save the changes. Edit Answer