1. To chat with the GameOgre community, you need to have at least 100 posts. Once you have the 100 posts, post at Become A New Ogre
    Dismiss Notice

Internal Server Error

Discussion in 'Living Avatars' started by angeljs, Apr 22, 2012.

  1. angeljs

    angeljs MMORPGer New Ogre

    Messages:
    47
    Likes Received:
    0
    Trophy Points:
    6
    Credit:
    70.00
    I'm trying to upgrade to the latest release on vB4 but receive an internal server error whichever page I try to access. Here's what the error log says:

    Code:
    [22-Apr-2012 08:13:01] PHP Warning:  include(../setup_functions.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/******/public_html/sims/living_avatars/setup/upgrade.php on line 16
    [22-Apr-2012 08:13:01] PHP Warning:  include() [<a href='function.include'>function.include</a>]: Failed opening '../setup_functions.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/******/public_html/sims/living_avatars/setup/upgrade.php on line 16
    [22-Apr-2012 08:15:43] PHP Warning:  include(/home/******/public_html/sims/living_avatars/setup_functions.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/******/public_html/sims/living_avatars/setup/upgrade.php on line 16
    [22-Apr-2012 08:15:43] PHP Warning:  include() [<a href='function.include'>function.include</a>]: Failed opening '/home/******/public_html/sims/living_avatars/setup_functions.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/******/public_html/sims/living_avatars/setup/upgrade.php on line 16
    I only receive this error on Living Avatars and now I can't access it at all, and I can't find any prior releases to upload. :(
     
    Last edited by a moderator: Apr 22, 2012
  2. confuser

    confuser Big Brute The Pit

    Messages:
    122
    Likes Received:
    0
    Trophy Points:
    16
    Credit:
    50.00
    Are you sure you have overwritten all the files? That is very odd especially the
    Code:
    nclude(/home/******/public_html/sims/living_avatars/setup_functions.php
    error as in upgrade it has
    Code:
    include(ROOT_PATH . 'setup/setup_functions.php');
    so it should be pointing to the setup folder regardless, but for some reason yours isn't...
     
  3. angeljs

    angeljs MMORPGer New Ogre

    Messages:
    47
    Likes Received:
    0
    Trophy Points:
    6
    Credit:
    70.00
    Hi, yes I've uploaded them several times. Could it be something to do with the fact that my forum isn't under my main public_html folder, but a sub-folder?
     
  4. confuser

    confuser Big Brute The Pit

    Messages:
    122
    Likes Received:
    0
    Trophy Points:
    16
    Credit:
    50.00
    No, that won't make a difference.

    Can you open setup/upgrade.php and confirm that the first 17 lines are exactly like this
    Code:
    <?php
    // ###############################################################################
    // DEFINE CONSTANTS
    // ###############################################################################
    
    define('IN_PRGM', true);
    define('ROOT_PATH', '../');
    define('UPGRADING_PRGM', true);
    
    
    
    // ###############################################################################
    // INCLUDE INSTALL FUNCTIONS AND INIT PRGM
    // ###############################################################################
    
    include(ROOT_PATH . 'setup/setup_functions.php');
    include(ROOT_PATH . 'includes/init.php');  // includes prgm_info file
     
  5. angeljs

    angeljs MMORPGer New Ogre

    Messages:
    47
    Likes Received:
    0
    Trophy Points:
    6
    Credit:
    70.00
    Yes, exactly the same :confused:
     
  6. confuser

    confuser Big Brute The Pit

    Messages:
    122
    Likes Received:
    0
    Trophy Points:
    16
    Credit:
    50.00
    Try moving the setup_functions.php file up one level, so into the root of LA
     
  7. angeljs

    angeljs MMORPGer New Ogre

    Messages:
    47
    Likes Received:
    0
    Trophy Points:
    6
    Credit:
    70.00
    Still nothing :( I really appreciate your taking the time with this, thanks.
     
  8. Insydius

    Insydius Little Spike New Ogre

    Messages:
    19
    Likes Received:
    0
    Trophy Points:
    0
    Credit:
    1,616.00
    What version of Living Avatars do you have now and which are you trying to upgrade to?
     
  9. angeljs

    angeljs MMORPGer New Ogre

    Messages:
    47
    Likes Received:
    0
    Trophy Points:
    6
    Credit:
    70.00
    I'm not sure which one I have, but I've just downloaded the latest version today. I'm using one that's at least a few months old.
     
  10. confuser

    confuser Big Brute The Pit

    Messages:
    122
    Likes Received:
    0
    Trophy Points:
    16
    Credit:
    50.00
    I can't quite work out why its trying to include setup_functions from LA's root directory when the include clearly has /setup/.

    Find
    Code:
    define('IN_PRGM', true);
    define('ROOT_PATH', '../');
    define('UPGRADING_PRGM', true);
    After add
    Code:
    die(ROOT_PATH);
    This wont fix it but will help with debugging, it should output ../

    If it does output ../
    replace
    Code:
    die(ROOT_PATH);
    with
    Code:
    die(ROOT_PATH . 'setup/setup_functions.php');
    and post here what it outputs
     
  11. angeljs

    angeljs MMORPGer New Ogre

    Messages:
    47
    Likes Received:
    0
    Trophy Points:
    6
    Credit:
    70.00
    This is the output:
    Code:
    ../setup/setup_functions.php
     
  12. confuser

    confuser Big Brute The Pit

    Messages:
    122
    Likes Received:
    0
    Trophy Points:
    16
    Credit:
    50.00
    Ok, I have really no idea why its looking for the setup_functions.php file in root directory of LA rather than setup if its outputting that :S
     
  13. Admin Post
    ogreman

    ogreman Ogre In Charge Staff Member GameOgre Admin

    Messages:
    52,581
    Likes Received:
    8,872
    Trophy Points:
    113
    Credit:
    197,064.38
    Hmmm, is there any way to fix this?
     
  14. confuser

    confuser Big Brute The Pit

    Messages:
    122
    Likes Received:
    0
    Trophy Points:
    16
    Credit:
    50.00
    Nobody else is having issues as far as I'm aware. It sounds like a server issue more than a coding one.

    angeljs would it be possible for you to grant me FTP access to find out what is causing the error?
     
  15. Admin Post
    ogreman

    ogreman Ogre In Charge Staff Member GameOgre Admin

    Messages:
    52,581
    Likes Received:
    8,872
    Trophy Points:
    113
    Credit:
    197,064.38
    Has this issue been cleared up now?
     
  16. angeljs

    angeljs MMORPGer New Ogre

    Messages:
    47
    Likes Received:
    0
    Trophy Points:
    6
    Credit:
    70.00
    Hi, sorry for the delay in replying, I didn't receive notification of any new replies. :( Anyway, I managed to find an old backup of LA which I've been using on vB3. Now I've upgraded to vB4 and decided to try a new installation of LA. The database is cleared of all LA tables, and I've deleted, then re-uploaded all LA files into my forum root.

    Now when I go to any page, i.e. setup, admin, etc. it's blank. Here's what I received from my error log:

    Code:
    [07-Jul-2012 13:38:42] PHP Fatal error:  Call to undefined method DB::connect() in /home/******/public_html/sims/living_avatars/includes/init.php on line 150
    I've used the latest release which I've just downloaded today.
     
  17. confuser

    confuser Big Brute The Pit

    Messages:
    122
    Likes Received:
    0
    Trophy Points:
    16
    Credit:
    50.00
    There must be something wrong with your PHP setup. Line 15 is a comment, specifically
    Code:
    // LOAD PRGM INFO
    
    That would never ever cause a fatal error. Open includes/init.php and confirm that line 15 is the code I just posted
     
  18. angeljs

    angeljs MMORPGer New Ogre

    Messages:
    47
    Likes Received:
    0
    Trophy Points:
    6
    Credit:
    70.00
    Hi, it's line 150:

    $DB->connect();
     
  19. confuser

    confuser Big Brute The Pit

    Messages:
    122
    Likes Received:
    0
    Trophy Points:
    16
    Credit:
    50.00
    Sorry could have sworn it said line 15 lol.

    Ah, you are still using vbulletin 3 or LA at least still thinks you are. Open up your vB config file. It probably still says version 3 if you've upgraded, change it so it says

    vBulletin 4

    And that error will then disappear :)
     
  20. angeljs

    angeljs MMORPGer New Ogre

    Messages:
    47
    Likes Received:
    0
    Trophy Points:
    6
    Credit:
    70.00
    Okay, did that and still can't install. Here's the error log:

    Code:
    [07-Jul-2012 13:55:19] PHP Warning:  include(./setup/setup_functions.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/******/public_html/sims/living_avatars/setup/install.php on line 16
    [07-Jul-2012 13:55:19] PHP Warning:  include(./setup/setup_functions.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/******/public_html/sims/living_avatars/setup/install.php on line 16
    [07-Jul-2012 13:55:19] PHP Warning:  include() [<a href='function.include'>function.include</a>]: Failed opening './setup/setup_functions.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/******/public_html/sims/living_avatars/setup/install.php on line 16
    [07-Jul-2012 13:55:19] PHP Warning:  include(./includes/init.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/******/public_html/sims/living_avatars/setup/install.php on line 17
    [07-Jul-2012 13:55:19] PHP Warning:  include(./includes/init.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in /home/******/public_html/sims/living_avatars/setup/install.php on line 17
    [07-Jul-2012 13:55:19] PHP Warning:  include() [<a href='function.include'>function.include</a>]: Failed opening './includes/init.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/******/public_html/sims/living_avatars/setup/install.php on line 17
    [07-Jul-2012 13:55:19] PHP Fatal error:  Call to undefined function  displaysetupheader() in /home/******/public_html/sims/living_avatars/setup/install.php on line 25
    [07-Jul-2012 13:55:47] PHP Fatal error:  Call to undefined method DB::connect() in /home/******/public_html/sims/living_avatars/includes/init.php on line 150
     

Share This Page