I know there are questions like mine, but none answered my question:
In my .htaccess file, I have several rules of code ensuring sessions (loggin users in) are automatically started and last one week:
#Set PHP rules
php_value session.gc_maxlifetime 604800
php_value session.gc_probability 0
php_value session.cookie_lifetime 604800
php_value session.name "DSWLogin"
php_value session.auto_start 1
It works, sessions are automatically set with the name "DSWLogin" and last one week. However, when my browser restarts, the session and its content are reset, therefore logging the users automatically out.
So before the browser restart. Before the browser restarts http://www.projectomicron.org/Images/Before%20Browser%20Restart.png
And after the browser restart:
After the browser restarts http://www.projectomicron.org/Images/After%20Browser%20Restart.png