Quote:
Originally Posted by reimic
Hello,
I have changed my Server and Domain name. It also works and i can downloads files but sometimes there is an error message:
PHP Code:
Strict Standards: Assigning the return value of new by reference is deprecated in /var/syscp/webs/***/downloads.php on line 1034
Could you help me please? 
|
Ah, I need to change that now PHP 5.2 is required, fixed for next release
Open downloads.php
Find
PHP Code:
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
Replace with
PHP Code:
$bbcode_parser = new vB_BbCodeParser($vbulletin, fetch_tag_list());
Are you running PHP 5.3?