Reset administrator password
1. Login into svt database from your server admin panel
2. Go to table svt_users
3. Find the corresponding line of the administrator and mark his ID
4. Run this query (replace your_new_password and ID)
UPDATE `svt_users` SET `password`=MD5('your_new_password') WHERE id=ID;
for example
UPDATE `svt_users` SET `password`=MD5('changeme') WHERE id=1;