Log in

View Full Version : can you tell me what this means


hawaiibillT
10-30-2013, 03:27 PM
can anyone please tell me what this means? it only shows up when I save or update an article. it appeared after I tried and failed to upgrade to 4.2.2


Warning: Declaration of vBForum_Item_SocialGroupMessage::getLoadQuery() should be compatible with that of vB_Model::getLoadQuery() in ..../packages/vbforum/item/socialgroupmessage.php on line 261

Warning: Declaration of vBForum_Item_SocialGroupDiscussion::getLoadQuery() should be compatible with that of vB_Model::getLoadQuery() in ..../packages/vbforum/item/socialgroupdiscussion.php on line 337

--------------- Added 1383149441 at 1383149441 ---------------

after looking at the php files some (not sure how many) judging by the download date at the bottom of the files some were 4.2.2 and some were 4.2.1 PL1 files. turned out to be not to hard to fix. should have looked at line 261 and line 337 before I posted..

ForceHSS
10-30-2013, 06:59 PM
Yes the fix has been posted many times for 4.2.2

magrabe
10-30-2013, 11:41 PM
Yes the fix has been posted many times for 4.2.2

Me 2 have same Warning

K4GAP
10-31-2013, 04:32 AM
Yes the fix has been posted many times for 4.2.2

I know the guys wondering .... where?

According to his post count and join date he's a brand new member that needs more specific answers.

M.Iftikhar
10-31-2013, 08:28 AM
You can do this
Open class_core.php file
In class_core.php locate these lines 5683-5685. These line code below

case E_NOTICE:
// Just ignore these completely //
break;


Replace with this


case E_NOTICE:
case E_STRICT;
case E_DEPRECATED;
// Just ignore these completely //
break;


I hope your problem will solved.

ForceHSS
10-31-2013, 10:07 AM
I know the guys wondering .... Where?

According to his post count and join date he's a brand new member that needs more specific answers.
https://vborg.vbsupport.ru/search.php I find this helps as it does save waiting. It is amazing what you can find (https://vborg.vbsupport.ru/showthread.php?t=303415)

hawaiibillT
10-31-2013, 09:42 PM
I've searched for the only other problem I'm having. cms and forums shows I'm running 4.2.2 in the footer while in the acp it shows I'm running 4.2.1 patch 1. in diagnostics Suspect File Versions it shows 4.2.2.

I'm running 4.2.1 patch1

ForceHSS
10-31-2013, 10:52 PM
I've searched for the only other problem I'm having. cms and forums shows I'm running 4.2.2 in the footer while in the acp it shows I'm running 4.2.1 patch 1. In diagnostics Suspect File Versions it shows 4.2.2.

I'm running 4.2.1 patch1
reupload 4.2.2 file and run upgrade.php again

hawaiibillT
11-01-2013, 05:12 PM
I've tried that and the upgrade keeps stopping before its finished then I have to re uploade 4.2.1 files. I think I'm just going to stay with 4.2.1 as its working fine other than showing the wrong version in a couple of spots. Maybe I'll try it again down the road but I've spent enough time as it is on trying to do it.

Lynne
11-01-2013, 11:47 PM
An actual code edit to really fix the errors instead of hiding them is here - https://vborg.vbsupport.ru/showthread.php?t=303430

markoroots
01-22-2015, 08:15 PM
Great Lynne. Very useful, thanks. ;)