/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/ |
H A D | ErrorHandler.php | 38 * @param string $errstr 44 public static function handleError($errno, $errstr, $errfile, $errline) argument 50 self::$errorStack[] = [$errno, $errstr, $errfile, $errline]; 83 throw new $exception($errstr, $errno, $errfile, $errline); 105 set_error_handler(function ($errno, $errstr) use ($severity) {
|
H A D | PHP.php | 282 set_error_handler(function ($errno, $errstr, $errfile, $errline) { 283 throw new ErrorException($errstr, $errno, $errno, $errfile, $errline);
|
/plugin/recaptcha2/lib/ReCaptcha/RequestMethod/ |
H A D | Socket.php | 44 * @param string $errstr 48 public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = null) argument 50 …$this->handle = fsockopen($hostname, $port, $errno, $errstr, (is_null($timeout) ? ini_get("default… 52 if ($this->handle != false && $errno === 0 && $errstr === '') {
|
H A D | SocketPost.php | 89 $errstr = ''; 91 …if ($this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false)…
|
/plugin/davcal/ |
H A D | calendarserver.php | 37 function exception_error_handler($errno, $errstr, $errfile, $errline) { argument 38 dbglog('Exception occured: '.$errstr); 39 throw new ErrorException($errstr, 0, $errno, $errfile, $errline);
|
/plugin/swiftmail/Swift/Connection/ |
H A D | SMTP.php | 90 protected $errstr; variable in Swift_Connection_SMTP 301 if (!$this->handle = @fsockopen($server, $this->port, $errno, $errstr, $this->timeout)) 303 …his->port . "]: fsockopen returned Error Number " . $errno . " and Error String '" . $errstr . "'"; 312 $this->errstr =& $errstr; 320 return " (fsockopen: " . $this->errstr . "#" . $this->errno . ") ";
|
/plugin/eventum/XML/ |
H A D | RPC.php | 685 var $errstr = ''; variable in XML_RPC_Client 856 $this->errstr = 'send()\'s $msg parameter must be an' 938 $this->errno, $this->errstr); 949 . ' failed. ' . $this->errstr, 955 . ' failed. ' . $this->errstr, 969 $this->errstr = 'Write error'; 1466 error_log('HTTP error, got response: ' . $errstr); 1469 $errstr . ')'); 1492 $errstr = 'XML error at line 1, check URL'; 1494 $errstr = sprintf('XML error: %s at line %d', [all …]
|
/plugin/fedauth/Auth/Yadis/ |
H A D | PlainHTTPFetcher.php | 89 $errstr = ''; 97 @$sock = fsockopen($host, $parts['port'], $errno, $errstr, 199 $errstr = ''; 201 $sock = fsockopen($parts['host'], $parts['port'], $errno, $errstr,
|
/plugin/openid/Auth/Yadis/ |
H A D | PlainHTTPFetcher.php | 98 $errstr = ''; 106 @$sock = fsockopen($host, $parts['port'], $errno, $errstr, 208 $errstr = ''; 210 $sock = fsockopen($parts['host'], $parts['port'], $errno, $errstr,
|
/plugin/photogallery/phpThumb/ |
H A D | phpthumb.functions.php | 548 if ($fp = @fsockopen($parsed_url['host'], $parsed_url['port'], $errno, $errstr, $timeout)) { 569 if ($fp = @fsockopen($parsed_url['host'], $parsed_url['port'], $errno, $errstr, $timeout)) { 649 …public static function URLreadFsock($host, $file, &$errstr, $successonly=true, $port=-1, $timeout=… argument 651 $errstr = 'URLreadFsock says: function fsockopen() unavailable'; 674 list( , $errno, $errstr) = $matches; 688 … $errstr = $errno.' '.$errstr.($header_newlocation ? '; Location: '.$header_newlocation : ''); 762 $errstr = ''; 770 …sock($parsed_url['host'], $parsed_url['path'].'?'.$parsed_url['query'], $errstr, true, $parsed_url… 771 if ($followredirects && preg_match('#302 [a-z ]+; Location\\: (http.*)#i', $errstr, $matches)) { 788 $error .= 'Error opening "'.$url.'":'."\n\n".$errstr; [all …]
|
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/ |
H A D | SocketHandler.php | 46 private $errstr = null; variable in Monolog\\Handler\\SocketHandler 250 …return @pfsockopen($this->connectionString, -1, $this->errno, $this->errstr, $this->connectionTime… 260 …return @fsockopen($this->connectionString, -1, $this->errno, $this->errstr, $this->connectionTimeo… 376 …pectedValueException("Failed connecting to $this->connectionString ($this->errno: $this->errstr)");
|
/plugin/swiftmail/Swift/Authenticator/PopB4Smtp/ |
H A D | Pop3Connection.php | 133 if ((false === $this->handle = @fsockopen($url, $this->getPort(), $errno, $errstr, 5))) 136 …ion failed to start. The error string returned from fsockopen() is [" . $errstr . "] #" . $errno);
|
/plugin/scrape/HTMLPurifier/Lexer/ |
H A D | PEARSax3.php |
|
/plugin/gemini/ |
H A D | cli.php | 86 $errstr = ''; 90 $errstr, 94 if ($socket === false) throw new \splitbrain\phpcli\Exception($errstr, $errno);
|
/plugin/mantis/lib/ |
H A D | class.soapclient.php | 289 if($errstr = $this->getError()){ 290 $this->debug('Error: '.$errstr); 342 if ($errstr = $this->wsdl->getError()) { 343 $this->debug('got wsdl error: '.$errstr); 344 $this->setError('wsdl error: '.$errstr); 507 if($errstr = $parser->getError()){ 508 $this->setError( $errstr);
|
/plugin/html2pdf/html2pdf/html2ps/ |
H A D | fetcher.url.class.php | 131 $fp = @fsockopen($this->host,$this->port,$errno,$errstr,HTML2PS_CONNECTION_TIMEOUT); 138 $errstr); 164 $fp = @fsockopen("ssl://$this->host", $this->port, $errno, $errstr, 5); 171 $errstr);
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/System/SSH/ |
H A D | Agent.php | 148 $this->fsock = fsockopen('unix://' . $address, 0, $errno, $errstr); 150 throw new \RuntimeException("Unable to connect to ssh-agent (Error $errno: $errstr)");
|
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/ |
H A D | breaking-changes.asciidoc | 20 set_error_handler(function ($errno, $errstr) { 21 var_dump($errstr);
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/ |
H A D | RemoteContentFetcher.php | 113 if (!($fh = @fsockopen($prefix . $p['host'], $port, $errno, $errstr, $timeout))) { 114 $this->logger->error(sprintf('Socket error "%s": "%s"', $errno, $errstr), ['context' => LogContext::REMOTE_CONTENT]);
|
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
H A D | module.graphic.jpg.php | 74 set_error_handler(function($errno, $errstr, $errfile, $errline, array $errcontext) { 80 $errcontext['info']['warning'][] = 'Error parsing EXIF data ('.$errstr.')';
|
/plugin/snap/ |
H A D | syntax.php.ori | 176 $fp = fsockopen($snapServer, $snapPort, $errno, $errstr, 30); 180 $fp = fsockopen($snapServer, $snapPort, $errno, $errstr, 30); 186 … $renderer->doc .= "Serveur snap $snapServer:$snapPort non trouvé $errstr ($errno)<br />\n";
|
/plugin/eventum/ |
H A D | class.Eventum_RPC.php | 126 throw new Eventum_RPC_Exception($this->client->errstr);
|
/plugin/linkback/ |
H A D | http.php | 112 $socket = @ fsockopen($server, $port, $errno, $errstr, $this->timeout); 115 $this->error = "Could not connect to $server:$port\n$errstr ($errno)";
|
/plugin/combo/ComboStrap/ |
H A D | Http.php | 123 $fp = fsockopen($parts['host'], isset($parts['port']) ? $parts['port'] : 80, $errno, $errstr, 30);
|
/plugin/crypto/ |
H A D | action.php | 67 function crypto_error_handler($errno, $errstr, $errfile, $errline, $errcontext) { argument
|