Freelance projects

Tuesday, June 05, 2012

Deprecated : PHP 5.2 to one that is using PHP 5.3

recently moved a site from a server that was using PHP 5.2.17 to one that is using PHP 5.3.2. It was after this move that I began receiving a list of error messages such as this one:
Deprecated: Assigning the return value of new by reference is deprecated in blahblah.ph
After reviewing several discussions of this issue, I cleared things up by replacing all the instances of =& new with = new 
I 'm not experienced enough to know if this will work in all instances where these error messages are received but it worked in this particular case and it may be worth trying.
 also deprecated : set_magic_quotes_runtime(false);

No comments: