diff options
Diffstat (limited to 'index.php')
-rwxr-xr-x | index.php | 41 |
1 files changed, 28 insertions, 13 deletions
@@ -43,19 +43,6 @@ define('shaarli_version','0.5.1'); | |||
43 | // http://server.com/x/shaarli --> /shaarli/ | 43 | // http://server.com/x/shaarli --> /shaarli/ |
44 | define('WEB_PATH', substr($_SERVER["REQUEST_URI"], 0, 1+strrpos($_SERVER["REQUEST_URI"], '/', 0))); | 44 | define('WEB_PATH', substr($_SERVER["REQUEST_URI"], 0, 1+strrpos($_SERVER["REQUEST_URI"], '/', 0))); |
45 | 45 | ||
46 | // Force cookie path (but do not change lifetime) | ||
47 | $cookie=session_get_cookie_params(); | ||
48 | $cookiedir = ''; if(dirname($_SERVER['SCRIPT_NAME'])!='/') $cookiedir=dirname($_SERVER["SCRIPT_NAME"]).'/'; | ||
49 | session_set_cookie_params($cookie['lifetime'],$cookiedir,$_SERVER['SERVER_NAME']); // Set default cookie expiration and path. | ||
50 | |||
51 | // Set session parameters on server side. | ||
52 | define('INACTIVITY_TIMEOUT',3600); // (in seconds). If the user does not access any page within this time, his/her session is considered expired. | ||
53 | ini_set('session.use_cookies', 1); // Use cookies to store session. | ||
54 | ini_set('session.use_only_cookies', 1); // Force cookies for session (phpsessionID forbidden in URL). | ||
55 | ini_set('session.use_trans_sid', false); // Prevent PHP form using sessionID in URL if cookies are disabled. | ||
56 | session_name('shaarli'); | ||
57 | if (session_id() == '') session_start(); // Start session if needed (Some server auto-start sessions). | ||
58 | |||
59 | // PHP Settings | 46 | // PHP Settings |
60 | ini_set('max_input_time','60'); // High execution time in case of problematic imports/exports. | 47 | ini_set('max_input_time','60'); // High execution time in case of problematic imports/exports. |
61 | ini_set('memory_limit', '128M'); // Try to set max upload file size and read (May not work on some hosts). | 48 | ini_set('memory_limit', '128M'); // Try to set max upload file size and read (May not work on some hosts). |
@@ -87,6 +74,34 @@ try { | |||
87 | exit; | 74 | exit; |
88 | } | 75 | } |
89 | 76 | ||
77 | // Force cookie path (but do not change lifetime) | ||
78 | $cookie = session_get_cookie_params(); | ||
79 | $cookiedir = ''; | ||
80 | if (dirname($_SERVER['SCRIPT_NAME']) != '/') { | ||
81 | $cookiedir = dirname($_SERVER["SCRIPT_NAME"]).'/'; | ||
82 | } | ||
83 | // Set default cookie expiration and path. | ||
84 | session_set_cookie_params($cookie['lifetime'], $cookiedir, $_SERVER['SERVER_NAME']); | ||
85 | // Set session parameters on server side. | ||
86 | // If the user does not access any page within this time, his/her session is considered expired. | ||
87 | define('INACTIVITY_TIMEOUT', 3600); // in seconds. | ||
88 | // Use cookies to store session. | ||
89 | ini_set('session.use_cookies', 1); | ||
90 | // Force cookies for session (phpsessionID forbidden in URL). | ||
91 | ini_set('session.use_only_cookies', 1); | ||
92 | // Prevent PHP form using sessionID in URL if cookies are disabled. | ||
93 | ini_set('session.use_trans_sid', false); | ||
94 | |||
95 | // Regenerate session id if invalid or not defined in cookie. | ||
96 | if (isset($_COOKIE['shaarli']) && !is_session_id_valid($_COOKIE['shaarli'])) { | ||
97 | $_COOKIE['shaarli'] = uniqid(); | ||
98 | } | ||
99 | session_name('shaarli'); | ||
100 | // Start session if needed (Some server auto-start sessions). | ||
101 | if (session_id() == '') { | ||
102 | session_start(); | ||
103 | } | ||
104 | |||
90 | include "inc/rain.tpl.class.php"; //include Rain TPL | 105 | include "inc/rain.tpl.class.php"; //include Rain TPL |
91 | raintpl::$tpl_dir = $GLOBALS['config']['RAINTPL_TPL']; // template directory | 106 | raintpl::$tpl_dir = $GLOBALS['config']['RAINTPL_TPL']; // template directory |
92 | raintpl::$cache_dir = $GLOBALS['config']['RAINTPL_TMP']; // cache directory | 107 | raintpl::$cache_dir = $GLOBALS['config']['RAINTPL_TMP']; // cache directory |