We regret for the inconvenience caused to you.
May I request you to use the following directive in the .htaccess file and check if it works
php_value session.gc_maxlifetime 14400
After this the phpinfo() should show the results 14400 as the Local Value for the session.gc_maxlifetime. If the session expiry problem still persists, you may think about cookies. It's possible that your cookie is expiring before the gc_maxlifetime.
session.cookie_lifetime 0 (until browser is closed)
session.cookie_secure Off
session.use_cookies On
session.use_only_cookies Off
session.referer_check no value
You may also have a look at session_set_save_handler() . If you use session_set_save_handler() you can write code into your fuctions to get the user's IP and save it in the same table as their session data. But again, I am sorry to say that we are unable to help you with the codings.
Have a nice time!
Det skrev de til mig!
Martin hvor skal det der indsættes henne?