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;