i'm trying to get access as joomla admin. when i type in my Joomla admin/password i get an error:Username and password do not match
mysql -e "USE your_joomla_db_here; UPDATE jos_users SET password=MD5('enter your desired password here') WHERE user='admin';"
You could try and reset it by using something like this on your SME Server command line:Code: [Select]mysql -e "USE your_joomla_db_here; UPDATE jos_users SET password=MD5('enter your desired password here');"Replace the inidicated parameters with the appropriate values and retry.
mysql -e "USE your_joomla_db_here; UPDATE jos_users SET password=MD5('enter your desired password here');"
I'm not a joomla fan/guru, but I suspect that you should put a "where" condition in a "update" query, otherwise you'll change the password of ALL users in jos_users
my 2€c
Code: [Select]mysql -e "USE your_joomla_db_here; UPDATE jos_users SET password=MD5('enter your desired password here');"
the password=MD5 - must this be a MD5 password or can i use my password being eg. " password "
also when i look at my " jos_users " table in phpmyadmin it almost seems as if there are no user nameshow do i check this
yes i did do an fresh install and it seems that there is no admin user (using a joomla template)