Skip to content
Snippets Groups Projects
Commit 296a01f3 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Made sure session.cache_limiter is set to "none" as suggested by Moshe
  and Ax.
parent a10cd273
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -30,6 +30,7 @@ ErrorDocument 500 /error.php
php_value session.cookie_lifetime 2000000
php_value session.auto_start 0
php_value session.save_handler user
php_value session.cache_limiter none
php_value allow_call_time_pass_reference Off
</IfModule>
......
......@@ -20,17 +20,9 @@
#
# PHP settings:
#
# The following PHP settings are known to work well:
# magic_quotes_gpc 0
# magic_quotes_runtime 0
# magic_quotes_sybase 0
# track_vars 1
# short_open_tag 1
# register_globals 1
# Avoid "page has expired" problems when browsing from your cache or
# history after having filled out a form:
// ini_set("session.cache_limiter", "");
# To see what PHP settings are known to work well, take a look at
# the .htacesss file in Drupal's root directory. If you get
# unexecpted warnings or errors, double-check your PHP settings.
# If required, update PHP's include path to include your PEAR directory:
// ini_set("include_path", ".:/path/to/pear");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment