| /dokuwiki/_test/tests/inc/ |
| H A D | httpclient_http_proxy.test.php | 9 protected $port; variable in httpclient_http_proxy_test 20 $this->port = $conf['port']; 23 if (!$this->host || !$this->port) { 36 $http->proxy_port = $this->port;
|
| /dokuwiki/vendor/kissifrot/php-ixr/src/Client/ |
| H A D | Client.php | 18 protected $port; variable in IXR\\Client\\Client 38 … public function __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null) argument 44 $this->port = isset($bits['port']) ? $bits['port'] : 80; 58 $this->port = $port; 95 $fp = fsockopen($this->server, $this->port, $errno, $errstr, $this->timeout); 101 $fp = fsockopen($this->server, $this->port, $errno, $errstr);
|
| H A D | ClientMulticall.php | 14 public function __construct($server, $path = false, $port = 80) argument 16 parent::__construct($server, $path, $port);
|
| H A D | ClientSSL.php | 55 …public function __construct($server, $path = false, $port = 443, $timeout = false, $timeout_io = n… argument 57 parent::__construct($server, $path, $port, $timeout, $timeout_io); 159 if($this->port !== 443) { 160 curl_setopt($curl, CURLOPT_PORT, $this->port);
|
| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | IRI.php | 17 * @property ?int $port 18 * @property-write int|string|null $port 48 * Port 52 protected $port = null; variable in SimplePie\\IRI 85 'port' => 674 88 'port' => 2628 94 'port' => 80, 98 'port' => 443, 250 … if ($relative->iuserinfo !== null || $relative->ihost !== null || $relative->port !== null) { 258 $target->port = $base->port; [all …]
|
| /dokuwiki/lib/plugins/authpdo/_test/ |
| H A D | mysql.test.php | 16 protected $port = ''; variable in mysql_plugin_authpdo_test 29 $this->port = $conf['port']; 63 "{$this->driver}:host={$this->host};port={$this->port}", $this->user, $this->pass, 78 "{$this->driver}:host={$this->host};port={$this->port}", $this->user, $this->pass, 100 …"{$this->driver}:dbname={$this->database};host={$this->host};port={$this->port}", $this->user, $th… 301 …uthpdo']['dsn'] = "{$this->driver}:dbname={$this->database};host={$this->host};port={$this->port}";
|
| /dokuwiki/vendor/geshi/geshi/src/geshi/ |
| H A D | racket.php | 117 'cleanse-path', 'close-input-port', 'close-output-port', 134 'current-error-port', 'current-eval', 136 'current-get-interaction-input-port', 137 'current-inexact-milliseconds', 'current-input-port', 144 'current-namespace', 'current-output-port', 198 'file-size', 'file-stream-buffer-mode', 'file-stream-port?', 206 'get-output-string', 'getenv', 'global-port-print-handler', 230 'inexact-real?', 'inexact?', 'input-port?', 'inspector?', 270 'make-impersonator-property', 'make-input-port', 'make-inspector', 272 'make-log-receiver', 'make-logger', 'make-output-port', [all …]
|
| H A D | scheme.php | 61 'char>=?', 'char>?', 'char?', 'close-input-port', 'close-output-port', 63 'current-input-port', 'current-output-port', 75 'inexact?', 'input-port?', 'integer->char', 'integer?', 'integrate-system', 88 'odd?', 'open-input-file', 'open-output-file', 'or', 'output-port',
|
| /dokuwiki/inc/Remote/IXR/ |
| H A D | Client.php | 24 … public function __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null) argument 26 parent::__construct($server, $path, $port, $timeout, $timeout_io); 31 $this->posturl = 'http://' . $server . ':' . $port . $path;
|
| /dokuwiki/inc/ |
| H A D | deprecated.php | 20 … public function __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null) argument 23 parent::__construct($server, $path, $port, $timeout, $timeout_io); 35 public function __construct($server, $path = false, $port = 80) argument 38 parent::__construct($server, $path, $port);
|
| H A D | init.php | 141 // define cookie and session id, append server port when securecookie is configured FS#1664 504 //split hostheader into host and port 508 $port = $parsed_host['port'] ?? ''; 512 if ($port == '80') { 513 $port = ''; 517 if ($port == '443') { 518 $port = ''; 522 if ($port !== '') $port = ':' . $port; 524 return $proto . $host . $port . $dir;
|
| /dokuwiki/_test/ |
| H A D | proxy.conf.php.dist | 6 $conf['port'] = 3128;
|
| H A D | mysql.conf.php.dist | 7 $conf['port'] = 3306;
|
| H A D | pgsql.conf.php.dist | 7 $conf['port'] = 5432;
|
| /dokuwiki/vendor/simplepie/simplepie/src/Cache/ |
| H A D | Memcache.php | 18 * connect to memcache on `localhost` on port 11211. All tables will be 58 'port' => 11211, 69 $this->cache->addServer($this->options['host'], (int) $this->options['port']);
|
| H A D | Memcached.php | 19 * connect to memcached on `localhost` on port 11211. All tables will be 55 'port' => 11211, 66 $this->cache->addServer($this->options['host'], (int)$this->options['port']);
|
| H A D | Redis.php | 19 * connect to redis on `localhost` on port 6379. All tables will be 60 $redis->connect($parsed['host'], $parsed['port']);
|
| /dokuwiki/inc/HTTP/ |
| H A D | HTTPClient.php | 183 $uriPort = empty($uri['port']) ? null : $uri['port']; 192 $port = $this->proxy_port; 193 if (empty($port)) $port = 8080; 197 $port = $uriPort ?: ($uri['scheme'] == 'https' ? 443 : 80); 247 $connectionId = $this->uniqueConnectionId($server, $port); 257 $socket = @fsockopen($server, $port, $errno, $errstr, $this->timeout); 260 $this->error = "Could not connect to $server:$port\n$errstr ($errno)"; 511 …* Protocol, Servername and Port will be stripped from the request URL when a successful CONNECT ha… 523 if (empty($requestinfo['port'])) $requestinfo['port'] = 443; 526 $request = "CONNECT {$requestinfo['host']}:{$requestinfo['port']} HTTP/1.0" . HTTP_NL; [all …]
|
| H A D | DokuHTTPClient.php | 29 $this->proxy_port = $conf['proxy']['port'];
|
| /dokuwiki/lib/plugins/authldap/conf/ |
| H A D | default.php | 4 $conf['port'] = 389;
|
| H A D | metadata.php | 4 $meta['port'] = array('numeric','_caution' => 'danger');
|
| /dokuwiki/vendor/splitbrain/php-jsstrip/ |
| H A D | README.md | 3 This is a PHP port of Nick Galbreath's python tool [jsstrip.py](https://code.google.com/p/jsstrip/).
|
| /dokuwiki/_test/tests/inc/parser/ |
| H A D | renderer_resolveinterwiki.test.php | 17 //this was the only link with host/port/path/query. Keep it here for regression 18 $Renderer->interwiki['coral'] = 'http://{HOST}.{PORT}.nyud.net:8090{PATH}?{QUERY}';
|
| /dokuwiki/conf/ |
| H A D | interwiki.conf | 10 # {PORT}
|
| /dokuwiki/lib/plugins/authad/adLDAP/ |
| H A D | adLDAP.php | 74 * The default port for LDAP non-SSL connections 78 * The default port for LDAPS SSL connections 99 * Port used to talk to the domain controllers. 388 * Sets the port number your domain controller communicates over 398 * Gets the port number your domain controller communicates over 479 // Set the default port correctly 926 $port = $this->adPort; 927 fsockopen($host, $port, $errno, $errstr, 10);
|