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
    • CommentAuthorsprings
    • CommentTimeApr 22nd 2008
     
    im pretty new to linux and all that goes on in it.

    i installed plogger onto the server and changed the folder name to something else. i was using the password given to me by the install and dont remember it. ive read through some of the posts but being new to linux im not sure what im really doing :(

    any ideas
    •  
      CommentAuthorsidtheduck
    • CommentTimeApr 22nd 2008
     
    springs,

    You should have received an email with the login and password. If not, don't worry. Mike wrote a great post -> here <- describing how to reset your password
    • CommentAuthorsprings
    • CommentTimeApr 22nd 2008
     
    erm reading that.. one question? how to i access mysql admin via the browser? only time i did it was once through a terminal
    •  
      CommentAuthorsidtheduck
    • CommentTimeApr 22nd 2008
     
    using phpMyAdmin is usually through cPanel. Hopefully you're webhost allows this access. If you only have shell access, you will have to edit it yourself (which I can point you to the commands to use). However, it is much easier to use phpMyAdmin if it is available to you.
    • CommentAuthorsprings
    • CommentTimeApr 22nd 2008
     
    im using a home built server.
    •  
      CommentAuthorsidtheduck
    • CommentTimeApr 22nd 2008
     
    You would use commands similar to -> here <-

    So you would do something like:
    [mysql_dir]/bin/mysql -h [mysql_hostname] -u [mysql_username] -p <- (sometimes just "mysql -u [mysql_username] -p" works)
    [mysql_password]
    use [db_name];
    UPDATE plogger_config SET admin_password = MD5('[new_password]');

    You will need to provide anything in square brackets "[ ]". See if that works for you.
    • CommentAuthorsprings
    • CommentTimeApr 22nd 2008
     
    all sorted now..

    thanks
    •  
      CommentAuthorsidtheduck
    • CommentTimeApr 22nd 2008 edited
     
    great! :D