Quote:
Originally Posted by Dan!
Im getting errors on your plugin.
PHP version: 5.3.2
vBulletin version: 3.8.5
Error:
Code:
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/init.php on line 55
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/init.php on line 107
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/init.php on line 111
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/init.php on line 119
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/init.php on line 130
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/init.php on line 134
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/init.php on line 142
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/init.php on line 211
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/init.php on line 389
Deprecated: Assigning the return value of new by reference is deprecated in /home/socialop/public_html/downthepub/includes/class_core.php on line 2552
This displays at the very top of the page.
I also get this message where the arcade should view:
Any ideas?
|
Quote:
Originally Posted by Dan!
In reply to my own post, I've now fixed the issue.
I simply editted:
PHP Code:
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
To:
PHP Code:
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE & ~8192);
Seems to have fixed the issue.
|
The problem appears to be PHP 5.3.x as I just started having the same problem here (as well as with my other plug-ins)
Can anyone tell me which file needs to be edited? Dan left that part out.