Not signed in (Sign In)

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

Please sign in or apply for membership to remove the ads
    • CommentAuthorjohn-new
    • CommentTimeJul 31st 2008
     
    Using WAMP server 2, created a new database in MySQL, then a fresh install of Plogger B3. I get this
    Your username is and your password is ``

    What is my username & Password ?
    I have tried updateing MySQL with this
    UPDATE `plogger_config` SET `admin_password` = MD5('** Secret MD5 Hash **')
    UPDATE `plogger_config` SET `admin_username` = ('Admin')

    I still cannot log, getting Invalid Login.

    Am I missing something really simple here, any help would be appreciated
    •  
      CommentAuthorsidtheduck
    • CommentTimeJul 31st 2008
     
    john-new,

    What webserver are you hosting on? It looks to me like you are running into session variable errors (which is where the admin and password is stored during install). Some webservers need the user to manually set the session save location (especially if you are running PHP5 and your webhost hasn't set a default session save path in your php.ini).
    • CommentAuthorjohn-new
    • CommentTimeAug 3rd 2008
     
    cracked it,

    amend the following line in plog-admin.php

    From:

    if (($_REQUEST["username"] == $config["admin_username"]) && (md5($_REQUEST["password"]) == $config["admin_password"])){

    To:

    if (($_REQUEST["username"] != $config["admin_username"]) && (md5($_REQUEST["password"]) != $config["admin_password"])){

    Now login to the administration section without a username and password and set a New Administrator Password.
    Go back to the plog-admin.php file and change back to its origional state

    i.e. change != back to ==

    You can now login using your new password. This could have been done with an SQL admin program, but I dont have one installed
    on my server.

    A suggestion for the developer(s) can we set the admin password during install please.

    By the way, the software is superb, quick and easy to manage, just what I was looking for

    Cheers,

    John
    • CommentAuthorPlebbi
    • CommentTimeAug 30th 2008
     
    Sweet, it worked for some reason my login stopped working :S... like someone had changed the pass so i edited plog-admin ;) and reset the pass very easy :D thanks John