diff options
author | Michael Meer <michael@meer.name> | 2014-01-30 10:39:09 +0100 |
---|---|---|
committer | Michael Meer <michael@meer.name> | 2014-01-30 10:39:09 +0100 |
commit | 0a2b2a139080b41c10bbc7fc0f3b24129f2c3c38 (patch) | |
tree | 29906db19f930d0585c9978d2d3fbaf8ca47041b /include/network.php | |
parent | e5d1e20ff50f49909e7df6fe7efe0d7488e58eaa (diff) | |
download | volse-hubzilla-0a2b2a139080b41c10bbc7fc0f3b24129f2c3c38.tar.gz volse-hubzilla-0a2b2a139080b41c10bbc7fc0f3b24129f2c3c38.tar.bz2 volse-hubzilla-0a2b2a139080b41c10bbc7fc0f3b24129f2c3c38.zip |
attempt with fix URL for testing works
Diffstat (limited to 'include/network.php')
-rw-r--r-- | include/network.php | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/include/network.php b/include/network.php index 3fe7f5400..ca6fa1bfc 100644 --- a/include/network.php +++ b/include/network.php @@ -78,7 +78,7 @@ function z_fetch_url($url, $binary = false, $redirects = 0, $opts = array()) { @curl_setopt($ch, CURLOPT_BINARYTRANSFER,1); - // don't let curl abort the entire application + // dont let curl abort the entire application // if it throws any errors. $s = @curl_exec($ch); @@ -86,7 +86,7 @@ function z_fetch_url($url, $binary = false, $redirects = 0, $opts = array()) { $base = $s; $curl_info = @curl_getinfo($ch); $http_code = $curl_info['http_code']; -// logger('fetch_url:' . $http_code . ' data: ' . $s); + logger('fetch_url:' . $http_code . ' data: ' . $s); $header = ''; // Pull out multiple headers, e.g. proxy and continuation headers @@ -129,7 +129,11 @@ function z_fetch_url($url, $binary = false, $redirects = 0, $opts = array()) { function z_post_url($url,$params, $redirects = 0, $opts = array()) { - + + logger('z_post_url',LOGGER_DEBUG); + logger('z_post_url url ' . $url ,LOGGER_DEBUG); + logger('z_post_url params' . $params ,LOGGER_DEBUG); + logger('z_post_url redirects ' . $redirects ,LOGGER_DEBUG); $ret = array('return_code' => 0, 'success' => false, 'header' => "", 'body' => ""); $ch = curl_init($url); @@ -181,10 +185,12 @@ function z_post_url($url,$params, $redirects = 0, $opts = array()) { // if it throws any errors. $s = @curl_exec($ch); + logger('z_post_url s ' . $s ,LOGGER_DEBUG); $base = $s; $curl_info = curl_getinfo($ch); $http_code = $curl_info['http_code']; + logger('z_post_url http_code ' . $http_code ,LOGGER_DEBUG); $header = ''; |