The only way to reset the admin password is to do a SQL update statement on the database.
You will need to go into phpmyadmin or a similar program which can be user to administer the database tables.
The update statement that you can use is :
UPDATE ipn_tblpasswords SET userpassword = md5(‘admin’) WHERE username = ‘admin’
In this case it is assumed that the username is ‘admin’
0 responses so far ↓
There are no comments yet...Kick things off by filling out the form below.
You must log in to post a comment.