6
Hi Council,
If you still have phpMyAdmin acces try the following :
The password is stored in xoops_user field :pass.
It is in MD5. the following lets you create your own md5 password.
echo md5(password_of_your_choice);
?>
Save this snippit in a *.php file and call it from a browser. You will get the md5 code to put into the database for your username. (xoops_user table)
You should now be able to log in with your username + password_of_your_choice
If this doesnt work your xoops_groups_users_link table might be the problem.
add a new row :
linkid = next unused number
groupid = id of the group you want to be added to (1 = webmasters in my case) (look up in xoops_groups)
uid = userid (look up in the xoops_user table)
This should get you into your site !!!
Greetings Highlander
ps. this post assumes you have XOOPS as your table prefix; change it if needed.