It depends what way it's encrypted, usually the two most common ways are going to be MySQL's default password function or md5, in which case you can do either of:
UPDATE table SET password=PASSWORD('newone') WHERE user='juicy';
or
UPDATE table SET password=md5('newone') WHERE user='juicy';
It depends what way it's encrypted, usually the two most common ways are going to be MySQL's default password function or md5, in which case you can do either of:
UPDATE table SET password=PASSWORD('newone') WHERE user='juicy';
or
UPDATE table SET password=md5('newone') WHERE user='juicy';
Originally posted by directfiesta
you need to repace it with an encrypted password ( MD5)
then click your ruby slippers three times and repeat 'there's no password like 68b329da9893e34099c7d8ad5cb9c940, there's no password like 68b329da9893e34099c7d8ad5cb9c940, there's no password like 68b329da9893e34099c7d8ad5cb9c940'
Comment