From 22ac9327fb70b59796a6e5405e18788e89af4d69 Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Sun, 15 Jul 2007 08:37:02 +0000 Subject: [PATCH 1/1] check if directory of phpfspot.db is writeable git-svn-id: file:///var/lib/svn/phpfspot/trunk@205 fa6a889d-dae6-447d-9e79-4ba9a3039384 --- phpfspot.class.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/phpfspot.class.php b/phpfspot.class.php index 4cdf303..ba94884 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -23,6 +23,12 @@ class PHPFSPOT { $this->cfg = new PHPFSPOT_CFG; $this->db = new PHPFSPOT_DB(&$this, $this->cfg->fspot_db); + + if(!is_writeable(dirname($this->cfg->phpfspot_db))) { + print dirname($this->cfg->phpfspot_db) .": directory is not writeable!"; + exit(1); + } + $this->cfg_db = new PHPFSPOT_DB(&$this, $this->cfg->phpfspot_db); $this->check_config_table(); -- 2.25.1