Home
last modified time | relevance | path

Searched refs:server (Results 51 – 58 of 58) sorted by last modified time

123

/dokuwiki/inc/
H A Dmedia.php323 if ($INPUT->server->has('CONTENT_LENGTH') && ($realSize != $INPUT->server->int('CONTENT_LENGTH'))) {
H A Dfarm.php74 $server = explode('.', implode('.', array_reverse(explode(':', rtrim($_SERVER['HTTP_HOST'], '.')))));
76 for ($j = count($server); $j > 0; $j--) {
77 $dir = implode('.', array_slice($server, -$j)) . implode('.', array_slice($uri, 0, $i));
H A Dhttputils.php35 $if_modified_since = $INPUT->server->filter('stripslashes')->str('HTTP_IF_MODIFIED_SINCE', false);
36 $if_none_match = $INPUT->server->filter('stripslashes')->str('HTTP_IF_NONE_MATCH', false);
109 if (!$INPUT->server->has('HTTP_RANGE')) {
113 $t = explode('=', $INPUT->server->str('HTTP_RANGE'));
214 * HTTP headers. If a useable cache is present, it is passed to the web server
340 $server_protocol = $INPUT->server->str('SERVER_PROTOCOL', false);
/dokuwiki/inc/Action/
H A DLogout.php44 if ($lockedby == $INPUT->server->str('REMOTE_USER')) {
/dokuwiki/inc/Cache/
H A DCacheParser.php31 parent::__construct($file . $INPUT->server->str('HTTP_HOST') . $INPUT->server->str('SERVER_PORT'), '.' . $mode);
/dokuwiki/inc/File/
H A DPageFile.php129 $is_minor_change = ($minor && $conf['useacl'] && $INPUT->server->str('REMOTE_USER'));
204 'user' => $INPUT->server->str('REMOTE_USER'),
/dokuwiki/inc/HTTP/
H A DHTTPClient.php181 $server = $uri['host'];
191 $server = $this->proxy_host;
205 $this->error = 'This PHP version does not support SSL - cannot connect to server';
207 $server = 'ssl://' . $server;
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)";
289 // connection token to a proxy server. We still do keep the connection the
353 // check server statu
868 uniqueConnectionId($server, $port) global() argument
[all...]
/dokuwiki/lib/plugins/authad/
H A Dauth.php12 * This makes authentication with a Active Directory server much easier
103 if (!empty($INPUT->server->str('REMOTE_USER'))) {
106 $INPUT->server->set(
108 iconv($this->getConf('sso_charset'), 'UTF-8', $INPUT->server->str('REMOTE_USER'))
110 } elseif (!Clean::isUtf8($INPUT->server->str('REMOTE_USER'))) {
111 $INPUT->server->set('REMOTE_USER', utf8_encode($INPUT->server->str('REMOTE_USER')));
116 $INPUT->server->set('REMOTE_USER', $this->cleanUser($INPUT->server->str('REMOTE_USER')));
120 $INPUT->set('u', $INPUT->server
[all...]

123