Aug 8, 2012

Warning/Deprecated Error in bbPress

After installing bbPress, if you get a Deprecated/Warning error message then please check your php Version. bbPress don't seem to support latest version of php. bbPress is doing this, has been "deprecated" (made obsolete) in the new version of PHP. Everything will still work, but in the future PHP may change and these functions will error out.

Steps:

1. locate bb-load.php, go to line 25:

2. Change
From
error_reporting( E_ALL ^ E_NOTICE );
to
error_reporting( E_ALL ^ E_DEPRECATED ^ E_NOTICE);

No comments:

Post a Comment