Hi, a few posts below is another item posted by me, about the remember_me function.
I solved it, and maybe there are others with the same problem.
Because my website is hosted on a shared IIS server and have no control over the php.ini and the htaccess doesn't work on IIS. I have created this workaround.
[Note: edited for conf.php instead of common.inc]
Add the following to the top of includes/conf.php file
ini_set("session.auto_start", "0");
ini_set("session.cache_expire", "200000");
ini_set("session.cache_limiter", "none");
ini_set("session.cookie_lifetime", "2000000");
ini_set("session.gc_maxlifetime", "200000");
ini_set("session.save_handler", "user");
ini_set("arg_separator.output", "&");
ini_set("allow_call_time_pass_reference", "On");
ini_set("magic_quotes_gpc", "0");
ini_set("magic_quotes_runtime", "0");
ini_set("magic_quotes_sybase", "0");
ini_set("register_globals", "0");
ini_set("short_open_tag", "1");
ini_set("track_vars", "1");
Best regards Gert Jan :),