started an install doc
[glcas.git] / www / index.php
index 47a19a4..bf3bc2c 100644 (file)
@@ -22,23 +22,13 @@ glcas_pluginLoader();
 $configpath = "";
 
 // TODO: do this better
-if(file_exists($WEB_ROOT_FS."/../var")) {
-       
-       // is it there?
-       if(file_exists($WEB_ROOT_FS."/../var/glcas/webconfig")) {
-               $configpath = realpath("$WEB_ROOT_FS/../var/glcas/webconfig");
-       } else {        
-               // if not, attempt to create
-               if(!file_exists($WEB_ROOT_FS."/../var/glcas")) {
-                       mkdir($WEB_ROOT_FS."/../var/glcas");
-               }
-               // success!
-               touch("$WEB_ROOT_FS/../var/glcas/webconfig");
-               $configpath = realpath("$WEB_ROOT_FS/../var/glcas/webconfig");
-       }
-}
+$configpath = glcas_getWebConfigPath();
+header("Accept-Ranges: bytes");
 
-header("Accept-Ranges: none");
+if($configpath == false) {
+       glcas_startInstaller();
+       return;
+}
 
 $glconfig = new GLCASConfig();
 $glconfig->loadConfig($configpath);