Log in

View Full Version : Problem with patch 3?


Parker123
07-18-2012, 04:45 PM
Ok since i installed PL3 I have been getting the following error on some of the mods that are used on my forum. Im wanting to know if its just me or if its happening to other people as well and hopefully someone will be able to help me fix the issue.

Deprecated: Assigning the return value of new by reference is deprecated in /home/starthab/public_html/forum/includes/init.php on line 55

Deprecated: Assigning the return value of new by reference is deprecated in /home/starthab/public_html/forum/includes/init.php on line 107

Deprecated: Assigning the return value of new by reference is deprecated in /home/starthab/public_html/forum/includes/init.php on line 111

Deprecated: Assigning the return value of new by reference is deprecated in /home/starthab/public_html/forum/includes/init.php on line 119

Deprecated: Assigning the return value of new by reference is deprecated in /home/starthab/public_html/forum/includes/init.php on line 130

Deprecated: Assigning the return value of new by reference is deprecated in /home/starthab/public_html/forum/includes/init.php on line 134

Deprecated: Assigning the return value of new by reference is deprecated in /home/starthab/public_html/forum/includes/init.php on line 142

Deprecated: Assigning the return value of new by reference is deprecated in /home/starthab/public_html/forum/includes/init.php on line 211

Deprecated: Assigning the return value of new by reference is deprecated in /home/starthab/public_html/forum/includes/init.php on line 389

Deprecated: Assigning the return value of new by reference is deprecated in /home/starthab/public_html/forum/includes/class_core.php on line 2552

I have actually seen one other person with this issue. Could someone please help asap?

Thanks in advance!

kh99
07-18-2012, 04:59 PM
It has to do with your version of php, which is a higher version than was intended for vb3. But you should be able to get rid of the errors by editing global.php and putting this near the top (after the block of comments):

error_reporting(E_ALL & ~E_NOTICE & ~8192);


then do the same for admincp/global.php and modcp/global.php.

Parker123
07-18-2012, 06:14 PM
Thanks a lot. From what I can see it has fixed it. If I have any more probs with this I will let you know. Thanks again!

--------------- Added 1342701957 at 1342701957 ---------------

After using the piece of code you sent me the errors did disappeared but some of the mods are still unusable. Im really not sure what is wrong with it.

WHN
09-21-2012, 02:07 PM
<a href="http://whiteseonet.com/install/install.php" target="_blank">http://whiteseonet.com/install/install.php</a>

can someone check that error i put that code in global also in admincp and modcp and i still have that error in install file...
that file install.php is now with error_reporting(E_ALL & ~E_NOTICE & ~8192); am still getting thet error Help!

kh99
09-21-2012, 02:38 PM
What version of php do you have? That code used to work but lately a few people have said it doesn't, and I'm not sure why. Maybe try this instead:
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT);


You could also try turning off error messages altogether, like:
ini_set("display_errors", "0");

WHN
09-21-2012, 02:45 PM
with that code
ini_set("display_errors", "0");
solved this errors
Deprecated: Assigning the return value of new by reference is deprecated in /home/usainsur/public_html/whiteseonet.com/install/init.php on line 44

Deprecated: Assigning the return value of new by reference is deprecated in /home/usainsur/public_html/whiteseonet.com/install/init.php on line 83

Deprecated: Assigning the return value of new by reference is deprecated in /home/usainsur/public_html/whiteseonet.com/install/init.php on line 91

Deprecated: Assigning the return value of new by reference is deprecated in /home/usainsur/public_html/whiteseonet.com/install/init.php on line 171

Deprecated: Assigning the return value of new by reference is deprecated in /home/usainsur/public_html/whiteseonet.com/install/init.php on line 183

but i still have that errorrs

Deprecated: Assigning the return value of new by reference is deprecated in /home/usainsur/public_html/whiteseonet.com/includes/class_core.php on line 2518

Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/usainsur/public_html/whiteseonet.com/includes/class_core.php on line 1637

Deprecated: Assigning the return value of new by reference is deprecated in /home/usainsur/public_html/whiteseonet.com/includes/functions.php on line 875

Deprecated: Assigning the return value of new by reference is deprecated in /home/usainsur/public_html/whiteseonet.com/includes/functions.php on line 879

kh99
09-21-2012, 02:54 PM
I think that's because some of the other install files have their own error_reporting() and ini_set() calls which are overriding yours. Here's what I'd do - since those are actually just warnings, ignore them while you are doing the install. Then if they still show up on the forum once it's installed, we can figure out which other files you need to change.

WHN
09-21-2012, 03:02 PM
but i cant go ahead with install because of this errors am put costumer number

Customer number entered successfully.
Redirecting...

and am redirected again to install.php costumer number colum

kh99
09-21-2012, 03:08 PM
OK, well, I'm not sure the errors are your problem but I suppose they could be. What you could do then is to try looking at files init.php and installcore.php (in the intstall directory) and change the ini_set('display_errors', true) to false.

WHN
09-21-2012, 03:19 PM
Deprecated: Assigning the return value of new by reference is deprecated in /home/usainsur/public_html/whiteseonet.com/includes/class_core.php on line 2518

Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/usainsur/public_html/whiteseonet.com/includes/class_core.php on line 1637

that errors solved with @ini_set('display_errors', false);

but there are still 2 errors

Deprecated: Assigning the return value of new by reference is deprecated in /home/usainsur/public_html/whiteseonet.com/includes/functions.php on line 875

Deprecated: Assigning the return value of new by reference is deprecated in /home/usainsur/public_html/whiteseonet.com/includes/functions.php on line 879

i still can't go ahead with instalation

kh99
09-21-2012, 03:27 PM
Well, you can always go to each line that's mentioned in the warning and take out the '&'. For example, change

$mail =& vB_QueueMail::fetch_instance();


to
$mail = vB_QueueMail::fetch_instance();

WHN
09-21-2012, 03:38 PM
i lost database connection with that change

kh99
09-21-2012, 03:45 PM
I'd have to guess that that's an unrelated error, but I don't know why that would happen.

Simon Lloyd
09-22-2012, 03:08 AM
Your install seems fine to me, the links work and i don't see any errors?

juan71287
10-18-2013, 09:59 PM
Helped me again :)

thanks dude.

hostmela
01-08-2014, 08:17 PM
wow awesome same problem i have but solved.thank you very much.

o12org
07-01-2014, 10:36 PM
Deprecated: Assigning the return value of new by reference is deprecated in /home/teknolog/public_html/forum/showthread.php on line 639

Deprecated: Assigning the return value of new by reference is deprecated in /home/teknolog/public_html/forum/showthread.php on line 1041

Deprecated: Assigning the return value of new by reference is deprecated in /home/teknolog/public_html/forum/showthread.php on line 1046

Deprecated: Assigning the return value of new by reference is deprecated in /home/teknolog/public_html/forum/showthread.php on line 1518

Deprecated: Assigning the return value of new by reference is deprecated in /home/teknolog/public_html/forum/showthread.php on line 1523



Unable to add cookies, header already sent.
File: /home/teknolog/public_html/forum/showthread.php
Line: 639

Hello Kevin, I have a similar problem, please help me !

and acp
Deprecated: Assigning the return value of new by reference is deprecated in /home/teknolog/public_html/forum/admincp/options.php on line 1150

Deprecated: Assigning the return value of new by reference is deprecated in /home/teknolog/public_html/forum/admincp/options.php on line 1185