Razor and new PHP 5.3.
Message in Install.php:
"Deprecated: Assigning the return value of new by reference is deprecated in C:\SERVER2GO\htdocs\razor\install.php on line 431"
Solution:
line 431: $this->Entries[] = &new SimpleUnzipEntry($aI);
change on this:
$this->Entries[] = new SimpleUnzipEntry($aI);
In admin area I can see now a message "Deprecated: Assigning the return value of new by reference is deprecated in C:\SERVER2GO\htdocs\hydro\admin\lib\unzip.lib.php on line 387".
Solution:
line: 387: $this->Entries[] = $new SimpleUnzipEntry($aI);
change on this: $this->Entries[] = new SimpleUnzipEntry($aI);
The problem is only with new version of PHP 5.3.
Very interesting article about new PHP is here:
http://derickrethans.nl/files/phparch-p ... rticle.pdf
and here:
http://thinkinglemur.com/index.php/2009 ... eprecated/
Regards