How do we either find out or reset admin account passwords for cmsms 1.10 and up? This guide only works for cmsms systems below 1.10...
http://wiki.cmsmadesimple.org/index.php ... d_password
thanks
[SOLVED]How to find out admin password for versions 1.10+
[SOLVED]How to find out admin password for versions 1.10+
Last edited by blackhawk on Fri Apr 06, 2012 12:38 pm, edited 1 time in total.
Re: How to find out admin password for versions 1.10 and up?
val = md5(get_site_preference('sitemask','').$password);
Lookup the sitemask value in cmsms_siteprefs and insert it before the wanted password and then run the md5 algorithm.
Lookup the sitemask value in cmsms_siteprefs and insert it before the wanted password and then run the md5 algorithm.
Re: [SOLVED]How to find out admin password for versions 1.10
.. which will only work if you don't salt your passwords in 1.10.*
Re: [SOLVED]How to find out admin password for versions 1.10
an universal solution with only one query :
more informations on :
http://www.linkedin.com/groupItem?view= ... re-0-b-ttl (you must be member of cmsmadesimple's group
works with cmsms < 1.10.x, cmsms >= 1.10.x, with or without salt passwordupdate cms_users set password = (select md5(CONCAT(IFNULL((SELECT sitepref_value FROM cms_siteprefs WHERE sitepref_name = 'sitemask'),''),'NEW_PASSWORD'))) where username = 'USER_NAME'
more informations on :
http://www.linkedin.com/groupItem?view= ... re-0-b-ttl (you must be member of cmsmadesimple's group
Re: [SOLVED]How to find out admin password for versions 1.10
Lovely query bess, thank you, most probably solved our "change all client websites' CMSMS password"
regards,
Vaclav
regards,
Vaclav
Re: [SOLVED]How to find out admin password for versions 1.10
sincerely happy to see that it can be helpful 
