Jun 8th, 2010, 9:05 PM
Hi avinash,
If the forgot password isn't working and you didn't enable Swift Mailer, then it's either sending the password notification to a different email address or the mail() function isn't working on your server. :-(
Try uploading a test_email.php file to your server containing this content:
- and replace the email address with your own. See if the email gets sent.
However, if you have access to the database, you can manually re-set the password. Just go here and enter your new password:
http://docs.formtools.org/encrypt.php
That will provide the encrypted version. Copy and paste that and overwrite the old password value for your account in the database. That will then let you log in.
Good luck!
- Ben
If the forgot password isn't working and you didn't enable Swift Mailer, then it's either sending the password notification to a different email address or the mail() function isn't working on your server. :-(
Try uploading a test_email.php file to your server containing this content:
PHP Code:
<?php
mail("your@email.com", "test", "test!");
?>
- and replace the email address with your own. See if the email gets sent.
However, if you have access to the database, you can manually re-set the password. Just go here and enter your new password:
http://docs.formtools.org/encrypt.php
That will provide the encrypted version. Copy and paste that and overwrite the old password value for your account in the database. That will then let you log in.
Good luck!
- Ben