PDA

View Full Version : Warning: Declaration of vBForum_Item_SocialGroupMessage


M.Iftikhar
10-09-2013, 09:54 AM
Hello after upgrading so many problem display...that i solved now last error is display that is under way
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

So please tell me how can i do that i disalbed all plugin but nothing happen...........reply me soon.

rinkrat
10-09-2013, 10:00 PM
I have the same error.

Lynne
10-09-2013, 10:09 PM
Try adding this line of code at the top of your config.php under <?:

error_reporting(E_ALL ^ (E_NOTICE | E_WARNING | E_DEPRECATED));

Paul M
10-09-2013, 10:47 PM
Read this ;

http://www.vbulletin.com/forum/forum/vbulletin-announcements/vbulletin-announcements_aa/4000121-vbulletin-4-2-2-full-has-been-released?p=4000466#post4000466

M.Iftikhar
10-10-2013, 01:31 AM
Try adding this line of code at the top of your config.php under <?:

error_reporting(E_ALL ^ (E_NOTICE | E_WARNING | E_DEPRECATED));


not working still problem is here

ozzy47
10-10-2013, 01:35 AM
Read the post above yours, the one Paul M posted.

captain-busa
10-10-2013, 01:58 AM
I have the same problem, display_error in the Php.ini is off as instructed and I added the line ini_set('display_errors', 'Off'); in the config.php file too and the errors still show up.

Thoughts?

ozzy47
10-10-2013, 02:10 AM
Did you do the edits in the file, class_core.php ?

M.Iftikhar
10-10-2013, 05:57 AM
My problem is solved
i only add two line in class_core.php file
In class_core.php locate lines 5683-5685

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


Add this


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

My Problem is solved...all thing working fine....so if any one get problem do this.