Oct 29th, 2017, 5:41 PM
Hi adminhrfocus,
Sorry for the wait! It was a very busy week...!
Ordinarily you can just click the link on the login page to get your password reset, however I see there's a problem with that at the moment: apologies, I'll fix that in the next alpha release.
Try this. Create a php file on your site with this content (just change "your password here" to whatever you want).
Then load it up in your web browser and copy the generated string to your clipboard.
Lastly, open up your database with phpMyAdmin - or whatever DB tool you use - and edit the first record in the ft_accounts table.
There change the password field to whatever you just copied to your clipboard. After that's updated you should be allowed to log in again.
Sorry for the long explanation... it'll get simpler soon.
Ben
Sorry for the wait! It was a very busy week...!
Ordinarily you can just click the link on the login page to get your password reset, however I see there's a problem with that at the moment: apologies, I'll fix that in the next alpha release.
Try this. Create a php file on your site with this content (just change "your password here" to whatever you want).
PHP Code:
<?php
echo md5(md5("your password here"));
Then load it up in your web browser and copy the generated string to your clipboard.
Lastly, open up your database with phpMyAdmin - or whatever DB tool you use - and edit the first record in the ft_accounts table.
There change the password field to whatever you just copied to your clipboard. After that's updated you should be allowed to log in again.
Sorry for the long explanation... it'll get simpler soon.
Ben