Forum OpenACS Q&A: Re: Lost Administrator Password

Collapse
Posted by Samer Abukhait on
Query the database user

select user_id, username, email from cc_users

the only user supposed to exist now is the admin user.

to reset this account's password create a file.tcl under the www directory with this text

ad_change_password $user_id "ANewPass"

replace user_id with the what resulted as a user_id from the query.

Then call the file from the website http://www...../file

Then log-in using email (from the query) and ANewPass

Samer.