Need to turn on error displays but can't login

Permalink 1 user found helpful
I need to enable full error reporting on a c5 site but I am unable to log in. How can this be done? Is it a file or somewhere in the database?

 
MrKDilkington replied on at Permalink Best Answer Reply
MrKDilkington
Hi fcmjj,

The debug settings are set in the config.

To enable them without access to the site dashboard, you can do the following:
- in application\config, create a file called concrete.php
application\config\concrete.php
- in concrete.php, paste in this code:
<?php
return array(
    'debug' => array(
        'detail' => 'debug',
        'display_errors' => true,
    )
);
fcmjj replied on at Permalink Reply
Worked perfectly. Thank you!