/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 = null) 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 | 82 * Port 86 protected $port = null; 117 'port' => 674 120 'port' => 2628 126 'port' => 80, 130 'port' => 443, 277 if ($relative->iuserinfo !== null || $relative->ihost !== null || $relative->port !== null) { 285 $target->port = $base->port; 289 } elseif (($base->iuserinfo !== null || $base->ihost !== null || $base->port ! 87 protected $port = null; global() variable in SimplePie\\IRI 921 set_port($port) global() argument [all...] |
H A D | File.php | 149 $url_parts['port'] = 443; 151 if (!isset($url_parts['port'])) { 152 $url_parts['port'] = 80; 154 $fp = @fsockopen($socket_host, $url_parts['port'], $errno, $errstr, $timeout);
|
/dokuwiki/inc/ |
H A D | init.php | 118 // define cookie and session id, append server port when securecookie is configured FS#1664 496 //split hostheader into host and port 508 $port = $parsed_host['port'] ?? ''; 512 $port = $parsed_host['port'] ?? ''; 515 $port = ''; 520 if ($port == '80') { 521 $port = ''; 525 if ($port [all...] |
H A D | deprecated.php | 20 public function __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null) 23 parent::__construct($server, $path, $port, $timeout, $timeout_io); 35 public function __construct($server, $path = false, $port = 80) 38 parent::__construct($server, $path, $port); 581 __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null) global() argument 596 __construct($server, $path = false, $port = 80) global() argument
|
/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', 'mak [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',
|
H A D | sshconfig.php | 70 "Port", "PreferredAuthentications", "ProxyCommand", "ProxyJump",
|
/dokuwiki/inc/Remote/IXR/ |
H A D | Client.php | 24 public function __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null) 26 parent::__construct($server, $path, $port, $timeout, $timeout_io); 31 $this->posturl = 'http://' . $server . ':' . $port . $path; 25 __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null) global() argument
|
/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/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 wil 868 uniqueConnectionId($server, $port) global() argument [all...] |
H A D | DokuHTTPClient.php | 29 $this->proxy_port = $conf['proxy']['port'];
|
/dokuwiki/vendor/simplepie/simplepie/src/Cache/ |
H A D | Memcache.php | 55 * connect to memcache on `localhost` on port 11211. All tables will be 97 'port' => 11211, 108 $this->cache->addServer($this->options['host'], (int) $this->options['port']);
|
H A D | Memcached.php | 55 * connect to memcached on `localhost` on port 11211. All tables will be 94 'port' => 11211, 105 $this->cache->addServer($this->options['host'], (int)$this->options['port']);
|
H A D | Redis.php | 55 * connect to redis on `localhost` on port 6379. All tables will be 98 $redis->connect($parsed['host'], $parsed['port']);
|
H A D | MySQL.php | 53 * connect to the `mydb` database on `localhost` on port 3306, with the user 96 'port' => '3306', 110 $this->mysql = new \PDO("mysql:dbname={$this->options['dbname']};host={$this->options['host']};port={$this->options['port']}", $this->options['user'], $this->options['pass'], [\PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8']);
|
/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/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);
|
/dokuwiki/inc/parser/ |
H A D | renderer.php | 940 if (preg_match('#\{(URL|NAME|SCHEME|HOST|PORT|PATH|QUERY)\}#', $url)) { 956 if (empty($parsed['port'])) $parsed['port'] = 80; 962 '{PORT}' => $parsed['port'],
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/ |
H A D | Stream.php | 142 extract(parse_url($path) + ['port' => 22]); 200 if (isset(self::$instances[$host][$port][$user][(string) $pass])) { 201 $this->sftp = self::$instances[$host][$port][$user][(string) $pass]; 203 $this->sftp = new SFTP($host, $port); 227 self::$instances[$host][$port][$user][(string) $pass] = $this->sftp;
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/ |
H A D | SSH1.php |
|