From: Andreas Unterkircher Date: Wed, 15 Oct 2008 21:38:30 +0000 (+0200) Subject: only check if phpfspot SQLite database is writeable, if the file really exists X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=commitdiff_plain;h=f79d6ba1ebdd17a6d9e6e64f58ab05c898463d62 only check if phpfspot SQLite database is writeable, if the file really exists Signed-off-by: Andreas Unterkircher --- diff --git a/phpfspot.class.php b/phpfspot.class.php index 9b24d3b..edfed95 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -189,7 +189,7 @@ class PHPFSPOT { } /* Check if database file is writeable */ - if(!is_writeable($this->cfg->phpfspot_db)) { + if(file_exists($this->cfg->phpfspot_db) && !is_writeable($this->cfg->phpfspot_db)) { print "Error: ". $this->cfg->phpfspot_db ." is not writeable for user ". $this->getuid() .".\n"; print "Please fix permissions so phpfspot can create its own sqlite database to store some settings.\n"; exit(1);