From c3342635f7c4d0408648ffbb31e4041d93ee4888 Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Sat, 29 Mar 2008 07:55:25 +0100 Subject: issue111, auto-completion can now be enabled/disabled via config option Signed-off-by: Andreas Unterkircher --- phpfspot_cfg.php.dist | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'phpfspot_cfg.php.dist') diff --git a/phpfspot_cfg.php.dist b/phpfspot_cfg.php.dist index 3583560..f002aeb 100644 --- a/phpfspot_cfg.php.dist +++ b/phpfspot_cfg.php.dist @@ -89,6 +89,11 @@ class PHPFSPOT_CFG { */ var $use_lightbox = true; + /* Use Ajax Auto Completion for tag search. Maybe, if you have a slow + connectivity for the server, it's a good idea to turn it off. + */ + var $use_autocomplete = true; + /* logging = display || errorlog || logfile */ var $logging = "display"; -- cgit v1.2.3-18-g5258 From 1532cb592eb45670d0d72fe5e9acb1f5b0fb31c9 Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Sat, 29 Mar 2008 08:26:34 +0100 Subject: issue107, make sqlite-temp directory configurable issue107, add a note to CHANGE about issue107 (configurable sqlite temp directory) Signed-off-by: Andreas Unterkircher --- phpfspot_cfg.php.dist | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'phpfspot_cfg.php.dist') diff --git a/phpfspot_cfg.php.dist b/phpfspot_cfg.php.dist index f002aeb..75b54ad 100644 --- a/phpfspot_cfg.php.dist +++ b/phpfspot_cfg.php.dist @@ -56,6 +56,15 @@ class PHPFSPOT_CFG { */ var $phpfspot_db = "/var/www/f-spot-dbs/phpfspot.db"; + /* sqlite temp dir. per default sqlite tries /var/tmp, /usr/tmp, /tmp + and the current working directory for creating temporary files. + If you still get error messages when phpfspot tries to create the + indecies in $fspot_db, set this option to another writeable + directory. For example $phpfspot_db directory, which must be + writeable anyway. + */ + // var $sqlite_temp_dir = "/var/www/f-spot-dbs"; + /* don't touch if you haven't changed the base templates */ var $thumb_width = "150"; var $thumb_height = "145"; -- cgit v1.2.3-18-g5258