PDA

View Full Version : Error Codes


Joshua2597
03-29-2015, 12:57 AM
I have the following error codes in my Maintenance part of my ACP, anyone know what the cause of it is ? It also shows when you post a reply...

Warning: Declaration of vBForum_Item_SocialGroupMessage::getLoadQuery() should be compatible with vB_Model::getLoadQuery($required_query = '', $force_rebuild = false) in ..../packages/vbforum/item/socialgroupmessage.php on line 261

Warning: Declaration of vBForum_Item_SocialGroupDiscussion::getLoadQuery() should be compatible with vB_Model::getLoadQuery($required_query = '', $force_rebuild = false) in ..../packages/vbforum/item/socialgroupdiscussion.php on line 337

ForceHSS
03-29-2015, 01:35 AM
Try editing you config.php file, and at the top just under the <?php line add this:
define('SKIP_DS_ERRORS', true); Use a editor like notepad++ (http://notepad-plus-plus.org/download/v6.7.5.html) to edit any files, don't use Notepad or Wordpad.

Joshua2597
03-29-2015, 04:13 AM
Try editing you config.php file, and at the top just under the <?php line add this:
define('SKIP_DS_ERRORS', true); Use a editor like notepad++ (http://notepad-plus-plus.org/download/v6.7.5.html) to edit any files, don't use Notepad or Wordpad.

Fixed thank you

RichieBoy67
03-29-2015, 08:27 AM
On some pages like stylevars that does not always work. I find this fix to work much better.

In includes classcore.php find:
case E_NOTICE:
// Just ignore these completely //
break;replace with:
case E_NOTICE:
case E_STRICT;
case E_DEPRECATED;
// Just ignore these completely //
break;