Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorTravelman
    • CommentTimeJun 1st 2008
     
    Hope someone can help me. I changed hosting form my website, but kept everything the same as far as directory names etc. Now when I go to login, after I've put in my name and password I get:

    Warning: require_once(lib/gettext/streams.php) [function.require-once]: failed to open stream: No such file or directory in /home/content/c/r/e/creativetrav/html/photos/plog-globals.php on line 23

    Fatal error: require_once() [function.require]: Failed opening required 'lib/gettext/streams.php' (include_path='.:/usr/local/php5/lib/php') in /home/content/c/r/e/creativetrav/html/photos/plog-globals.php on line 23

    I can't figure out how to fix that. When I run _install again, I get the SAME message.

    Help!!
    •  
      CommentAuthorsidtheduck
    • CommentTimeJun 1st 2008
     
    Travelman,

    From that error, it looks like your PHP settings do not have the include_path setup for your root folder (just to the location where PHP is installed which is usually different on shared hosting). To fix this, you just need to open 'plog-globals.php' and edit the following lines:

    Change:
    if (!class_exists('streamreader')) {
    require_once("lib/gettext/streams.php");
    require_once("lib/gettext/gettext.php");
    }
    to:if (!class_exists('streamreader')) {
    require_once(PLOGGER_DIR."lib/gettext/streams.php");
    require_once(PLOGGER_DIR."lib/gettext/gettext.php");
    }


    That should clear it up!
    • CommentAuthorTravelman
    • CommentTimeJun 1st 2008
     
    That part must have worked, but now I'm getting an access denied and password error.

    Thanks for your help in this.