Home
last modified time | relevance | path

Searched refs:server (Results 1 – 25 of 58) sorted by path

123

/dokuwiki/
H A D.htaccess.dist41 ## rules if your server setup allows HTTPS.
H A Dfeed.php40 $INPUT->server->str('REMOTE_USER'),
41 $INPUT->server->str('HTTP_HOST'),
42 $INPUT->server->str('SERVER_PORT')
/dokuwiki/conf/
H A Dmysql.conf.php.example26 $conf['plugin']['authmysql']['server'] = '';
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt79 Windows shares like [[\\server\share|this]] are recognized, too. Please note that these only make sense in a homogeneous user group like a corporate [[wp>Intranet]].
81 Windows Shares like [[\\server\share|this]] are recognized, too.
/dokuwiki/inc/Action/
H A DAbstractUserAction.php21 if ($INPUT->server->str('REMOTE_USER') === '') {
H A DDenied.php33 if (empty($INPUT->server->str('REMOTE_USER')) && actionOK('login')) {
H A DLogin.php28 if ($INPUT->server->has('REMOTE_USER')) {
H A DLogout.php44 if ($lockedby == $INPUT->server->str('REMOTE_USER')) {
H A DSearch.php42 parse_str($INPUT->server->str('QUERY_STRING'), $urlParts);
H A DSubscribe.php88 $ok = $subManager->remove($target, $INPUT->server->str('REMOTE_USER'), $style);
90 $ok = $subManager->add($target, $INPUT->server->str('REMOTE_USER'), $style);
170 $INPUT->server->str('REMOTE_USER'),
/dokuwiki/inc/Action/Exception/
H A DActionException.php38 if (strtolower($INPUT->server->str('REQUEST_METHOD')) == 'post') {
/dokuwiki/inc/
H A DAjax.php176 $client = $INPUT->server->str('REMOTE_USER');
H A DMailer.class.php46 $server = parse_url(DOKU_URL, PHP_URL_HOST);
47 if (strpos($server, '.') === false) $server .= '.localhost';
49 $this->partid = substr(md5(uniqid(random_int(0, mt_getrandmax()), true)), 0, 8) . '@' . $server;
52 $listid = implode('.', array_reverse(explode('/', DOKU_BASE))) . $server;
55 $messageid = uniqid(random_int(0, mt_getrandmax()), true) . "@$server";
64 $this->setHeader('X-DokuWiki-User', $INPUT->server->str('REMOTE_USER'));
66 $this->setHeader('X-DokuWiki-Server', $server);
667 'BROWSER' => $INPUT->server->str('HTTP_USER_AGENT'),
672 'USER' => $INPUT->server
[all...]
/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/inc/Input/
H A DInput.php21 public $server;
38 $this->server = new Server();
22 public $server; global() variable in dokuwiki\\Input\\Input
/dokuwiki/inc/Menu/Item/
H A DLogin.php20 if ($INPUT->server->has('REMOTE_USER')) {
H A DProfile.php18 if (!$INPUT->server->str('REMOTE_USER')) {
H A DRegister.php18 if ($INPUT->server->str('REMOTE_USER')) {
H A DResendpwd.php18 if ($INPUT->server->str('REMOTE_USER')) {
H A DRevert.php20 if (!$REV || !$INFO['writable'] || $INPUT->server->str('REMOTE_USER') === '') {
H A DSubscribe.php18 if (!$INPUT->server->str('REMOTE_USER')) {
/dokuwiki/inc/Menu/
H A DMobileMenu.php68 if ($INPUT->server->str('REMOTE_USER')) {
/dokuwiki/inc/Remote/
H A DApi.php173 if (auth_isMember($conf['remoteuser'], $INPUT->server->str('REMOTE_USER'), (array)($USERINFO['grps'] ?? []))) {
178 throw new AccessDeniedException('server error. not authorized to call method', -32604);

123