0

How to change forum administrator username and password

Wednesday, November 7, 2007

You can modify the login details of the forum admin user using the sql queries. Use the forum dat
abase and update the login details using the following queries.
update phpbb_users set username ='administrator' where username = 'admin';

You can use the URL http://www.invision-graphics.com/md5hash_generator.html to generate the MD5 p
assword encryption
mysql>update phpbb_users set user_password = 'd555ccddb47faf2e13a66c0888cdb72d' where username = 'administrator';

The 'd555ccddb47faf2e13a66c0888cdb72d' is an MD5 encrypted password.

0 Responses to "How to change forum administrator username and password"