We use this module with some success. Thank you!
There are other side effects such as no status messages when a new user applies for an account or when an anonymous user submits a contact form.
One time login links are sent when a user has to approve his e-mail for the first time or a user lost his password and uses "request new password" feature.
The link itself works (page is displayed) but when a user clicks "login" he will not be logged in but gets a "Access Denied" error while the browser points at /user/xx/edit.
Could this module provide the additional magic to make this happen?
Comments
Comment #1
eL commentedI am thinking about implmenting this module, but is here stil problem with one-time-login?
Comment #2
gansbrest commentedTake a look at this thread http://drupal.org/node/919472
At the bottom of it you will find a patch which will give you the functionality you asking for. Status messages will work as usual + One time login link should work as expected. Pretty much everything else should work as expected.
As usual there are some moments you should know of:
- if you using any module which uses $_SESSION for anon users - the row will be created in the sessions table as usual, so you need to eliminate SESSION usage for anon users
- you don't need the no_anon module any more, all you need is just that patched SESSION include
- more explanations will be in the mentioned thread
Try it and let us know if it will suite your needs.