Issues after installing 5.0.0 Beta 23

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • catsma_97504
    Member
    • Jan 2013
    • 81
    • 5.0.X

    Issues after installing 5.0.0 Beta 23

    Just completed a test install of the latest beta code. 4.2 cannot be installed because I am using PHP 5.4.3 and MySQL 5.5.24 on Apache v2.2.22.

    Experienced no issues with the latest install, other than having to manually delete the makecp.php (think that was the name of the file).

    But, now nothing works. All links are broken; and I can only access the admincp by using /core/admincp.

    Have verified that the Forum URL ends with /core.

    Have copied the .htaccess file down to the root directory as forum is installed in a subdirectory. And, added the RewriteBase line to the file.

    Domain Name: http://www.everythingaquatic.net
    Forum Path: /forum/vBulletin

    Here is the .htaccess file in the root directory:

    PHP Code:
    <IfModule mod_rewrite.c>
        
    RewriteEngine On
        RewriteBase 
    /forum/vBulletin

        
    # Redirect old install path to core.
        
    RewriteRule ^installcore/install/ [NC,L]

        
    # Main Redirect
        
    RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond 
    %{REQUEST_FILENAME} !-d
        RewriteRule 
    ^(.*)$ index.php?routestring=$[L,QSA]

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

    </
    IfModule
    What am I overlooking?

    I currently am running phpBB 3.0.11 and will be moving over to vBulletin once I am comfortable with the install and using the importer tools (which I have yet to look at).

    Thanks for your help!
  • Zachery
    Former vBulletin Support
    • Jul 2002
    • 59097

    #2
    I'm seeing the 404 errors, what does your presentation config.php file contain?

    Comment

    • catsma_97504
      Member
      • Jan 2013
      • 81
      • 5.0.X

      #3
      Presentation config
      <?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.everythingaquatic.net/forum/vBulletin';



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



      // ****** 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

      • Lynne
        Former vBulletin Support
        • Oct 2004
        • 26255

        #4
        First off, change the directory name from /vBulletin to just /vbulletin (use all small letters, no caps) on your server and in the config.php file you posted..

        Then, this line should be:
        RewriteBase /forum/vbulletin/

        Note the / at the end.

        I am getting this error going to your site so I can't comment anymore:
        Oops! Google Chrome could not find www.everythingaquatic.net


        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 &lt;- awesome site for html/css help

        Comment

        Related Topics

        Collapse

        Working...