diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-10-23 20:26:02 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-10-23 20:26:02 +0000 |
commit | eb2a3f3f52dd1b9692aafbd040fa48dde572d40e (patch) | |
tree | b0048e0e27d3b321ecf5a0255a797ccc64d70524 | |
parent | 078e2fdcbd5c0d204adc697d67a10cdcbe3c48c2 (diff) | |
download | brdo-eb2a3f3f52dd1b9692aafbd040fa48dde572d40e.tar.gz brdo-eb2a3f3f52dd1b9692aafbd040fa48dde572d40e.tar.bz2 |
- Added an ini_set(...) to conf.php to solve history/cache browsing issues
on some Drupal/PHP installations.
-rw-r--r-- | includes/conf.php | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/includes/conf.php b/includes/conf.php index f432d0c02..7df27806f 100644 --- a/includes/conf.php +++ b/includes/conf.php @@ -9,6 +9,18 @@ # $db_url = "mysql://userer:password@hostname/database"; # +# PHP settings: +# + +# Avoid "page has expired" problems when browsing from your cache or history +# after having filled out a form: +// ini_set("session.cache_limiter", ""); + +# If required, update PHP's include path to include your PEAR directory: +// ini_set("include_path", ".:/path/to/pear"); + + +# # Themes: # $themes = array("UnConeD" => array( @@ -34,5 +46,5 @@ $themes = array("UnConeD" => array( # but make sure your SQL table, called locales is updated # appropriately. $languages = array("en" => "English"); -
+ ?>
\ No newline at end of file |