summaryrefslogtreecommitdiffstats
path: root/phpfspot_cfg.php.dist
diff options
context:
space:
mode:
Diffstat (limited to 'phpfspot_cfg.php.dist')
-rw-r--r--phpfspot_cfg.php.dist6
1 files changed, 6 insertions, 0 deletions
diff --git a/phpfspot_cfg.php.dist b/phpfspot_cfg.php.dist
index e3bb645..1abedc8 100644
--- a/phpfspot_cfg.php.dist
+++ b/phpfspot_cfg.php.dist
@@ -33,6 +33,9 @@ class PHPFSPOT_CFG {
var $web_path = "/phpfspot";
var $theme_name = "default";
+
+ /* database access via "native" sqlite3 support or via "pdo" */
+ var $db_access = "native";
/* it's enough if this database is readonly for the webserver */
var $fspot_db = "/var/www/f-spot-dbs/photos.db";
@@ -95,6 +98,9 @@ class PHPFSPOT_CFG {
if(!isset($this->fspot_db) || $this->fspot_db == "")
$this->showError("Please set \$fspot_db in phpfspot_cfg");
+ if(!isset($this->db_access) || $this->db_access == "")
+ $this->showError("Please set \$db_access in phpfspot_cfg");
+
if(!isset($this->phpfspot_db) || $this->phpfspot_db == "")
$this->showError("Please set \$phpfspot_db in phpfspot_cfg");