diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-01-21 15:26:33 +0100 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-01-21 15:26:33 +0100 |
commit | 5b0a881d9251ce94114f0cc0eb6f080c163044aa (patch) | |
tree | be9ad1e89c7029e05c57310bade55b285a5de02f /user_guide | |
parent | afd99ac2c240faafc3c3d18f5bb4aa03cd24c41c (diff) |
documented sess_time_to_update
Diffstat (limited to 'user_guide')
-rw-r--r-- | user_guide/libraries/sessions.html | 104 |
1 files changed, 53 insertions, 51 deletions
diff --git a/user_guide/libraries/sessions.html b/user_guide/libraries/sessions.html index 7d6c69305..4e46b85a7 100644 --- a/user_guide/libraries/sessions.html +++ b/user_guide/libraries/sessions.html @@ -231,57 +231,59 @@ do not need to write your own routine to do it.</p> <table cellpadding="0" cellspacing="1" border="0" style="width:100%" class="tableborder">
<tr>
-<th>Preference</th>
-<th>Default</th>
-<th>Options</th>
-<th>Description</th>
-
-</tr><tr>
-<td class="td"><strong>sess_cookie_name</strong></td>
-<td class="td">ci_session</td
-><td class="td">None</td>
-<td class="td">The name you world the session cookie saved as.</td>
-
-</tr><tr>
-<td class="td"><strong>sess_expiration</strong></td>
-<td class="td">7200</td>
-<td class="td">None</td>
-<td class="td">The number of seconds you would like the session to last. The default value is 2 hours (7200 seconds).
-If you would like a non-expiring session set the value to zero: 0</td>
-
-
-</tr><tr>
-<td class="td"><strong>sess_encrypt_cookie</strong></td>
-<td class="td">FALSE</td>
-<td class="td">TRUE/FALSE (boolean)</td>
-<td class="td">Whether to encrypt the session data.</td>
-
-</tr><tr>
-<td class="td"><strong>sess_use_database</strong></td>
-<td class="td">FALSE</td>
-<td class="td">TRUE/FALSE (boolean)</td>
-<td class="td">Whether to save the session data to a database. You must create the table before enabling this option.</td>
-
-</tr><tr>
-<td class="td"><strong>sess_table_name</strong></td>
-<td class="td">ci_sessions</td
-><td class="td">Any valid SQL table name</td>
-<td class="td">The name of the session database table.</td>
-
-</tr><tr>
-<td class="td"><strong>sess_match_ip</strong></td>
-<td class="td">FALSE</td>
-<td class="td">TRUE/FALSE (boolean)</td>
-<td class="td">Whether to match the user's IP address when reading the session data. Note that some ISPs dynamically
-changes the IP, so if you want a non-expiring session you will likely set this to FALSE.</td>
-
-</tr><tr>
-<td class="td"><strong>sess_match_useragent</strong></td>
-<td class="td">TRUE</td>
-<td class="td">TRUE/FALSE (boolean)</td>
-<td class="td">Whether to match the User Agent when reading the session data.</td>
-
-
+ <th>Preference</th>
+ <th>Default</th>
+ <th>Options</th>
+ <th>Description</th>
+</tr>
+<tr>
+ <td class="td"><strong>sess_cookie_name</strong></td>
+ <td class="td">ci_session</td>
+ <td class="td">None</td>
+ <td class="td">The name you world the session cookie saved as.</td>
+</tr>
+<tr>
+ <td class="td"><strong>sess_expiration</strong></td>
+ <td class="td">7200</td>
+ <td class="td">None</td>
+ <td class="td">The number of seconds you would like the session to last. The default value is 2 hours (7200 seconds). If you would like a non-expiring session set the value to zero: 0</td>
+</tr>
+<tr>
+ <td class="td"><strong>sess_encrypt_cookie</strong></td>
+ <td class="td">FALSE</td>
+ <td class="td">TRUE/FALSE (boolean)</td>
+ <td class="td">Whether to encrypt the session data.</td>
+</tr>
+<tr>
+ <td class="td"><strong>sess_use_database</strong></td>
+ <td class="td">FALSE</td>
+ <td class="td">TRUE/FALSE (boolean)</td>
+ <td class="td">Whether to save the session data to a database. You must create the table before enabling this option.</td>
+</tr>
+<tr>
+ <td class="td"><strong>sess_table_name</strong></td>
+ <td class="td">ci_sessions</td>
+ <td class="td">Any valid SQL table name</td>
+ <td class="td">The name of the session database table.</td>
+</tr>
+<tr>
+ <td class="td"><strong>sess_time_to_update</strong></td>
+ <td class="td">300</td>
+ <td class="td">Time in milliseconds</td>
+ <td class="td">This options controls how often the session class will regenerate itself and create a new session id.</td>
+</tr>
+<tr>
+ <td class="td"><strong>sess_match_ip</strong></td>
+ <td class="td">FALSE</td>
+ <td class="td">TRUE/FALSE (boolean)</td>
+ <td class="td">Whether to match the user's IP address when reading the session data. Note that some ISPs dynamically
+ changes the IP, so if you want a non-expiring session you will likely set this to FALSE.</td>
+</tr>
+<tr>
+ <td class="td"><strong>sess_match_useragent</strong></td>
+ <td class="td">TRUE</td>
+ <td class="td">TRUE/FALSE (boolean)</td>
+ <td class="td">Whether to match the User Agent when reading the session data.</td>
</tr>
</table>
|