Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
No debug info after putting $Configuration['Debug'] = TRUE;
jonaguera
New
I have downloaded my whole vanilla site from my hosting to my local machine to make some changes.
I also make a database dump and import to local database.
I have change database access information in my config.php file and also I have erase all .ini files in cache folder. In adition I have assured that there are full permissions in cache, conf and uploads directories, but when i try to load the site in http://localhost/vanilla i get the "Something has gone wrong" error.
In order to debug, I have added this line ...
$Configuration['Debug'] = TRUE;
... to conf/config.php file, but I have still getting the "Something has gone wrong" error.
Anyone has any clue about the reason of this behavior?
Tagged:
0
Comments
It must be
$Configuration['Garden']['Debug'] = TRUE;
.$Configuration['Debug'] = TRUE;
is for debugging the dbself-response:
I had this line ....
$Configuration['Garden']['Errors']['MasterView'] = 'error.master.php';
after removing this, debug info appears again, but with:
$Configuration['Debug'] = TRUE;
and not with ...
$Configuration['Garden']['Debug'] = TRUE;