Home
last modified time | relevance | path

Searched +full:server -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 26 – 50 of 106) sorted by relevance

12345

/dokuwiki/vendor/
H A Dautoload.php7 header('HTTP/1.1 500 Internal Server Error');
/dokuwiki/inc/Action/
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'),
H A DDenied.php33 if (empty($INPUT->server->str('REMOTE_USER')) && actionOK('login')) {
H A DLogout.php44 if ($lockedby == $INPUT->server->str('REMOTE_USER')) {
/dokuwiki/lib/plugins/authldap/conf/
H A Ddefault.php3 $conf['server'] = '';
H A Dmetadata.php3 $meta['server'] = array('string','_caution' => 'danger');
/dokuwiki/lib/plugins/popularity/
H A Dadmin.php101 echo $this->buildForm('server');
121 * @param string $submissionMode How is the data supposed to be sent? (may be: 'browser' or 'server')
138 //If we submit via the server, we give the opportunity to suscribe to the autosubmission option
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php110 * RFC4254 refers not to client and server channels but rather to sender and recipient channels. we don't refer
112 * a sender channel and the server sends a SSH_MSG_CHANNEL_OPEN_CONFIRMATION in response, with a sender and a
215 * Server Identifier
263 * Server Host Key Algorithms
273 * In theory this should be the same as the Server Host Key Algorithms but, in practice,
274 * some servers (eg. Azure) will support rsa-sha2-512 as a server host key algorithm but
283 * Encryption Algorithms: Client to Server
291 * Encryption Algorithms: Server to Client
299 * MAC Algorithms: Client to Server
307 * MAC Algorithms: Server t
[all...]
/dokuwiki/inc/Subscriptions/
H A DSubscriptionSender.php31 $server = parse_url(DOKU_URL, PHP_URL_HOST);
32 $listid = implode('.', array_reverse(explode('/', DOKU_BASE))) . $server;
H A DBulkSubscriptionSender.php43 $olduser = $INPUT->server->str('REMOTE_USER');
62 $INPUT->server->set('REMOTE_USER', $user);
89 ($INPUT->server->str('REMOTE_USER') === $rev['user'] ||
126 $INPUT->server->set('REMOTE_USER', $olduser);
/dokuwiki/vendor/composer/
H A Dplatform_check.php13 header('HTTP/1.1 500 Internal Server Error');
/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...]
/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 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
[all...]
H A Dcommon.php111 $user = $INPUT->server->str('REMOTE_USER');
129 if (!$INPUT->server->str('REMOTE_USER')) return true; // no logged in user, no need for a check
175 if ($INPUT->server->has('REMOTE_USER')) {
178 $info['client'] = $INPUT->server->str('REMOTE_USER');
189 $info['userinfo']['name'] = $INPUT->server->str('REMOTE_USER');
480 strpos($INPUT->server->str('SERVER_SOFTWARE'), 'Microsoft-IIS') === false
765 $data['userinfo']['ip'] = $INPUT->server->str('REMOTE_ADDR');
766 if ($INPUT->server->str('REMOTE_USER')) {
767 $data['userinfo']['user'] = $INPUT->server->str('REMOTE_USER');
799 $ip[] = $INPUT->server
[all...]
H A Dpageutils.php46 $request = $INPUT->server->str('REQUEST_URI');
56 PhpString::basename($INPUT->server->str('SCRIPT_FILENAME'));
57 } elseif ($INPUT->server->str('PATH_INFO')) {
58 $request = $INPUT->server->str('PATH_INFO');
59 } elseif ($INPUT->server->str('SCRIPT_NAME')) {
60 $script = $INPUT->server->str('SCRIPT_NAME');
61 } elseif ($INPUT->server->str('DOCUMENT_ROOT') && $INPUT->server->str('SCRIPT_FILENAME')) {
63 '/^' . preg_quote($INPUT->server->str('DOCUMENT_ROOT'), '/') . '/',
65 $INPUT->server
[all...]
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));
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Ddcl.php75 'SET SERVER ACME_SERVER', 'SET SERVER REGISTRY_SERVER', 'SET SERVER SECURITY_SERVER',
83 'SHOW SERVER ACME_SERVER', 'SHOW SERVER REGISTRY_SERVER', 'SHOW SHADOW',
H A Dprogress.php59 'CREATE SAX-attributeS','CREATE SAX-READER','CREATE SAX-WRITER','CREATE SERVER',
60 'CREATE SERVER-SOCKET','CREATE SOAP-HEADER','CREATE SOAP-HEADER-ENTRYREF','CREATE SOCKET',
114 'SAX-reader','SAX-writer','Server socket','SOAP-fault',
300 'FIRST-PROCEDURE','FIRST-QUERY','FIRST-SERVER','FIRST-SERVER-SOCKET',
325 'LAST-PROCEDURE','LAST-SERVER','LAST-SERVER-SOCKET','LAST-SOCKET',
373 'SERVER','SERVER-CONNECTION-BOUND','SERVER
[all...]
H A Dasp.php58 'While', 'Wend', 'For', 'Loop', 'Do', 'Request', 'Response', 'Server', 'ADODB', 'Session', 'Application',
149 '<script language="vbscript" runat="server">' => '</script>'
152 '<script language="javascript" runat="server">' => '</script>'
/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
330 throw new HTTPClientException('Server returne
868 uniqueConnectionId($server, $port) global() argument
[all...]
/dokuwiki/inc/Input/
H A DInput.php20 /** @var Server Access $_SERVER parameters */
21 public $server;
38 $this->server = new Server();
22 public $server; global() variable in dokuwiki\\Input\\Input
/dokuwiki/vendor/kissifrot/php-ixr/
H A DREADME.md11 The Incutio XML-RPC library (IXR) is designed primarily for ease of use. It incorporates both client and server classes, and is designed to hide as much of the workings of XML-RPC from the user as possible. A key feature of the library is automatic type conversion from PHP types to XML-RPC types and vice versa. This should enable developers to write web services with very little knowledge of the underlying XML-RPC standard.
/dokuwiki/inc/Action/Exception/
H A DActionException.php38 if (strtolower($INPUT->server->str('REQUEST_METHOD')) == 'post') {
/dokuwiki/vendor/geshi/geshi/
H A DBUGS17 making some sort of "cache" effect to speed things up and reduce server load.

12345