Heading Error on 5.2.4

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • AcemanWolf
    Member
    • Apr 2013
    • 44
    • 5.5.x

    Heading Error on 5.2.4

    I just did an update and my forum heading got messed up with the upgrade. How do I fix this?


    Click image for larger version

Name:	error 5.2.4.png
Views:	102
Size:	868.3 KB
ID:	4355842
    Ace Network
  • glennrocksvb
    Former vBulletin Developer
    • Mar 2011
    • 4021
    • 5.7.X

    #2
    What version did you upgrade from? Did you make any modifications to the header template before the upgrade? When you login to AdminCP, do you see a notification that says there are out of date templates? If yes, click the link provided and check if header template is one of them. You have to resolve the template merge conflicts.

    Flag Icon Postbit Insert GIPHY Impersonate User BETTER INITIALS AVATAR Better Name Card Quote Selected Text Bookmark Posts Post Footer Translate Stop Links in Posts +MORE!

    Comment

    • AcemanWolf
      Member
      • Apr 2013
      • 44
      • 5.5.x

      #3
      Originally posted by Glenn Vergara
      What version did you upgrade from? Did you make any modifications to the header template before the upgrade? When you login to AdminCP, do you see a notification that says there are out of date templates? If yes, click the link provided and check if header template is one of them. You have to resolve the template merge conflicts.
      Upgraded from 5.2.2. I have went to adminCP and reverted the templates. I am still getting that error on headings.
      Ace Network

      Comment

      • Mark.B
        vBulletin Support
        • Feb 2004
        • 24287
        • 6.0.X

        #4
        Originally posted by AcemanWolf

        Upgraded from 5.2.2. I have went to adminCP and reverted the templates. I am still getting that error on headings.
        Can you please try disabling that Comodo graphic at the bottom?
        MARK.B
        vBulletin Support
        ------------
        My Unofficial vBulletin 6.0.0 Demo: https://www.talknewsuk.com
        My Unofficial vBulletin Cloud Demo: https://www.adminammo.com

        Comment

        • glennrocksvb
          Former vBulletin Developer
          • Mar 2011
          • 4021
          • 5.7.X

          #5
          Did you really revert the header template? Looking at the HTML source, I'm seeing some old code. For example, I'm seeing a call to vBulletin.Responsive.Debounce.checkInitialBrowserSize() js function. But in 5.2.4, it has been changed to vBulletin.Responsive.Debounce.checkBrowserSize();

          Flag Icon Postbit Insert GIPHY Impersonate User BETTER INITIALS AVATAR Better Name Card Quote Selected Text Bookmark Posts Post Footer Translate Stop Links in Posts +MORE!

          Comment

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

            #6
            Please reupload your /core/install folder. Make sure that all themes are also uploaded in /core/install/themes. Then run /core/install/upgrade.php again. Clear your browser cache and reload the page.
            Translations provided by Google.

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

            Comment

            • glennrocksvb
              Former vBulletin Developer
              • Mar 2011
              • 4021
              • 5.7.X

              #7
              I'm also seeing an inefficient Comodo script included in the head using document.write. It's causing a JS warning.

              Code:
              <script type="text/javascript"> //<![CDATA[
              var tlJsHost = ((window.location.protocol == "https:") ? "https://secure.comodo.com/" : "http://www.trustlogo.com/");
              document.write(unescape("%3Cscript src='" + tlJsHost + "trustlogo/javascript/trustlogo.js' type='text/javascript'%3E%3C/script%3E"));
              //]]>
              </script>
              The warning I got in Chrome is "A Parser-blocking, cross-origin script, https://secure.comodo.com/trustlogo/...t/trustlogo.js, is invoked via document.write. This may be blocked by the browser if the device has poor network connectivity."

              If your site is in https, just include the https URL directly

              Code:
              <script src="https://secure.comodo.com/trustlogo/javascript/trustlogo.js"></script>
              I don't recommend it being included in the <head> tag. I recommend it to be included at the bottom of the body using template hook in footer_before_body_end hook location. And if possible (depends on the trustlogo.js), include it with "async" attribute in the <script> tag to include the script asyncronously without affecting page load performance.

              Flag Icon Postbit Insert GIPHY Impersonate User BETTER INITIALS AVATAR Better Name Card Quote Selected Text Bookmark Posts Post Footer Translate Stop Links in Posts +MORE!

              Comment

              • AcemanWolf
                Member
                • Apr 2013
                • 44
                • 5.5.x

                #8
                i will reinstall the upgrade. And go from there. I will remove the comodo script.
                Ace Network

                Comment

                • Mark.B
                  vBulletin Support
                  • Feb 2004
                  • 24287
                  • 6.0.X

                  #9
                  Originally posted by AcemanWolf
                  i will reinstall the upgrade. And go from there. I will remove the comodo script.
                  Bear in mind, removing it is just a diagnostic tool, to see if it fixes the problem. You can put it back afterwards. If it DOES fix the problem, then it's a matter of placing it somewhere more suitable (in the code, not on the screen).
                  MARK.B
                  vBulletin Support
                  ------------
                  My Unofficial vBulletin 6.0.0 Demo: https://www.talknewsuk.com
                  My Unofficial vBulletin Cloud Demo: https://www.adminammo.com

                  Comment

                  Related Topics

                  Collapse

                  Working...