removing all the error logging for now
[gwvp-mini.git] / www / index.php
index 3765aca..4dc08e8 100644 (file)
@@ -1,9 +1,11 @@
 <?php
-error_log("INCALLSTART ".print_r($_COOKIE, true)." -------------------- ".print_r($_SERVER,true)." ---------- ".print_r($_REQUEST, true));
+// error_log("INCALLSTART ".print_r($_COOKIE, true)." -------------------- ".print_r($_SERVER,true)." ---------- ".print_r($_REQUEST, true));
 $WEB_ROOT_FS = realpath(dirname(__FILE__));\r
 $BASE_URL = dirname($_SERVER["PHP_SELF"]);\r
 \r
-global $WEB_ROOT_FS, $BASE_URL, $data_directory, $db_type, $db_name, $db_username, $db_password;\r
+global $WEB_ROOT_FS, $BASE_URL, $data_directory, $db_type, $db_name, $db_username, $db_password, $IS_WEB_REQUEST, $cmd_line_tool;
+
+$IS_WEB_REQUEST = true;\r
 
 if(file_exists("./config.php")) require_once("./config.php");
 else if(file_exists("/etc/gwvpmini/config.php")) require_once("/etc/gwvpmini/config.php");
@@ -13,12 +15,13 @@ if(file_exists("../gwvpmini/gwvpmini.php")) require_once("../gwvpmini/gwvpmini.p
 else if(file_exists("/usr/share/gwvpmini/lib/gwvpmini/gwvpmini.php")) require_once("/usr/share/gwvpmini/lib/gwvpmini/gwvpmini.php");
 
 
-
 if(isset($noconfig)) {
        gwvpmini_goSetup();
        return;
 }
 
+// error_log("CMDLINETOOL: ".$cmd_line_tool);
+
 // need to make this db agnostic
 if(!gwvpmini_DBExists($db_name)) {
        if(!is_dir("$data_directory/repos")) mkdir("$data_directory/repos");
@@ -28,7 +31,7 @@ if(!gwvpmini_DBExists($db_name)) {
        gwvpmini_setConfigVal("repodir", "$data_directory/repos");
 }
 
-error_log("REQUEST BEGIN");
+// error_log("REQUEST BEGIN");
 gwvpmini_goWeb();