PantsStatusZero - 2015-01-24

You could manually reset the password. Open your db and update the cal_passwd field in the webcal_user table for the admin user. The password should be stored as a md5 hash. This website will help you hash a new password: http://www.miraclesalad.com/webtools/md5.php.

Code resets password to password, if user name is Admin:
UPDATE webcal_user
SET cal_passwd = '5f4dcc3b5aa765d61d8327deb882cf99'
WHERE cal_login = 'Admin';