Re: You CANNOT call bbPress v1.0.2 stable when it breaks before step 1 of install!!!
Hi Nightgunner5,
Can you tell me how to turn that off? Is there a file somewhere in the PHP folder that I would change this?
EDIT:
I found this in the php.ini file.
So all I have to do is change –
error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED
to this –
error_reporting = E_ALL & ~E_NOTICE
Would that be correct? Anything else I should do? Also, does this mean that I can turn ON error logging again via my .htaccess file for everything else? I like to have the error logging enabled in case I install a plugin or something this way I would know when it is broken.
This is the code I use in the .htaccess –
# SUPPRESS PHP ERRORS FROM SHOWING PUBLICLY:
php_flag display_startup_errors off
php_flag display_errors off
php_flag html_errors off
So again I would like to turn the switches back to ON but at the same time not show the errors in bbPress regarding the DEPRECATED stuff.
Thanks