How to fix vBulletin – Deprecated Assigning the return value in PHP 5.3 Print

  • 2

To fix:

Open global.php and add this line

error_reporting(E_ALL & ~E_NOTICE & ~8192);

Refresh your browser and your site will load normal.

Note: This is not a 100% fix solution. To fully fix deprecated warnings, you have to open the php file responsible for warnings, go to the error line no, remove the ‘&’ symbol. This will work 100%.


Was this answer helpful?

« Back