Error after installation

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • JKerviel12
    Senior Member
    • Feb 2008
    • 114

    Error after installation

    I am installing vB5 on a test site - a fresh installation.

    Everything seemed to go fine, but ... when I click "Go to admin panel", I get the following error message:

    Notice: Undefined config property 'core_path' in /home/.../.......com/vB5/forum/includes/api/interface/collapsed.php on line 15 in/home/...../.....com/vB5/forum/includes/vb5/config.php on line 53

    Notice: Undefined config property 'admincpdir' in /home/...../...............com/vB5/forum/includes/vb5/template.php on line 56 in/home/......./..........com/vB5/forum/includes/vb5/config.php on line 53

    Fatal error: Class 'vB' not found in /home/...../...........com/vB5/forum/includes/vb5/template.php on line 129
  • Lynne
    Former vBulletin Support
    • Oct 2004
    • 26255

    #2
    Please post the content of your presentation config.php file. Also, when you did the install, what did you enter for the Forum URL? And, did you read the vB5 installation instructions prior to installing?

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

    Comment

    • BigEarl
      New Member
      • Oct 2012
      • 1

      #3
      I'm getting a similar message how can I fix problem. This is a fresh install. Fatal error: Class 'vB' not found in /home/content/44/10007544/html/vbulletin/includes/vb5/template.php on line 129

      - - - Updated - - -

      *======================================================================*\
      || #################################################################### ||
      || # 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.pennystockhangout.com';


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

      // ****** 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 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'] = 'home/vbulletin/public_html/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
        This line is incorrect:
        HTML Code:
        $config['core_path'] = 'home/vbulletin/public_html/core';
        It should be:
        HTML Code:
        $config['core_path'] = realpath(dirname(__FILE__)) . '/core';

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

        Comment

        Related Topics

        Collapse

        Working...