I’m having an issue with a magento site where nothing will save, but my error logs are disabled in
System > Configuration > Developer > Log Settings
I can’t update them via the admin panel as the issue i’m having will not let me enable them and save the changes, but I can’t fix it because I have no error log. Its a vicious cycle!
How can I edit the config settings not using the admin panel? Either my xml file edit or changing the database variable?
2
Answers
The way that I ended up changing the setting was through the file located at
homedir/public_html/app/code/core/Mage/Core/etc
and edited the following block in theconfig.xml
fileand changed
<active>
to 1You can connect to database and check if entry for developer log is exist or not.
Query to check is:
If it results you any record then update value to 1. Else you can add new entry in database with below insert query.
After updating value in database make sure you will flush all magento caches.