Reset Admin Password

If you have your email address set in admin area and your mail server is working properly, you can reset admin password with "Lost Password" link on admin login page.

You can also use following SQL statements to reset admin password and user name.

Code:
UPDATE `sconfig` SET `svalue` = 'admin' WHERE `soption` = 'admin_name';
UPDATE `sconfig` SET `svalue` = MD5( 'YOURNEWPASSWORD' ) WHERE `soption` = 'admin_pass';
You need to run the SQL commands in phpMyAdmin provided by your web host.

Afer running the SQL commands, you will be able to login to admin area of vshare with

Code:
User: admin
Password: YOURNEWPASSWORD
HOWTO