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 sml database from your server admin panel

2. Go to table sml_users

3. Find the corresponding line of the administrator and mark his ID

4. Run this query (replace your_new_password and ID)

UPDATE sml_users SET `password`=AES_ENCRYPT('your_new_password','sml') WHERE id=ID;

for example

UPDATE sml_users SET `password`=AES_ENCRYPT('changeme','sml') WHERE id=1;