Destination Forum Problem After 4.2.1 Update

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Favori
    New Member
    • Jul 2011
    • 3
    • 4.1.x

    [Forum] Destination Forum Problem After 4.2.1 Update

    Hi, I've got some errors after upgrade 4.2.0. to 4.2.1.

    Destination forum list is doesn't seem on inlinemod.php when I want to move threads or merge threads.

    Example:



    I click select button but forum list is doesn't seem.
  • Lynne
    Former vBulletin Support
    • Oct 2004
    • 26255

    #2
    Create a new style with no parent:
    • Styles & Templates > Style Manager > Add New Style
    • Parent Style: No Parent Style
    • Title: Default vBulletin
    • Allow User Selection: Yes
    • Save

    Then browse the site using that totally default vbulletin style - do you still have the same problem?

    Please don't PM or VM me for support - I only help out in the threads.
    vBulletin Manual & vBulletin 4.0 Code Documentation (API)
    Want help modifying your vbulletin forum? Head on over to vbulletin.org
    If I post CSS and you don't know where it goes, throw it into the additional.css template.

    W3Schools <- awesome site for html/css help

    Comment

    • Favori
      New Member
      • Jul 2011
      • 3
      • 4.1.x

      #3
      Originally posted by Lynne
      Create a new style with no parent:
      • Styles & Templates > Style Manager > Add New Style
      • Parent Style: No Parent Style
      • Title: Default vBulletin
      • Allow User Selection: Yes
      • Save


      Then browse the site using that totally default vbulletin style - do you still have the same problem?
      I still have the same problem.

      Comment

      • BirdOPrey5
        Senior Member
        • Jul 2008
        • 9613
        • 5.6.3

        #4
        Try disabling hooks as described below-

        To disable the plugin/hook system open your config.php which can be found in your forumroot/includes directory

        Just below
        Code:
        <?php
        enter
        Code:
        define('DISABLE_HOOKS', true);
        and save the file.

        If you would like to enable the plugin/hook system again, either remove the line again or simply comment that line out. To do so, add two forward slashes " / " so it will look like

        Code:
        // define('DISABLE_HOOKS', true);
        Next time you would like to disable the plugin/hook system again
        you simply have to remove the " // ".

        Comment

        • Favori
          New Member
          • Jul 2011
          • 3
          • 4.1.x

          #5
          Originally posted by Joe D.
          Try disabling hooks as described below-

          To disable the plugin/hook system open your config.php which can be found in your forumroot/includes directory

          Just below
          Code:
          <?php
          enter
          Code:
          define('DISABLE_HOOKS', true);
          and save the file.

          If you would like to enable the plugin/hook system again, either remove the line again or simply comment that line out. To do so, add two forward slashes " / " so it will look like

          Code:
          // define('DISABLE_HOOKS', true);
          Next time you would like to disable the plugin/hook system again
          you simply have to remove the " // ".
          I tried that already but it didn't solve my problem.

          Comment

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

            #6
            Fix to this is here.
            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

            • postcd
              Member
              • Feb 2012
              • 65
              • 4.2.5

              #7
              Originally posted by Mark.B
              the link in Your reply is not working...
              vBulletin hosting from $0.5 monthly

              Comment

              • djbaxter
                Senior Member
                • Aug 2006
                • 1418
                • 4.2.5

                #8
                Maybe because it was posted 6 years ago on the bug tracker?

                First, whatever the bug was is likely fixed and removed from the bug tracker.

                Second, that is for vBulletin 4.2.1, long out of date. Don't you think it's about time you upgraded to at least vBulletin 4.2.5?
                Psychlinks Web Services Affordable Web Design & Site Management
                Specializing in Small Businesses and vBulletin/Xenforo Forums

                Comment

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

                  #9
                  Here is the content with from that issue. It was closed without resolution due to end of life of vBulletin 4.X.


                  The "option" template on 4.2.1 should be
                  Code:
                  <vb:if condition="isset($optiontitle) AND !empty($optiontitle) AND isset($optionvalue)">
                   <option value="{vb:raw optionvalue}" class="{vb:raw optionclass}" {vb:raw optionselected}>{vb:raw optiontitle}</option>
                  <vb:else />
                   <vb:each from="options" key="forumid" value="option">
                    <option value="{vb:raw option.optionvalue}" class="{vb:raw option.optionclass}" {vb:raw option.optionselected}>{vb:raw option.optiontitle}</option>
                   </vb:each>
                  </vb:if>
                  where many of our customers only have
                  Code:
                   <option value="{vb:raw optionvalue}" class="{vb:raw optionclass}" {vb:raw optionselected}>{vb:raw optiontitle}</option>
                  This causes thread/post move/merge etc issues.

                  It is possible that the said template is not updating properly from 4.2.0 -> 4.2.1

                  NOTE

                  If you are having this issue, here is how you can fix it:

                  Go to admincp > Styles & Templates > Style manager > Edit templates
                  Edit the template named: option
                  replace everything in there with:
                  Code:
                  <vb:if condition="isset($optiontitle) AND !empty($optiontitle) AND isset($optionvalue)">
                   <option value="{vb:raw optionvalue}" class="{vb:raw optionclass}" {vb:raw optionselected}>{vb:raw optiontitle}</option>
                  <vb:else />
                   <vb:each from="options" key="forumid" value="option">
                    <option value="{vb:raw option.optionvalue}" class="{vb:raw option.optionclass}" {vb:raw option.optionselected}>{vb:raw option.optiontitle}</option>
                   </vb:each>
                  </vb:if>
                  Translations provided by Google.

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

                  Comment

                  widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
                  Working...