CaptClay
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to turn off debug mode? Losing my mind over here! Please help.Guys, still no luck.
I only have 1 instance of “debug” anywhere in my wp-config file and it’s set to false. Setting error reporting to “0” doesn’t fix the issue either.
It was like 4am one morning when I turned debug on and I was really tired. I used instructions I found online and I wonder if I found some other way to turn it on (I cannot for the life of me find the instructions again). Is there any chance there could be another method to turn debugging on and I forgot how I did it?
Forum: Fixing WordPress
In reply to: How to turn off debug mode? Losing my mind over here! Please help.NEVERMIND!
Still looking for a solution.
The above code took the reporting out of the section above the header but there are still reports inside the site.
This is driving me nuts!
Forum: Fixing WordPress
In reply to: How to turn off debug mode? Losing my mind over here! Please help.Just a heads up… and I don’t fully understand how this works… but…
If you add this to your wp-config.php file AFTER you had previously enabled debug mode…
/** Sets up WordPress vars and included files. */ require_once(ABSPATH . 'wp-settings.php'); error_reporting(0);You will no longer see the debug messages on your site.
Hopefully this helps someone else.