- $sSQL = 'update query_log set endtime = '.getDBQuoted($sEndTime).', results = '.$iNumResults;
- $sSQL .= ' where starttime = '.getDBQuoted($hLog[0]);
- $sSQL .= ' and ipaddress = '.getDBQuoted($hLog[1]);
- $sSQL .= ' and query = '.getDBQuoted($hLog[3]);
- $oDB->query($sSQL);
-
- $sSQL = 'update new_query_log set endtime = '.getDBQuoted($sEndTime).', results = '.$iNumResults;
- $sSQL .= ' where starttime = '.getDBQuoted($hLog[0]);
- $sSQL .= ' and ipaddress = '.getDBQuoted($hLog[1]);
- $sSQL .= ' and query = '.getDBQuoted($hLog[2]);
- $oDB->query($sSQL);
+ if (CONST_Log_DB)
+ {
+ $sSQL = 'update query_log set endtime = '.getDBQuoted($sEndTime).', results = '.$iNumResults;
+ $sSQL .= ' where starttime = '.getDBQuoted($hLog[0]);
+ $sSQL .= ' and ipaddress = '.getDBQuoted($hLog[1]);
+ $sSQL .= ' and query = '.getDBQuoted($hLog[3]);
+ $oDB->query($sSQL);
+
+ $sSQL = 'update new_query_log set endtime = '.getDBQuoted($sEndTime).', results = '.$iNumResults;
+ $sSQL .= ' where starttime = '.getDBQuoted($hLog[0]);
+ $sSQL .= ' and ipaddress = '.getDBQuoted($hLog[1]);
+ $sSQL .= ' and query = '.getDBQuoted($hLog[2]);
+ $oDB->query($sSQL);
+ }
+
+ $aStartTime = explode('.',$hLog[0]);
+ file_put_contents('/data/mapquest/opentile_http/logs/nominatimsearch',
+ $aStartTime[0].','.$aStartTime[1].','.
+ php_uname('n').','.
+ '"'.addslashes(isset($_SERVER['HTTP_REFERER'])?$_SERVER['HTTP_REFERER']:'').'",'.
+ '"'.addslashes($hLog[1]).'",'.
+ '"'.addslashes($hLog[3]).'",'.
+ '"'.addslashes($_SERVER['HTTP_USER_AGENT']).'",'.
+ '"'.addslashes($_GET['format']).'",'.
+ $iNumResults."\n",
+ FILE_APPEND);
+