vB5 25 missing files in /admincp

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • marthom
    New Member
    • Jan 2013
    • 5
    • 4.2.X

    vB5 25 missing files in /admincp

    Installation of vB 5 25 succesfully, but the link to admincp fails.

    I find only 2 folders (img, js) in the admincp folder.
    No index.php or any other file.
  • Mark.B
    vBulletin Support
    • Feb 2004
    • 24287
    • 6.0.X

    #2
    Admincp is uploaded to /core/admincp, though this is not the URL used to access it.
    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

    • marthom
      New Member
      • Jan 2013
      • 5
      • 4.2.X

      #3
      yes you are right.
      the link after installation goes to /admincp not to /core/admincp
      now it works

      Comment

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

        #4
        Yep that's all working "as designed".

        Uses redirects.
        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

        • marthom
          New Member
          • Jan 2013
          • 5
          • 4.2.X

          #5
          Uses redirects
          With the default .htaccess the redirects don't work.

          Default .htaccess:
          <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>

          I add a line RewriteBase / and now it works

          my .htaccess
          <IfModule mod_rewrite.c>
          RewriteEngine On
          RewriteBase /

          # 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>

          Comment

          Related Topics

          Collapse

          Working...