Not signed in (Sign In)

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

    • CommentAuthorcregy
    • CommentTimeJun 7th 2006
     
    Hi Guys

    The site url is:
    http://cregy.net/Plogger/index.php
    but guess what blank admin screen. Safe mode is off. My php-globals looks like this:
    <?php

    //error_reporting(E_NONE);

    session_start();

    ini_set("arg_separator.output","&amp;");

    global $TABLE_PREFIX;
    $TABLE_PREFIX = "plogger_";

    if (!ini_get('safe_mode'))
    set_time_limit(0);

    require_once("plog-config.php");
    connect_db();

    require_once("plog-load_config.php");


    if (!isset($_SESSION["plogger_sortby"])){
    $_SESSION["plogger_sortby"] = $config['default_sortby'];
    }

    if (!isset($_SESSION["plogger_sortdir"])){
    $_SESSION["plogger_sortdir"] = $config['default_sortdir'];
    }

    if (!isset($_SESSION["plogger_details"])){
    $_SESSION["plogger_details"] = 0;

    }

    ?>
    I seem to remember having some problems with Wordpress and urls needing to be exact! Is this a possible Plogger problem. I have read through the other blank support posts and this does seem to be a problem. But I have to admit I can't see where I would enter the urls.

    Thanks

    Rich
    • CommentAuthorddejong
    • CommentTimeJun 7th 2006
     
    First, under this:
    //error_reporting(E_NONE);
    Add this:
    error_reporting(E_ALL);

    Run it again.

    Also, check your server log for any related errors. A fatal error would be especially helpful.

    Cheers,
    Derek
    • CommentAuthorcregy
    • CommentTimeJun 8th 2006
     
    Hi Derek et al

    Here are the server file logs:
    client 86.53.38.156] PHP Notice: Undefined index: level in /var/www/vhosts/cregy.net/httpdocs/Plogger/gallery.php on line 37
    [client 86.53.38.156] PHP Notice: Undefined variable: rss_link in /var/www/vhosts/cregy.net/httpdocs/Plogger/gallery.php on line 634
    [client 86.53.38.156] PHP Notice: Undefined index: level in /var/www/vhosts/cregy.net/httpdocs/Plogger/gallery.php on line 37
    [client 86.53.38.156] PHP Notice: Undefined variable: rss_link in /var/www/vhosts/cregy.net/httpdocs/Plogger/gallery.php on line 634
    [client 86.53.38.156] PHP Notice: A session had already been started - ignoring session_start() in /var/www/vhosts/cregy.net/httpdocs/Plogger/plog-globals.php on line 5, referer: http://cregy.net/Plogger/admin/index.php
    [client 86.53.38.156] PHP Warning: main() [<a href='function.main'>function.main</a>]: open_basedir restriction in effect. File(/plog-config.php) is not within the allowed path(s): (/var/www/vhosts/cregy.net/httpdocs:/tmp) in /var/www/vhosts/cregy.net/httpdocs/Plogger/plog-globals.php on line 15, referer: http://cregy.net/Plogger/admin/index.php
    [client 86.53.38.156] PHP Warning: main(plog-config.php) [<a href='function.main'>function.main</a>]: failed to open stream: Operation not permitted in /var/www/vhosts/cregy.net/httpdocs/Plogger/plog-globals.php on line 15, referer: http://cregy.net/Plogger/admin/index.php
    [client 86.53.38.156] PHP Fatal error: main() [<a href='function.require'>function.require</a>]: Failed opening required 'plog-config.php' (include_path='.:') in /var/www/vhosts/cregy.net/httpdocs/Plogger/plog-globals.php on line 15, referer: http://cregy.net/Plogger/admin/index.php
    [client 86.53.38.156] PHP Notice: A session had already been started - ignoring session_start() in /var/www/vhosts/cregy.net/httpdocs/Plogger/plog-globals.php on line 5, referer: http://cregy.net/Plogger/admin/index.php
    [client 86.53.38.156] PHP Warning: main() [<a href='function.main'>function.main</a>]: open_basedir restriction in effect. File(/plog-config.php) is not within the allowed path(s): (/var/www/vhosts/cregy.net/httpdocs:/tmp) in /var/www/vhosts/cregy.net/httpdocs/Plogger/plog-globals.php on line 15, referer: http://cregy.net/Plogger/admin/index.php
    [client 86.53.38.156] PHP Warning: main(plog-config.php) [<a href='function.main'>function.main</a>]: failed to open stream: Operation not permitted in /var/www/vhosts/cregy.net/httpdocs/Plogger/plog-globals.php on line 15, referer: http://cregy.net/Plogger/admin/index.php
    [client 86.53.38.156] PHP Fatal error: main() [<a href='function.require'>function.require</a>]: Failed opening required 'plog-config.php' (include_path='.:') in /var/www/vhosts/cregy.net/httpdocs/Plogger/plog-globals.php on line 15, referer: http://cregy.net/Plogger/admin/index.php

    I hope that helps.

    Rich
    • CommentAuthorcregy
    • CommentTimeJun 9th 2006
     
    Any thoughts anyone please?

    Thanks

    Rich