diff options
author | Pavel Vitis <Pavel.Vitis@seznam.cz> | 2005-09-11 16:02:25 +0200 |
---|---|---|
committer | Pavel Vitis <Pavel.Vitis@seznam.cz> | 2005-09-11 16:02:25 +0200 |
commit | 683757541c99dba48c30662ba2b60db34352165f (patch) | |
tree | ca03eb0e0c7d1abf7aec40e1c099a84370f4cbb0 /conf/dokuwiki.php | |
parent | 42208b030af8151de0f39d22d4b04264db93e498 (diff) | |
download | rpg-683757541c99dba48c30662ba2b60db34352165f.tar.gz rpg-683757541c99dba48c30662ba2b60db34352165f.tar.bz2 |
support for ImageMagicks convert in fetch.php
This patch allows one to set $conf['im_convert'] to use ImageMagick
instead of PHPs libGD to resize images. convert is more powerful
than libGD - it can resize animated gifs for example.
darcs-hash:20050911140225-c484b-10fbb66d003c839debc98edf814e261bddea3aa6.gz
Diffstat (limited to 'conf/dokuwiki.php')
-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 3da4ca3cb..6b8aee896 100644 --- a/conf/dokuwiki.php +++ b/conf/dokuwiki.php @@ -68,6 +68,7 @@ $conf['locktime'] = 15*60; //maximum age for lockfiles (defaults t $conf['notify'] = ''; //send change info to this email (leave blank for nobody) $conf['mailfrom'] = ''; //use this email when sending mails $conf['gdlib'] = 2; //the GDlib version (0, 1 or 2) 2 tries to autodetect +$conf['im_convert'] = ''; //path to ImageMagicks convert (will be used instead of GD) $conf['spellchecker']= 0; //enable Spellchecker (needs PHP >= 4.3.0 and aspell installed) $conf['subscribers'] = 0; //enable change notice subscription support $conf['pluginmanager'] = 0; //enable automated plugin management (requires plugin) |