Error Messages:
( ! )
Deprecated: Assigning the return value of new by reference is deprecated in C:\wamp\www\cart.php on line
349
( ! )
Deprecated: Assigning the return value of new by reference is deprecated in C:\wamp\www\cart.php on line
2023
( ! )
Deprecated: Assigning the return value of new by reference is deprecated in C:\wamp\www\cart.php on line
2121
Solution:
line 349:
PHP Code:
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
line 2023:
PHP Code:
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
line 2121:
PHP Code:
$pdf =& new Cezpdf(('A4'));
to solve, you should remove the reference "
&":
line 349:
PHP Code:
$bbcode_parser = new vB_BbCodeParser($vbulletin, fetch_tag_list());
line 2023:
PHP Code:
$bbcode_parser = new vB_BbCodeParser($vbulletin, fetch_tag_list());
line 2121:
PHP Code:
$pdf = new Cezpdf(('A4'));