Try this
You know what username you used?
Do you know what type you entered it as?
FOG Uses MD5 encryption to the passwords to set the password. This way there’s kind of a level of security making cracking your passwords that much more difficult.
Try this:
[code]mysql -u root [ -p #only if you have a password for your database ] fog
select * from users WHERE uName=‘<YOURUSERNAMEHERE>’;
update users set uType=‘0’ where uName=‘<YOURUSERNAMEHERE>’;
update users set uPass=MD5(‘<YOURNEWPASSWORDHERE>’) WHERE uName=‘<YOURUSERNAMEHERE>’:[/code]
Hopefully everything will work properly and you’ll be able to sign into your FOG system.