summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-05-14 10:51:03 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-05-14 10:51:03 +0000
commit4e9c7b3c07c021163c503a5f230a8d076a3dd9fc (patch)
tree3aaed01d15ed74f75e1623908fc69077b1e9e1c3
parent18da4053843dccfcf6fddbdfe837f8cb526d0c4d (diff)
- suhosin.session.encrypt breaks Session handling (#1485846)
git-svn-id: https://svn.roundcube.net/trunk@2478 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/.htaccess9
-rw-r--r--roundcubemail/installer/check.php3
2 files changed, 7 insertions, 5 deletions
diff --git a/roundcubemail/.htaccess b/roundcubemail/.htaccess
index 36d574865..05a2ed7c2 100644
--- a/roundcubemail/.htaccess
+++ b/roundcubemail/.htaccess
@@ -7,12 +7,13 @@ php_flag log_errors On
php_value error_log logs/errors
php_value upload_max_filesize 5M
-php_value post_max_size 6M
-php_value memory_limit 64M
+php_value post_max_size 6M
+php_value memory_limit 64M
-php_value zlib.output_compression 0
-php_value magic_quotes_gpc 0
+php_value zlib.output_compression 0
+php_value magic_quotes_gpc 0
php_value zend.ze1_compatibility_mode 0
+php_value suhosin.session.encrypt Off
php_value session.auto_start 0
php_value session.gc_maxlifetime 21600
diff --git a/roundcubemail/installer/check.php b/roundcubemail/installer/check.php
index 4c34dd6de..848131e51 100644
--- a/roundcubemail/installer/check.php
+++ b/roundcubemail/installer/check.php
@@ -15,7 +15,8 @@ $supported_dbs = array('MySQL' => 'mysql', 'MySQLi' => 'mysqli',
'PostgreSQL' => 'pgsql', 'SQLite (v2)' => 'sqlite');
$ini_checks = array('file_uploads' => 1, 'session.auto_start' => 0,
- 'zend.ze1_compatibility_mode' => 0, 'mbstring.func_overload' => 0);
+ 'zend.ze1_compatibility_mode' => 0, 'mbstring.func_overload' => 0,
+ 'suhosin.session.encrypt' => 0);
$source_urls = array(
'Sockets' => 'http://www.php.net/manual/en/ref.sockets.php',