08-02-2012, 02:30 PM
Turn off error reporting in php.ini if you can access it, or add:
error_reporting(E_ALL & ~E_DEPRECATED);
ini_set('set_magic_quotes_runtime', off);
...to common.php
I'm not sure if you can access the file though.
The error is being caused because of outdated version of php running on the page, so everyone using 5.3 and up will get it.
error_reporting(E_ALL & ~E_DEPRECATED);
ini_set('set_magic_quotes_runtime', off);
...to common.php
I'm not sure if you can access the file though.
The error is being caused because of outdated version of php running on the page, so everyone using 5.3 and up will get it.