diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-12-08 08:19:29 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-12-08 08:19:29 +0000 |
commit | 296a01f39919184846a2154609c9cf5601d979bc (patch) | |
tree | 7454f5002595fbafcb23d4b37d6d3eac3e7f6912 | |
parent | a10cd273d38a904d737e17abdeee9a9a7de78a80 (diff) | |
download | brdo-296a01f39919184846a2154609c9cf5601d979bc.tar.gz brdo-296a01f39919184846a2154609c9cf5601d979bc.tar.bz2 |
- Made sure session.cache_limiter is set to "none" as suggested by Moshe
and Ax.
-rw-r--r-- | .htaccess | 1 | ||||
-rw-r--r-- | includes/conf.php | 14 |
2 files changed, 4 insertions, 11 deletions
@@ -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> diff --git a/includes/conf.php b/includes/conf.php index 452c80c91..8cdde25d5 100644 --- a/includes/conf.php +++ b/includes/conf.php @@ -20,17 +20,9 @@ $db_url = "mysql://drupal:drupal@localhost/drupal"; # # 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"); |