Debug mode in Prestashop

kumkumsharma

Administrator
Staff member
There are two ways to enable debug mode in prestashop:
  • Enable it in Prestashop admin panel
  • Enable it manually
You can do enable debug mode with prestashop admin panel and for that you can follow below steps:
  • First login to admin panel.
  • Choose Advanced Parameters and then Performance.
  • Now you will see Debug mode section, you have to set Debug mode Yes.
  • Save the changes.
You can enable it manually with below steps:
  • First edit the file which is available at config/defines.inc.php location.
  • Now find below code:
Code:
define('_PS_MODE_DEV_', false);
replace false with true to enable debug mode.

Code:
define('_PS_MODE_DEV_', true);
save the changes
 
Top