Deprecated: Assigning the return value of new by reference is deprecated__ on line

Status
Not open for further replies.

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
Re: Deprecated: Assigning the return value of new by reference is deprecated__ on lin

Your script is out of date. That is what the 'Deprecated' warnings are about. The servers have been updated to run PHP 5.3 and your script uses features that are 'deprecated', ie they work, but they are discouraged and may not work in future versions of PHP.

You have to either
1. Get an updated version of the script
2. Find and correct the problem areas yourself
3. Add the line
error_reporting(E_ALL & ~E_DEPRECATED);
at the top of the PHP section of your home page
 
Status
Not open for further replies.
Top