Resetting Password for Advanced guest book
October 6th, 2009
We can reset the admin password for advanced guest book go through the following
1) First check the guest book database name in the configuration file of Advanced Guset Book at the folloeing
/home/username/public_html/guestbook/admin/config.inc.php
2) To retrive the guestbook password select the guest book db in PHPMyAdmin and the table book_auth. While browsing it will show you the user name.
run this sql command to change the password at the SQL query box in PHPMyAdmin
update book_auth set password=PASSWORD(’pass’) where username=’user’;
where ‘pass’ is your password and ‘user’ is the user name.