Home
last modified time | relevance | path

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

123

/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);
/dokuwiki/conf/
H A Dmysql.conf.php.example26 $conf['plugin']['authmysql']['server'] = '';
/dokuwiki/inc/Subscriptions/
H A DSubscriberManager.php125 $user = $INPUT->server->str('REMOTE_USER');
263 if (!$self && $user == $INPUT->server->str('REMOTE_USER')) {
/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/
H A Dfeed.php40 $INPUT->server->str('REMOTE_USER'),
41 $INPUT->server->str('HTTP_HOST'),
42 $INPUT->server->str('SERVER_PORT')
/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 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/Ui/
H A DUserProfile.php
/dokuwiki/inc/
H A Dauth.php79 $header = $INPUT->server->str('HTTP_AUTHORIZATION') ?: $INPUT->server->str('REDIRECT_HTTP_AUTHORIZATION');
86 if (!$INPUT->str('u') && empty($_COOKIE[DOKU_COOKIE]) && !empty($INPUT->server->str('PHP_AUTH_USER'))) {
87 $INPUT->set('u', $INPUT->server->str('PHP_AUTH_USER'));
88 $INPUT->set('p', $INPUT->server->str('PHP_AUTH_PW'));
151 if (!$INPUT->server->has('REMOTE_USER')) continue;
153 $id = str_replace('%USER%', cleanID($INPUT->server->str('REMOTE_USER')), $id);
154 $rest = str_replace('%USER%', auth_nameencode($INPUT->server->str('REMOTE_USER')), $rest);
195 $header = $INPUT->server->str('HTTP_AUTHORIZATION');
215 $INPUT->server
[all...]
H A Dchangelog.php75 $user = ($flagExternalEdit) ? '' : $INPUT->server->str('REMOTE_USER');
133 $user = ($flagExternalEdit) ? '' : $INPUT->server->str('REMOTE_USER');
H A DAjax.php176 $client = $INPUT->server->str('REMOTE_USER');
H A Ddeprecated.php583 public function __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null)
586 parent::__construct($server, $path, $port, $timeout, $timeout_io);
598 public function __construct($server, $path = false, $port = 80)
601 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
H A Dmail.php57 $replace['@USER@'] = $INPUT->server->str('REMOTE_USER', 'noreply', true);
/dokuwiki/lib/exe/
H A Dxmlrpc.php14 $server = new XmlRpcServer(true);
16 $server->serve();
18 $server->error($e->getCode(), $e->getMessage());
13 $server = new XmlRpcServer(true); global() variable
/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 DSubscribe.php18 if (!$INPUT->server->str('REMOTE_USER')) {
/dokuwiki/inc/Menu/
H A DMobileMenu.php68 if ($INPUT->server->str('REMOTE_USER')) {
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md279 * Fixed cURL not failing when the server returns an error. [#425](https://github.com/simplepie/simplepie/pull/425)
H A DREADME.markdown29 server for required settings.
48 2. Make sure that the cache folder inside of the demo folder is server-writable.
/dokuwiki/inc/Remote/IXR/
H A DClient.php24 public function __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null)
26 parent::__construct($server, $path, $port, $timeout, $timeout_io);
29 $this->posturl = $server;
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/
H A Dplugin.info.txt6 desc Provides user authentication against an LDAP server
H A Dauth.php52 * to the LDAP server
81 ['user' => $user, 'server' => $this->getConf('server')]
87 ['user' => $user, 'server' => $this->getConf('server')]
192 $info['server'] = $this->getConf('server');
193 $this->debug('LDAP Server: ' . hsc($info['server']), 0, __LINE__, __FILE__);
534 * Opens a connection to the configured LDAP server and sets the wanted
551 $servers = explode(',', $this->getConf('server'));
[all...]

123