What is APP DEBUG Mode?

Sometimes support team will ask you turn on APP DEBUG mode if you face errors and in this case many do not know how to turn on the APP DEBUG Mode.

What is APP DEBUG?

APP DEBUG is basically a mode where if you face any Internal Server 500 and you want complete errors logs then by turning on app debug to true you can show full error logs.

How to turn on APP DEBUG?

To turn on app_debug you need to go to Admin / Site Settings / Settings / General settings and turn on the app debug toggle.

In case you cannot access this settings login to your server and go to project directory and find .env file and edit it and find APP_DEBUG on top and change its value from false to true. How to turn to debug mode on

  • Login to your FTP account.

  • Open and edit .env file.

Change

APP_DEBUG=false

To

APP_DEBUG=true

Save and upload the file.

false means debug mode is OFF true means debug mode is ON

Last updated