Just Another V5 Install Help Request

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • filthyms
    New Member
    • Nov 2012
    • 12

    Just Another V5 Install Help Request

    Downloaded and installed V5 Beta 18 - uploaded the files according to the instruction on my 1and1 server and edited the htaccess file to run php6 (1and1's php5.0+) with mod rewrite on.

    I'm having the same issues as others here have posted with the "admin" link on the site not taking me to the right directory.

    The forum is here: http://www.allcrawl.com/forum

    For the admin login, http://www.allcrawl.com/forum/admincp doesn't work, however, http://www.allcrawl.com/forum/core/admincp does, although another thread here states this is a problem. (?)

    I've tried adding and removing "/core" to the URL in the admin URL settings but that didn't work. Both config files are correct and I can post them if needed.

    The only thing I can think of that could be causing problems is that the "Phorum" which is being replaced with Vbulletin is still running on the main directory of the site - http://www.allcrawl.com

    Thanks in advance!

    Ben
  • Hartmut
    Senior Member
    • Nov 2007
    • 2870
    • 4.2.x

    #2
    How does your presentation config.php look like? Are mod_security or suhosin blocking any function?
    No private support, only PM me when I ask for it. Support in the forums only.

    Comment

    • filthyms
      New Member
      • Nov 2012
      • 12

      #3
      Originally posted by Hartmut
      How does your presentation config.php look like? Are mod_security or suhosin blocking any function?
      Thanks for the reply, let me know if this helps!

      PHPInfo: http://www.allcrawl.com/forum/phpinfo.php

      PHP Code:

      <?php
      /*======================================================================*\
      || #################################################################### ||
      || # vBulletin 5 Presentation Configuration                           # ||
      || # ---------------------------------------------------------------- # ||
      || # All PHP code in this file is �2000-2012 vBulletin Solutions Inc. # ||
      || # This file may not be redistributed in whole or significant part. # ||
      || # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
      || # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
      || #################################################################### ||
      \*======================================================================*/

      /*-------------------------------------------------------*\
      | ****** NOTE REGARDING THE VARIABLES IN THIS FILE ****** |
      +---------------------------------------------------------+
      | When making changes to the file, the edit should always |
      | be to the right of the = sign between the single quotes |
      | Default: $config['admincpdir'] = 'admincp';             |
      | Example: $config['admincpdir'] = 'myadmin';  GOOD!      |
      | Example: $config['myadmin'] = 'admincp'; BAD!           |
      \*-------------------------------------------------------*/


          //    ****** 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.allcrawl.com/forum';


      // 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.yourdomain.com/folder';


          //    ****** System Paths ******

          // 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'] = 'bb';


      //    ****** Special Settings ******
      // These settings are only used in some circumstances
      // Please do not edit if you are not sure what they do.

      // You can ignore this setting for right now.
      $config['cookie_enabled'] = true;

      $config['report_all_php_errors'] = false;
      $config['no_template_notices'] = true;

      // This setting should never be used on a live site
      $config['no_js_bundles'] = false;

      // This setting enables debug mode, it should NEVER be used on a live site
      $config['debug'] = false;

      // Assumes default location of core. 
      // These are the system paths and folders for your vBulletin files
      // This setting is for where your vbulletin core folder is
      $config['core_path'] = realpath(dirname(__FILE__)) . '/core';

          
      // This is the url and web based path to your core directory
      $config['baseurl_core'] = $config['baseurl']  .  '/core';


      /*======================================================================*\
      || ####################################################################
      || # Downloaded: 
      || # CVS: $RCSfile$ - 
      || ####################################################################
      \*======================================================================*/

      Comment

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

        #4
        Doesn't appear that mod_rewrite is working on your server. Did you upload the .htaccess file in the upload directory of your download package?
        Translations provided by Google.

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

        Comment

        • filthyms
          New Member
          • Nov 2012
          • 12

          #5
          Originally posted by Wayne Luke
          Doesn't appear that mod_rewrite is working on your server. Did you upload the .htaccess file in the upload directory of your download package?
          Yes, here is what the .htaccess file reads:

          PHP Code:
          AddHandler x-mapp-php6 .php  

          <IfModule mod_rewrite.c>
          RewriteEngine On
          RewriteCond 
          %{REQUEST_FILENAME} !-f
          RewriteCond 
          %{REQUEST_FILENAME} !-d
          RewriteRule 
          ^(.*)$ index.php?routestring=$[L,QSA]

          #needed because admincp is an actual directory.
          RewriteRule ^(admincp/)$ index.php?routestring=$[L,QSA]
          </
          IfModule

          Comment

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

            #6
            You will have to ask the hosting provider if mod_rewrite is enabled on your account. None of the links work properly because it isn't enabled.
            Translations provided by Google.

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

            Comment

            • filthyms
              New Member
              • Nov 2012
              • 12

              #7
              I've contacted 1and1 and made the required changes to enable PHP 5.4 as well as the mod_rewrite function.

              I'm told everything on the back end should be in order now, however, I'm still having the same issues.

              Any suggestions?



              Originally posted by Wayne Luke
              You will have to ask the hosting provider if mod_rewrite is enabled on your account. None of the links work properly because it isn't enabled.

              Comment

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

                #8
                Do you have another forum software package installed on the same site? When I click on "Blogs" it appears to take me to another forum.

                Nothing else should be installed in the vBulletin directory. I suggest uploading only the vBulletin files to your forums directory and upgrading to beta 19.
                Translations provided by Google.

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

                Comment

                • filthyms
                  New Member
                  • Nov 2012
                  • 12

                  #9
                  The existing forum is being replaced with vbulletin and I was hoping to get vbulletin running in its own sub directory first so I could transfer over most of the data and then remove the previous forum.

                  Sounds like that won't work very well so let me try a few other things and see what happens.

                  Originally posted by Wayne Luke
                  Do you have another forum software package installed on the same site? When I click on "Blogs" it appears to take me to another forum.

                  Nothing else should be installed in the vBulletin directory. I suggest uploading only the vBulletin files to your forums directory and upgrading to beta 19.
                  - - - Updated - - -

                  So I moved the old forum, wiped out the directory, and installed VB5.19

                  The home directory only consists of an html file directing people to a mirror of the previous site and a error404 page. The vb5 forum is at http://www.allcrawl.com/vb5

                  I had to add "DirectoryIndex index.php" to the .htaccess file for the directory to automatically direct to index.php but now that works.

                  Unfortunately, the links still don't work and the admincp gets an error 404.

                  Thoughts? Is this still a mod-rewrite issue?



                  Originally posted by filthyms
                  The existing forum is being replaced with vbulletin and I was hoping to get vbulletin running in its own sub directory first so I could transfer over most of the data and then remove the previous forum.

                  Sounds like that won't work very well so let me try a few other things and see what happens.

                  Comment

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

                    #10
                    In your .htaccess add the following line after RewriteEngine On:

                    RewriteBase /vb5/

                    Does that help?
                    Translations provided by Google.

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

                    Comment

                    • filthyms
                      New Member
                      • Nov 2012
                      • 12

                      #11
                      Yes! That appears to have solved many of the issues, however, the "login or signup" link at the top right isn't working and I can't seem to login to admincp.



                      Originally posted by Wayne Luke
                      In your .htaccess add the following line after RewriteEngine On:

                      RewriteBase /vb5/

                      Does that help?

                      Comment

                      • filthyms
                        New Member
                        • Nov 2012
                        • 12

                        #12
                        I think I'll just install v4 until v5 is officially released. Thanks for your help!

                        Comment

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

                          #13
                          Ok...not a bad idea actually, as vB5 is still in beta and not really ready for production sites.

                          When the Gold version comes out, if you are having trouble with the upgrade, post back for help.
                          (Remember when that time comes, upgrade a test mirror of your site first0.
                          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...