diff options
| author | cash <cash.costello@gmail.com> | 2011-10-11 22:08:35 -0400 | 
|---|---|---|
| committer | cash <cash.costello@gmail.com> | 2011-10-11 22:08:35 -0400 | 
| commit | 2edf8597f95b69a4e8ce3bfd65a3968badca5341 (patch) | |
| tree | 2797346f73be14ee7d30585d1b3e845b71a596f3 | |
| parent | f782c22748e416d088902bc838ed28aa57f7520b (diff) | |
| download | elgg-2edf8597f95b69a4e8ce3bfd65a3968badca5341.tar.gz elgg-2edf8597f95b69a4e8ce3bfd65a3968badca5341.tar.bz2 | |
added check for session only cookies to server analysis
| -rw-r--r-- | pages/server_analysis.php | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/pages/server_analysis.php b/pages/server_analysis.php index db3aed5f6..7e4218b83 100644 --- a/pages/server_analysis.php +++ b/pages/server_analysis.php @@ -124,6 +124,11 @@ echo elgg_view_title($title);  			<td><?php echo (is_callable('exif_read_data')) ? 'Enabled' : 'Disabled'; ?></td>  			<td></td>  		</tr> +		<tr> +			<td>Cookie only sessions</td> +			<td><?php echo (ini_get('session.use_only_cookies')) ? 'Enabled' : 'Disabled'; ?></td> +			<td>Cookie only sessions may affect the Flash uploader</td> +		</tr>  	</table>  	<div style="margin-top:20px;">  		<a href="<?php echo $CONFIG->url . "mod/tidypics/docs/configure_server.txt"; ?>">Server configuration doc</a> | 
