Closed em17 closed 10 years ago
Can you check if your mail
component work? Try to send some emails via swiftmailer
.
Yes, sure I will try again and come back to you with the results.. Also it would be great if you can make an email address of yours available in your git profile so for minor issues we can email you, instead of opening issues. I really like this module by the way.
In composer.json
are indicated my contacts. But better practice is to use issues
, so I'll never forget about the problem.
Thanks for your email.
I found that in my mail config this line 'encryption' => 'tls' should be 'encryption' => 'ssl' now I don't get the timeout error but no email is sent to the user's email address...
anywhere else I need to configure..?
Finally I got an password recovery email but this is the URL it doesn't have any auth key
'http://localhost/vova/web/index.php?r=users%2Fguest%2Frecovery'
I fixed the problem. Run composer update
for users
module, and try again.
Thank you for the recovery key fix! I checked it, it has the recovery key now but there's another little problem it doesn't have the domain name this is what I got '/vova/web/index.php?r=users%2Fguest%2Frecovery&key=XXXEXAMPLEXXXXX' This part is missing 'http://localhost'
Sorry, my mistake. Fixed it.
There's another little fix needed sorry I didn't notice that earlier.
URL should route to 'recovery-confirmation' NOT again to 'recovery'
Yes you're right. Thanx!
Great! It's working, thank you!
When i click the recover button in the password recovery, it gives this error "Maximum execution time of 30 seconds exceeded"
my mail config is:
'mail' => [ 'class' => 'yii\swiftmailer\Mailer', 'useFileTransport' => false, 'transport' => [ 'class' => 'Swift_SmtpTransport', 'host' => 'smtp.gmail.com', 'username' => 'example@gmail.com', 'password' => 'password', 'port' => '465', 'encryption' => 'tls', ], ],