Not signed in (Sign In)

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

    •  
      CommentAuthorsidtheduck
    • CommentTimeJun 1st 2008
     
    wouterberg,

    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!