diff --git a/inc/lib_base.php b/inc/lib_base.php
index 52b9aeedd4aef70d05b9bfb5d6f0e42897d2e4aa..0661f732041dabf3e12af4d54dcd33b81aa12485 100755
--- a/inc/lib_base.php
+++ b/inc/lib_base.php
@@ -51,7 +51,7 @@ $CONFIG_DBNAME='owncloud';
 $CONFIG_DBTYPE='sqlite';
 
 // include the generated configfile
-@oc_include_once('config.php');
+@include_once($SERVERROOT.'/config/config.php');
 
 // redirect to https site if configured
 if(isset($CONFIG_HTTPFORCESSL) and $CONFIG_HTTPFORCESSL){
@@ -477,8 +477,6 @@ function oc_require($file){
 		require($SERVERROOT.'/'.$file);
 	}elseif(is_file($SERVERROOT.'/inc/'.$file)){
 		require($SERVERROOT.'/inc/'.$file);
-	}elseif(is_file($SERVERROOT.'/config/'.$file)){
-		require($SERVERROOT.'/config/'.$file);
 	}
 }
 
@@ -501,8 +499,6 @@ function oc_require_once($file){
 		require_once($SERVERROOT.'/'.$file);
 	}elseif(is_file($SERVERROOT.'/inc/'.$file)){
 		require_once($SERVERROOT.'/inc/'.$file);
-	}elseif(is_file($SERVERROOT.'/config/'.$file)){
-		require_once($SERVERROOT.'/config/'.$file);
 	}
 }
 
@@ -525,8 +521,6 @@ function oc_include($file){
 		include($SERVERROOT.'/'.$file);
 	}elseif(is_file($SERVERROOT.'/inc/'.$file)){
 		include($SERVERROOT.'/inc/'.$file);
-	}elseif(is_file($SERVERROOT.'/config/'.$file)){
-		include($SERVERROOT.'/config/'.$file);
 	}
 }
 
@@ -549,8 +543,6 @@ function oc_include_once($file){
 		include_once($SERVERROOT.'/'.$file);
 	}elseif(is_file($SERVERROOT.'/inc/'.$file)){
 		include_once($SERVERROOT.'/inc/'.$file);
-	}elseif(is_file($SERVERROOT.'/config/'.$file)){
-		include_once($SERVERROOT.'/config/'.$file);
 	}
 }
 
diff --git a/index.php b/index.php
index e755ab86237c95b5ac2de46c5420f041f288d628..52013d108eae9eebf72eec840b6f680daac67ad4 100755
--- a/index.php
+++ b/index.php
@@ -28,9 +28,6 @@ if(isset($_GET['dir'])) $dir=$_GET['dir']; else $dir='';
 if(isset($_GET['file'])) {
 
   OC_FILES::get($dir,$_GET['file']);
-OC_FILES::get($dir,$_GET['file']);
-OC_FILES::get($dir,$_GET['file']);
-echo('heya');
 }else{
 
   OC_UTIL::addscript('js/ajax.js');