From 26 April to 12 May I will not be able to give assistance as I will be on vacation. Thank you and I will get back to you as soon as possible.

Okay
  Print

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;