diff --git a/inc/lib_base.php b/inc/lib_base.php
index 3a8ad7163f8..14b9aa10afc 100755
--- a/inc/lib_base.php
+++ b/inc/lib_base.php
@@ -151,10 +151,8 @@ class OC_UTIL {
global $CONFIG_DATADIRECTORY_ROOT;
global $CONFIG_BACKUPDIRECTORY;
global $CONFIG_ENABLEBACKUP;
+ global $CONFIG_INSTALLED;
$error='';
- $f=@fopen($SERVERROOT.'/config/config.php','w+');
- if(!$f) $error.='Error: Config file (config/config.php) is not writable for the webserver.
';
- @fclose($f);
if(!is_callable('sqlite_open') and !is_callable('mysql_connect')){
$error.='No database drivers (sqlite or mysql) installed.
';
}
diff --git a/inc/templates/adminform.php b/inc/templates/adminform.php
index 5ef5fa68cb5..ef45bd9ee26 100755
--- a/inc/templates/adminform.php
+++ b/inc/templates/adminform.php
@@ -4,6 +4,9 @@ global $CONFIG_ENABLEBACKUP;
global $CONFIG_DATADIRECTORY_ROOT;
global $CONFIG_BACKUPDIRECTORY;
global $CONFIG_ERROR;
+$f=@fopen($SERVERROOT.'/config/config.php','r+');
+if(!$f) die('Error: Config file (config/config.php) is not writable for the webserver.
');
+@fclose($f);
if(!isset($fillDB)) $fillDB=true;
if(!isset($CONFIG_DBHOST)) $CONFIG_DBHOST='localhost';
if(!isset($CONFIG_DBUSER)) $CONFIG_DBUSER='owncloud';