This question may be related to two resolved threads:
Guest views
"Remember My ID" not working - again
What version of 68 Classifieds are you running?
Example: V4.2.1 Developer
What template are you using?
Neo
Please describe in detail the issue you are having:
When users log in and check the "Remember My ID" option, they have to log in again at their next visit.
If they keep their browser open, no problem.
The classLogin Cookie is written but not recognized by Login.php function _checkRemembered
It returns here the message 'Incomplete cookie'
PHP Code:
if (!$username or !$hash or !$cookie) {
$this->msg = 'Incomplete cookie';
return false;
}
Magic Quotes are turned OFF - this was the solution the last time.
The cookie is:
PHP Code:
[classLogin] => a:3:{i:0;s:5:"admin\";i:1;s:32:\"28259756399c1cd9df2b4e3e1f778fd2\";i:2;s:32:\"21232f297a57a5a743894a0e4a801fc3\";}
Interesting detail: This problem exists only in the front end - admin login runs flawless.
Any ideas?
Andreas