the default setting is admin/admin ...... and in case you delete or overwrite the admin password ... there is the solution (can be found in the documentation :-) )
--- cut on ---
I forgot/lost my admin password. How can I reset it?
The easiest way is to admin a new admin user and then use that new user to reset the password for your old admin account. Assuming you have deleted the original 'admin' login, you can use the following SQL to insert a new admin user into the database:
This will add a user with login 'admin' and password 'admin' to the database. If you still have a user named 'admin', then replace 'admin' in the above SQL with a different username.
--- cut off ---
kind regards
Markus
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Stupid me.. cant remember admin password.. how can i recover it?
hi
the default setting is admin/admin ...... and in case you delete or overwrite the admin password ... there is the solution (can be found in the documentation :-) )
--- cut on ---
I forgot/lost my admin password. How can I reset it?
The easiest way is to admin a new admin user and then use that new user to reset the password for your old admin account. Assuming you have deleted the original 'admin' login, you can use the following SQL to insert a new admin user into the database:
INSERT INTO webcal_user ( cal_login, cal_passwd, cal_lastname,
cal_firstname, cal_is_admin ) VALUES
( 'admin', '21232f297a57a5a743894a0e4a801fc3', 'Administrator',
'Default', 'Y' );
This will add a user with login 'admin' and password 'admin' to the database. If you still have a user named 'admin', then replace 'admin' in the above SQL with a different username.
--- cut off ---
kind regards
Markus