Upgrade issue vb4.2.X to vb5

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • robru
    Senior Member
    • Nov 2004
    • 127
    • 4.1.x

    Upgrade issue vb4.2.X to vb5

    The style of vB5 don't load after the upgrade.

    Click image for larger version

Name:	stylevb5.jpg
Views:	1
Size:	27.0 KB
ID:	3725254
  • Trevor Hannant
    vBulletin Support
    • Aug 2002
    • 24326
    • 5.7.X

    #2
    Link to your site? Also, please paste the contects of the root config.php file here
    Vote for:

    - Admin Settable Paid Subscription Reminder Timeframe (vB6)
    - Add Admin ability to auto-subscribe users to specific channel(s) (vB6)

    Comment

    • robru
      Senior Member
      • Nov 2004
      • 127
      • 4.1.x

      #3
      Code:
          //    ****** Base URLs ******
          // The following settings all deal with the url of your forum.
          // If set incorrectly your site/software will not function correctly.
          // These urls should NOT include a trailing slash
          // This is the url and web path of your root vBulletin directory
      $config['baseurl'] = 'http://www.caviaforum.nl/vb5';
      
          // This is the url and web based path to your core directory
      $config['baseurl_core'] = 'http://www.caviaforum.nl/vb5/core';
      
      
      // This will only be used if you wish to require https logins
      
      // You will not need to change this setting most of the time.
      $config['baseurl_login'] = $config['baseurl'];
      
          // If you do wish to use https for login, uncomment this line
          // Then fill in your https url.
      //$config['baseurl_login'] = 'https://www.caviaforum.nl/vb5';
      
      
          //    ****** System Paths ******
          // These are the system paths and folders for your vBulletin files
          // This setting is for where your vbulletin core folder is
      $config['core_path'] = '/var/www/vb5/core';
      
          // This setting allows you to change the name of the admin folder
      $config['admincpdir'] = 'admincp';
      
          //    ****** Cookie Settings ******
          // These are cookie related settings.
          // This Setting allows you to change the cookie prefix
      $config['cookie_prefix'] = 'v5';
      
          // You can ignore this setting for right now.
      $config['cookie_enabled'] = true;
      
          //    ****** API Settings ******
          // These are for the vB5 API. You will not normally ever need to edit them.
          // Specifies whether the API is in the same host.
      $config['collapsed'] = true;
      
          // If the API is on an external host, you'll need to enter its information here
          // Chances are this will not ever be true for most people, do not edit.
      if (!$config['collapsed'])
      {
          $config['api_host']        = '';
          $config['api_client']        = '';
          $config['api_client_version']    = '';
          $config['api_platform']        = '';
          $config['api_platform_version']    = '';
          $config['api_key']        = '';
      }
      
          //    ****** Special Settings ******
          // These settings are only used in some circumstances
          // Please do not edit if you are not sure what they do.
      $config['report_all_php_errors'] = false;
      $config['no_template_notices'] = true;
      
          // This setting enables debug mode, it should NEVER be used on a live site
      $config['debug'] = false;

      Comment

      • Trevor Hannant
        vBulletin Support
        • Aug 2002
        • 24326
        • 5.7.X

        #4
        In AdminCP > Settings > Options > Site Name / URL / Contact Details, what have you got set for the 'Forum URL' value?
        Vote for:

        - Admin Settable Paid Subscription Reminder Timeframe (vB6)
        - Add Admin ability to auto-subscribe users to specific channel(s) (vB6)

        Comment

        • robru
          Senior Member
          • Nov 2004
          • 127
          • 4.1.x

          #5

          Comment

          • Trevor Hannant
            vBulletin Support
            • Aug 2002
            • 24326
            • 5.7.X

            #6
            I don't actually see any style on the home page either - have you uploaded the included .htaccess file to the vb5 folder?
            Vote for:

            - Admin Settable Paid Subscription Reminder Timeframe (vB6)
            - Add Admin ability to auto-subscribe users to specific channel(s) (vB6)

            Comment

            • robru
              Senior Member
              • Nov 2004
              • 127
              • 4.1.x

              #7
              The .htaccess file is in the root of the vb5 folder.

              Content:

              Code:
              <IfModule mod_rewrite.c>
                  RewriteEngine On
              
                  # Redirect old install path to core.
                  RewriteRule ^install/ core/install/ [NC,L]
              
                  # Main Redirect
                  RewriteCond %{REQUEST_FILENAME} !-f
                  RewriteCond %{REQUEST_FILENAME} !-d
                  RewriteRule ^(.*)$ index.php?routestring=$1 [L,QSA]
              
                  # Because admincp is an actual directory.
                  RewriteRule ^(admincp/)$ index.php?routestring=$1 [L,QSA]
              
              </IfModule>
              <ifModule mod_headers.c>
                  Header set X-UA-Compatible "IE=Edge,chrome=1"
              </ifModule>

              Comment

              • robru
                Senior Member
                • Nov 2004
                • 127
                • 4.1.x

                #8
                I found the problem Trevor. Make sure you are not using CSS Stored in the File System.

                Comment

                Related Topics

                Collapse

                Working...