Enabling Debug mode

How can I enable debug mode in Gibbon?
I am facing database connectivity issues on my live server and the support team asked me to enable debug mode. Gibbon is new for me and I have no idea from where I can enable that.

Hi shubham,

If you’re able to login and use the system, you can set it to Development mode by going to System Admin > System Settings and changing the install type to Development. This will display errors on the screen in Gibbon.

If your connectivity prevents you from using Gibbon at all then you may need to enable error reporting manually. This can be done by editing your php.ini file on the server (if you have access to it), or often just by adding the following lines to the bottom of the Gibbon config.php file:

`
error_reporting(E_ALL);
ini_set('display_errors', 1);`
```


Otherwise, be sure to check your system's error logs, the exact location depends on you server. For example, in Ubuntu Linux running Apache, you can often find the PHP error log in /var/log/apache2/error.log

Hope this helps!