Closed (cannot reproduce)
Project:
Remember me
Version:
6.x-2.1
Component:
Miscellaneous
Priority:
Critical
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
15 Mar 2011 at 14:36 UTC
Updated:
8 Nov 2012 at 21:20 UTC
Jump to comment: Most recent file
Comments
Comment #1
AdrianC-1 commentedCancel the PHP.ini bit - that broke far more than it fixed, so that entry's back in.
Comment #2
AdrianC-1 commentedWell, it doesn't appear to be either Persistent Login or Remember Me at fault. Both have been uninstalled, and I'm still seeing the same problems.
If anybody can come up with any suggestions... http://drupal.org/node/1092186
Comment #3
ob3ron commentedI have the same issue. I had set the session_cookie_lifetime to 0, now have set it back to the original ~23 days, but Remember Me doesn't.
Comment #4
ob3ron commentedSetting this to critical since the module does not work, at least for some people.
Comment #5
theullrich commentedsub
Comment #6
Davidis commentedSub
Comment #7
nickl commentedWill investigate...
Comment #8
nickl commentedRemember me only modifies the default drupal session lifetime management and will not/cannot magically fix any problems with sessions you might otherwise have. If you have problems with sessions without this module you will have the same problems with this module enabled.
Cannot reproduce.
Attached is my Remember me settings page, note the Manage session lifetime is checked and Lifetime is set to 3 hours. Note the status values current user chose to be remembered and session lifetime is 3 hours.
Suggestions:
Install devel module and check phpinfo devel/phpinfo
Attached is what my configuration looks like for sessions, maybe you might spot a difference in yours.
Note the columns Master Value (as configured in php.ini) and Local Value (runtime configuration as changed by drupal et al)
My php.ini session.cookie_lifetime is set to 0 (Master Value)
My settings.php is unchanged the session.cookie_lifetime is set to 2000000
The Local Value for session.cookie_lifetime is correctly reported by phpinfo as 10800 or 3hrs as modified by Remember me.
Check the following:
Is session support enabled?
Are we using cookies for sessions?
Are we using only cookies?
Verify that your browser is configured to use cookies?
Check the sessions table in the database are there any entries?
Feel free to ask questions but please submit your phpinfo screen capture for the sessions section with your request.
Comment #9
nickl commentedNo response for 6 weeks, closing.
Feel free to reopen the issue if more information becomes available.
Comment #10
nagiek commentedI had a similar problem, found that the error was PHP specific, not module specific.
devel/phpinfo.I had found that
session.save_pathwasn't set, which caused my problems. You can fix it by adding code to your settings.php file.Comment #11
nickl commented@nagiek thank you for sharing. What you've discovered is so true, if there is anything wrong with PHP sessions in general remember_me will be one of the first modules to suffer and appear to be faulty. We should keep this in mind and first check if sessions actually work at all.