Not signed in (Sign In)

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

    • CommentAuthorfunnyboy08
    • CommentTimeJul 12th 2009
     
    How do you remove the password protection when accessing the admin section?
    •  
      CommentAuthorsidtheduck
    • CommentTimeJul 13th 2009
     
    which version are you running, funnyboy08? The beta3 version downloaded from the main Plogger site?

    If so, do you want to disable the login screen altogether and just be redirected to the plog-upload.php screen?
    • CommentAuthorfunnyboy08
    • CommentTimeJul 14th 2009
     
    yes i am using beta3 and yes i would like it to just redirect me plog-upload.php page
    •  
      CommentAuthorsidtheduck
    • CommentTimeJul 16th 2009
     
    Okay,

    Open admin/index.php and look for the session_start(); code at the very top and edit it like so:
    session_start();
    $_SESSION["plogger_logged_in"] = true;
    header("Location: plog-upload.php");
    exit;


    That should do it for you.
    Thankful People: funnyboy08
    • CommentAuthorfunnyboy08
    • CommentTimeJul 16th 2009
     
    many thanks