diff options
author | Andreas Gohr <andi@splitbrain.org> | 2007-02-08 20:51:45 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2007-02-08 20:51:45 +0100 |
commit | cde6a01b90b199cd9d42a8e23a61d467992b6d67 (patch) | |
tree | 67a5511a8ce19f62d3f11a007dc856caf8dc6ffe /conf | |
parent | bc6ecc12f39db1fe4b3e22e2a939f70691d6d1fc (diff) | |
download | rpg-cde6a01b90b199cd9d42a8e23a61d467992b6d67.tar.gz rpg-cde6a01b90b199cd9d42a8e23a61d467992b6d67.tar.bz2 |
workaround config for FS#852
On certain platforms the ignore_user_abort function does not work as expected, resulting
in a non working indexer webbug. Users with such a broken system (IIS+PHP as CGI) can
enable this option to work around the problem (resulting in longer load times for the
webbug).
darcs-hash:20070208195145-7ad00-8fc14f9da535a70fa837066773e15a3926b077c7.gz
Diffstat (limited to 'conf')
-rw-r--r-- | conf/dokuwiki.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/conf/dokuwiki.php b/conf/dokuwiki.php index 98c446d58..66a2171b3 100644 --- a/conf/dokuwiki.php +++ b/conf/dokuwiki.php @@ -108,6 +108,7 @@ $conf['rss_linkto'] = 'diff'; //what page RSS entries link to: $conf['rss_update'] = 5*60; //Update the RSS feed every n minutes (defaults to 5 minutes) $conf['recent_days'] = 7; //How many days of recent changes to keep. (days) $conf['rss_show_summary'] = 1; //Add revision summary to title? 0|1 +$conf['broken_iua'] = 0; //Platform with broken ignore_user_abort (IIS+CGI) 0|1 //Set target to use when creating links - leave empty for same window $conf['target']['wiki'] = ''; |