Home
last modified time | relevance | path

Searched refs:host (Results 1 – 25 of 26) sorted by relevance

12

/dokuwiki/inc/Parsing/ParserMode/
H A DExternallink.php18 $host = $ltrs . $punc;
26 $this->patterns[] = '(?<![/\\\\])\b(?i)www?(?-i)\.[' . $host . ']+?\.' .
27 '[' . $host . ']+?[' . $any . ']+?(?=[' . $punc . ']*[^' . $any . '])';
28 $this->patterns[] = '(?<![/\\\\])\b(?i)ftp?(?-i)\.[' . $host . ']+?\.' .
29 '[' . $host . ']+?[' . $any . ']+?(?=[' . $punc . ']*[^' . $any . '])';
/dokuwiki/inc/
H A Dmail.php45 $host = @parse_url(DOKU_URL, PHP_URL_HOST);
46 if (!$host) $host = 'example.com';
47 $noreply = 'noreply@' . $host;
H A Dinit.php502 $host = $parsed_host['host'] ?? '';
/dokuwiki/_test/tests/inc/
H A Dhttpclient_http_proxy.test.php19 $this->host = $conf['host'];
/dokuwiki/_test/
H A Dproxy.conf.php.dist5 $conf['host'] = '127.0.0.1';
H A Dmysql.conf.php.dist6 $conf['host'] = '127.0.0.1';
H A Dpgsql.conf.php.dist6 $conf['host'] = '127.0.0.1';
/dokuwiki/inc/lang/it/
H A Dregistermail.txt10 Nome host : @HOSTNAME@
H A Dmailtext.txt6 Nome host : @HOSTNAME@
/dokuwiki/inc/lang/ia/
H A Duploadmail.txt7 Nomine host: @HOSTNAME@
H A Dregistermail.txt10 Nomine host : @HOSTNAME@
H A Dmailtext.txt6 Nomine host : @HOSTNAME@
/dokuwiki/inc/lang/es/
H A Dregistermail.txt10 Nombre del host : @HOSTNAME@
/dokuwiki/inc/lang/pt-br/
H A Dregistermail.txt10 Nome do host: @HOSTNAME@
H A Duploadmail.txt7 Nome do host: @HOSTNAME@
H A Dmailtext.txt6 Nome do host: @HOSTNAME@
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php154 if (!isset($host)) {
165 if (preg_match('/^{[a-z0-9]+}$/i', $host)) {
166 $host = SSH2::getConnectionByResourceId($host);
167 if ($host === false) {
170 $this->sftp = $host;
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/lib/plugins/authpdo/_test/
H A Dmysql.test.php12 protected $host = ''; variable in mysql_plugin_authpdo_test
26 $this->host = $conf['host'];
46 if(!$this->host || !$this->user) {
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 …authpdo']['dsn'] = "{$this->driver}:dbname={$this->database};host={$this->host};port={$this->port}…
/dokuwiki/lib/plugins/authad/adLDAP/
H A DadLDAP.php925 protected function pingController($host) { argument
927 fsockopen($host, $port, $errno, $errstr, 10);
/dokuwiki/vendor/aziraphale/email-address-validator/
H A DREADME.md57 // "example.org" is technically a valid email address host
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php939 private $host; variable in phpseclib3\\Net\\SSH2
1180 * @param mixed $host
1185 public function __construct($host, $port = 22, $timeout = 10) argument
1279 if (is_resource($host)) {
1280 $this->fsock = $host;
1284 if (Strings::is_stringable($host)) {
1285 $this->host = $host;
1402 …$this->fsock = @fsockopen($this->host, $this->port, $errno, $errstr, $this->curTimeout == 0 ? 1000…
1404 $host = $this->host . ':' . $this->port;
1405 … throw new UnableToConnectException(rtrim("Cannot connect to $host. Error $errno. $errstr"));
H A DSFTP.php355 * @param mixed $host
359 public function __construct($host, $port = 22, $timeout = 10) argument
361 parent::__construct($host, $port, $timeout);
/dokuwiki/lib/plugins/config/lang/pt-br/
H A Dlang.php179 $lang['dnslookups'] = 'O DokuWiki procurará pelo nome de host dos endereços IP remotos d…
/dokuwiki/lib/plugins/config/lang/pt/
H A Dlang.php173 $lang['dnslookups'] = 'O DokuWiki irá procurar nomes de host para endereços IP remotos d…
/dokuwiki/_test/core/
H A DphpQuery-onefile.php5060 foreach(self::$ajaxAllowedHosts as $k => $host)
5061 if ($host == '.' && isset($_SERVER['HTTP_HOST']))
5063 $host = parse_url($options['url'], PHP_URL_HOST);
5064 if (! in_array($host, self::$ajaxAllowedHosts)) {
5065 throw new Exception("Request not permitted, host '$host' not present in "
5272 foreach($loop as $host) {
5273 if ($host && ! in_array($host, phpQuery::$ajaxAllowedHosts)) {
5274 phpQuery::$ajaxAllowedHosts[] = $host;

12