Lines Matching refs:debug

62 		$this->debug("ctor url=$url use_curl=$use_curl curl_options:");
81 $this->debug("setCurlOption option=$option, value=");
95 $this->debug("set header $name: $value");
106 $this->debug("unset header $name");
122 $this->debug("parsed URL $k = $v");
190 …$this->debug("connect connection_timeout $connection_timeout, response_timeout $response_timeout, …
203 $this->debug('Re-use persistent connection');
207 $this->debug('Closed persistent connection at EOF');
214 …$this->debug('calling fsockopen with host ' . $host . ' connection_timeout ' . $connection_timeout…
231 $this->debug($msg);
237 $this->debug('set response timeout to ' . $response_timeout);
240 $this->debug('socket connected');
274 $this->debug('connect using cURL');
284 $this->debug('safe_mode or open_basedir set, so do not set CURLOPT_FOLLOWLOCATION');
285 $this->debug('safe_mode = ');
287 $this->debug('open_basedir = ');
320 $this->debug('set cURL SSL verify options');
330 $this->debug('set cURL certificate options');
360 $this->debug('set cURL username/password');
364 $this->debug('set cURL for Basic authentication');
368 $this->debug('set cURL for digest authentication');
372 $this->debug('set cURL for NTLM authentication');
377 $this->debug('set cURL proxy options');
384 $this->debug('set cURL proxy authentication options');
394 $this->debug('cURL connection set up');
398 $this->debug('Unknown scheme ' . $this->scheme);
415 $this->debug('entered send() with data of length: '.strlen($data));
438 $this->debug('end of send()');
469 $this->debug("setCredentials username=$username authtype=$authtype digestRequest=");
471 $this->debug("certRequest=");
525 $this->debug('Authorization header not set for certificate');
528 $this->debug('Authorization header not set for ntlm');
589 $this->debug('remove proxy');
640 $this->debug('no linebreak found in decodeChunked');
648 $this->debug("chunkstart: $chunkstart chunk_size: $chunk_size");
703 $this->debug("HTTP request: $req");
709 $this->debug("HTTP header: $hdr");
716 $this->debug("HTTP header: $hdr");
746 $this->debug('couldn\'t write message data to socket');
749 $this->debug('wrote data to socket, length = ' . strlen($this->outgoing_payload));
760 $this->debug("Skip cURL header $k: $v");
769 $this->debug('set cURL HTTP headers');
773 $this->debug('set cURL POST data');
781 $this->debug('set cURL payload');
803 $this->debug('found no headers before EOF after length ' . strlen($data));
804 $this->debug("received before EOF:\n" . $data);
811 $this->debug("read line of $tmplen bytes: " . trim($tmp));
815 $this->debug('socket read of headers timed out after length ' . strlen($data));
816 $this->debug("read before timeout: " . $data);
839 $this->debug('found end of headers after length ' . strlen($data));
855 $this->debug('found cookie: ' . $cookie['name'] . ' = ' . $cookie['value']);
857 $this->debug('did not find cookie in ' . trim($arr[1]));
870 $this->debug("want to read chunked content");
874 $this->debug("want to read content of length $content_length");
878 $this->debug("want to read content to EOF");
885 $this->debug("read chunk line of $tmplen bytes");
888 $this->debug('socket read of chunk length timed out after length ' . strlen($data));
889 $this->debug("read before timeout:\n" . $data);
894 $this->debug("chunk length $content_length");
901 $this->debug("read buffer of $tmplen bytes");
904 $this->debug('socket read of body timed out after length ' . strlen($data));
905 $this->debug("read before timeout:\n" . $data);
915 $this->debug("read chunk terminator of $tmplen bytes");
918 $this->debug('socket read of chunk terminator timed out after length ' . strlen($data));
919 $this->debug("read before timeout:\n" . $data);
926 $this->debug('read to EOF');
928 $this->debug('read body of length ' . strlen($data));
930 $this->debug('received a total of '.strlen($this->incoming_payload).' bytes of data from server');
938 $this->debug('closed socket');
960 $this->debug('send and receive with cURL');
971 $this->debug($err);
981 $this->debug('No cURL error, closing cURL');
987 $this->debug("Found HTTP header to skip");
1013 $this->debug('no proper separation of headers and document');
1020 $this->debug('found proper separation of headers and document');
1021 $this->debug('cleaned data, stringlen: '.strlen($data));
1033 $this->debug('found cookie: ' . $cookie['name'] . ' = ' . $cookie['value']);
1035 $this->debug('did not find cookie in ' . trim($arr[1]));
1053 …$this->debug("Got $http_status $http_reason with Location: " . $this->incoming_headers['location']…
1061 …$this->debug("Got 401 $http_reason with WWW-Authenticate: " . $this->incoming_headers['www-authent…
1063 $this->debug('Server wants digest authentication');
1081 $this->debug('HTTP authentication failed');
1103 $this->debug('The gzinflate function exists');
1108 $this->debug('The payload has been inflated to ' . strlen($data) . ' bytes');
1111 $this->debug('The inflated payload is smaller than the gzipped one; try again');
1114 $this->debug('The payload has been inflated again to ' . strlen($data) . ' bytes');
1118 $this->debug('Error using gzinflate to inflate the payload');
1124 $this->debug('The payload has been un-gzipped to ' . strlen($data) . ' bytes');
1127 $this->debug('The un-gzipped payload is smaller than the gzipped one; try again');
1130 $this->debug('The payload has been un-gzipped again to ' . strlen($data) . ' bytes');
1134 $this->debug('Error using gzinflate to un-gzip the payload');
1143 …$this->debug('The server sent compressed data. Your php install must have the Zlib extension compi…
1147 $this->debug('Unsupported Content-Encoding ' . $this->incoming_headers['content-encoding']);
1151 $this->debug('No Content-Encoding header');
1155 $this->debug('no data after headers!');
1271 $this->debug("check cookie for validity: ".$cookie['name'].'='.$cookie['value']);
1274 $this->debug('cookie has expired');
1281 $this->debug('cookie has different domain');
1288 $this->debug('cookie is for a different path');
1293 $this->debug('cookie is secure, transport is not');
1297 $this->debug('add cookie to Cookie-String: ' . $cookie['name'] . '=' . $cookie['value']);