How To Solve The Deprecated Problem For Seo
I've just got an error. When I try to assign an object like this: am doing for SEO by google php seo scripts. Deprecated: Assigning the return value of new by reference is depreca
Solution 1:
Each of these error messages carries a line number and a filename:
Deprecated: Assigning the return value of new by reference is deprecated in E:\wamp\www\subgoogle\nusoap.php on line 3703
Go there, and remove the &
before the new
.
To get rid of the other warnings, use following setting in your main script to reduce the error reporting level:
error_reporting(E_ALL);
You'll have to find eventual other instances of error_reporting(
and adapt them too.
Post a Comment for "How To Solve The Deprecated Problem For Seo"