Install goes fine but Fatal error on home page

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • stejoh
    Member
    • Sep 2006
    • 79
    • 3.8.x

    #16
    I also have this blank screen problem.

    My URL settings in /config.php looks like
    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.99nicu.org/testforum';
    
        // This is the url and web based path to your core directory
    $config['baseurl_core'] = 'http://www.99nicu.org/testforum/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.yourdomain.com/folder';
    
    
        //    ****** 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'] = $config['baseurl'] . '/core';
    - - - Updated - - -

    Strangely, I can log into the modcp, but I cannot log into admincp, and there is the error
    Fatal error: Class 'vB' not found in /home/nicuuorg/public_html/testforum/includes/vb5/template.php on line 86

    - - - Updated - - -

    I have not changed to
    Code:
    $config['core_path'] =  '/home/****/public_html/testforum/core';
    I can now visit the site www.99nicu.org/testforum, can reach modcp, but not admincp...

    - - - Updated - - -

    I suspect that this is a problem with "rewrite". I cannot find any .htaccess file in the upload folder?
    Where can I get that?
    Last edited by stejoh; Fri 12 Oct '12, 11:11pm.

    Comment

    • Yves R.
      vBulletin QA
      • Nov 2003
      • 3861
      • 5.6.X

      #17
      If you are running on OSX or Unix systems, the .htaccess file is hidden due to the nature of the OS. You need to view hidden file in ./upload/.

      Sent from my iPhone using Forum Runner

      vBulletin QA - vBulletin Support French - Lead Project Tools developer

      Next release? Soon(tm)

      Comment

      • stejoh
        Member
        • Sep 2006
        • 79
        • 3.8.x

        #18
        @Yves - you're right.

        I added a .htaccess file in the root folder on the server directly from my ftp-appl and pasted the code

        Code:
        <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?routestring=$1 [L,QSA]  #needed because admincp is an actual directory. RewriteRule ^(admincp/)$ index.php?routestring=$1 [L,QSA] </IfModule>

        Comment

        Related Topics

        Collapse

        Working...