diff options
author | blsaws <bryan.sullivan@att.com> | 2016-05-17 20:15:33 -0700 |
---|---|---|
committer | blsaws <bryan.sullivan@att.com> | 2016-05-17 20:15:33 -0700 |
commit | b5de7a7107f7ccab09f29495efb762dab89e44a8 (patch) | |
tree | c0f3883067a6cd27016a600671902d478d7c5a9a /components/congress/test-webapp/www/html/proxy | |
parent | c5abd71c01dfd2fcbb9bcde8180198a291f2e658 (diff) |
Test webapp install testing for centos
JIRA: COPPER-4
Change-Id: Ibdcd4b19a80f09ccd00b70b3ad1536ae28c36073
Signed-off-by: blsaws <bryan.sullivan@att.com>
Diffstat (limited to 'components/congress/test-webapp/www/html/proxy')
-rw-r--r-- | components/congress/test-webapp/www/html/proxy/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/congress/test-webapp/www/html/proxy/index.php b/components/congress/test-webapp/www/html/proxy/index.php index d422acf..f459549 100644 --- a/components/congress/test-webapp/www/html/proxy/index.php +++ b/components/congress/test-webapp/www/html/proxy/index.php @@ -43,14 +43,14 @@ $response = curl_exec($curlop); $req_time=time(); $info = curl_getinfo($curlop); -$result = file_put_contents("/home/opnfv/coppertest/logs/".date('ymd').".log", "proxy.php, ".$req_time.", ".$url.", ".$type.", ".$body."\n",FILE_APPEND); +$result = file_put_contents("/tmp/copper/log/".date('ymd').".log", "proxy.php, ".$req_time.", ".$url.", ".$type.", ".$body."\n",FILE_APPEND); if ($result === false) $response = "PHP error in index.php"; $responseCode=curl_getinfo($curlop,CURLINFO_HTTP_CODE); $header_size = curl_getinfo($response, CURLINFO_HEADER_SIZE); $header = substr($response, 0, $header_size); $type = curl_getinfo($curlop,CURLINFO_CONTENT_TYPE); $body = substr($response, $header_size); -$result = file_put_contents("/home/opnfv/coppertest/logs/".date('ymd').".log", "proxy.php, ".$req_time.", ".$responseCode.", ".$type.", ".$header.", ".$body."\n",FILE_APPEND); +$result = file_put_contents("/tmp/copper/log/".date('ymd').".log", "proxy.php, ".$req_time.", ".$responseCode.", ".$type.", ".$header.", ".$body."\n",FILE_APPEND); if ($result === false) $response = "PHP error in index.php"; // header("Location: ".$url); |