Skip to content

Instantly share code, notes, and snippets.

@x8k2
Created October 20, 2011 19:15
Show Gist options
  • Select an option

  • Save x8k2/1302021 to your computer and use it in GitHub Desktop.

Select an option

Save x8k2/1302021 to your computer and use it in GitHub Desktop.
<?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