Problem With General Update Tools After 4.21-4.22 Upgrade

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • woodmj
    Senior Member
    • Mar 2013
    • 205
    • 5.7.5

    Problem With General Update Tools After 4.21-4.22 Upgrade

    I am getting an error in this section of my Admin CP since upgrading. Please could anyone assist?
    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 0
  • M.Iftikhar
    Senior Member
    • May 2011
    • 124
    • 4.2.X

    #2
    Same here................):

    Comment

    • Muhammad Rahman
      Member
      • Jun 2012
      • 69
      • 4.2.X

      #3
      same.. me too ..
      in search page, http://example.com/search.php give same error ..

      Comment

      • woodmj
        Senior Member
        • Mar 2013
        • 205
        • 5.7.5

        #4
        Originally posted by Muhammad Rahman
        same.. me too ..
        in search page, http://example.com/search.php give same error ..
        Oh dear, I got that too, I hadn't noticed that one. My upgrade seemed to go so smoothly this morning too :-/

        Comment

        • TravelTalk
          Member
          • Jun 2013
          • 66
          • 4.2.X

          #5
          Guess I won't upgrade from 4.2.1 to 4.2.2, see too many of these threads recently

          Comment

          • Wayne Luke
            vBulletin Technical Support Lead
            • Aug 2000
            • 73981

            #6
            This issue is here:http://tracker.vbulletin.com/browse/VBIV-15854

            You can turn off the display of warnings using this line of code at the top of your config.php under <?:
            Code:
            error_reporting(E_ALL ^ (E_NOTICE | E_WARNING | E_DEPRECATED));
            Only errors that will actually prevent vBulletin from working will show then.
            Translations provided by Google.

            Wayne Luke
            The Rabid Badger - a vBulletin Cloud demonstration site.
            vBulletin 5 API

            Comment

            • Infopro
              Senior Member
              • Jun 2003
              • 277
              • 3.8.x

              #7
              Originally posted by Wayne Luke
              This issue is here:http://tracker.vbulletin.com/browse/VBIV-15854

              You can turn off the display of warnings using this line of code at the top of your config.php under <?:
              Code:
              error_reporting(E_ALL ^ (E_NOTICE | E_WARNING | E_DEPRECATED));
              Only errors that will actually prevent vBulletin from working will show then.
              I've seen you mention this several times today on these forums, Wayne. This suggested fix has no affect on the issues here in this thread, that issue you link to in the tracker, or the other threads posted today on this that I've read so far.

              What might be more helpful here for all of us is if you link to that tracker in the post you made earlier today so we can all vote on it properly and get a fix.
              When viewing a page, you get warning, notice or deprecated messages. First, search JIRA to see if there is a fix listed. If not, then add the following line to the top of your /includes/config.php file under


              It might also be helpful to merge these threads together instead of having us poke thru them all, hoping to find a fix in one of them, only to be told it's a deprecated code issue.

              There are only 4 votes on this: http://tracker.vbulletin.com/browse/VBIV-15854 3, before I voted. There are more than 4 posts on this forum concerning this issue.

              Thanks

              Comment

              • predpriemach
                New Member
                • Feb 2008
                • 11

                #8
                Same here.. I voted

                hiding errors do not work
                BG Webmaster Forum | Search Engine Marketing

                Comment

                • weave
                  Member
                  • Jul 2011
                  • 62
                  • 4.1.x

                  #9
                  ditto...hiding errors did nothing to suppress the errors

                  Comment

                  • woodmj
                    Senior Member
                    • Mar 2013
                    • 205
                    • 5.7.5

                    #10
                    Suggestion (4) on this post http://www.vbulletin.com/forum/forum...66#post4000466 did the trick for me.

                    For ref I'm on PHP 5.4.9.

                    Comment

                    • weave
                      Member
                      • Jul 2011
                      • 62
                      • 4.1.x

                      #11
                      Originally posted by woodmj
                      Suggestion (4) on this post http://www.vbulletin.com/forum/forum...66#post4000466 did the trick for me.

                      For ref I'm on PHP 5.4.9.
                      #4 was also the fix for me. I am on 5.3.27 (all my host will take me to)

                      Comment

                      • pretty.witch
                        New Member
                        • Oct 2010
                        • 16
                        • 4.0.x

                        #12
                        Originally posted by woodmj
                        Suggestion (4) on this post http://www.vbulletin.com/forum/forum...66#post4000466 did the trick for me.

                        For ref I'm on PHP 5.4.9.
                        This trick help me too. I'm on php 5.3.26

                        This code made the miracle:

                        2. For those who feel comfortable with editing files.

                        In class_core.php locate lines 5683-5685 (class_core.php is in the 'includes' folder) Code:

                        case E_NOTICE: // Just ignore these completely // break;
                        Add lines for Deprecated and/or Strict errors as required ;
                        Code:

                        case E_NOTICE: case E_STRICT: case E_DEPRECATED: // Just ignore these completely // break;
                        This will bypass the additional error reporting.

                        Comment

                        • Booth
                          Senior Member
                          • Jan 2005
                          • 635
                          • 4.2.X

                          #13
                          That last one helped me, thankfully. Tearing my hair out for a moment!
                          Pleased Sheep Films - Independent Filmmakers
                          Blackburn Web - an online community for Blackburn in Lancashire (thanks to Mark B for the tips)

                          Comment

                          • Wayne Luke
                            vBulletin Technical Support Lead
                            • Aug 2000
                            • 73981

                            #14
                            We've made these code changes available in a class_core.php file. See this post:
                            vBulletin 4.2.2 is NOW AVAILABLE for download. The feedback thread for the 4.2.2 release is HERE (http://www.vbulletin.com/forum/forum/vbulletin-sales-and-feedback/licensed-customer-feedback/4000120-vbulletin
                            Translations provided by Google.

                            Wayne Luke
                            The Rabid Badger - a vBulletin Cloud demonstration site.
                            vBulletin 5 API

                            Comment

                            • craigvm
                              Senior Member
                              • Aug 2012
                              • 189
                              • 4.2.X

                              #15
                              Originally posted by woodmj
                              Suggestion (4) on this post http://www.vbulletin.com/forum/forum...66#post4000466 did the trick for me.

                              For ref I'm on PHP 5.4.9.
                              this does nothing for my forum i`m still getting this at the top of the page

                              Warning: Assigning the return value of new by reference is deprecated in..../includes/garage_func_var.phpon line6412

                              Warning: Assigning the return value of new by reference is deprecated in..../includes/garage_func_var.phpon line6692

                              Warning: Assigning the return value of new by reference is deprecated in..../includes/garage_func_var.phpon line8110

                              www.fordmodified.co.uk
                              the home for modified fords

                              Comment

                              Related Topics

                              Collapse

                              Working...