Created
October 20, 2011 19:15
-
-
Save x8k2/1302021 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| session_save_path(dirname(__FILE__) . '/tmp/'); | |
| $garbage_timeout = 3600 * 24 * 30; // 3600 seconds = 60 minutes = 1 hour | |
| ini_set('session.gc_maxlifetime', $garbage_timeout); | |
| session_set_cookie_params($garbage_timeout, '/', '.'.$domain); | |
| session_start(); | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment