Home
last modified time | relevance | path

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

123

/dokuwiki/inc/
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 Dtemplate.php377 if ($conf['useacl'] && $INPUT->server->str('REMOTE_USER')) {
894 if ($INPUT->server->str('REMOTE_USER')) {
1884 $INPUT->server->bool('REMOTE_USER') ? 'loggedIn' : '',
H A Dtoolbar.php270 $sig = str_replace('@USER@', $INPUT->server->str('REMOTE_USER'), $sig);
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...]
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 Dinfoutils.php283 $INPUT->server->str('REMOTE_USER'),
356 msg("Your server's clock seems to be out of sync!
357 Consider configuring a sync with a NTP server. Diff: {$diff}s");
/dokuwiki/inc/parser/
H A Dcode.php34 if (strpos($INPUT->server->str('HTTP_USER_AGENT'), 'Windows') !== false) {
/dokuwiki/lib/scripts/jquery/
H A Djquery.cookie.js42 // Replace server-side written pluses with spaces.
/dokuwiki/inc/Menu/Item/
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') === '') {
/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/vendor/kissifrot/php-ixr/src/Client/
H A DClient.php17 protected $server; variable in IXR\\Client\\Client
38 public function __construct($server, $path = false, $port = 80, $timeout = 15, $timeout_io = null) argument
42 $bits = parse_url($server);
43 $this->server = $bits['host'];
56 $this->server = $server;
76 $this->headers['Host'] = $this->server;
95 $fp = fsockopen($this->server, $this->port, $errno, $errstr, $this->timeout);
101 $fp = fsockopen($this->server, $this->port, $errno, $errstr);
H A DClientMulticall.php14 public function __construct($server, $path = false, $port = 80) argument
16 parent::__construct($server, $path, $port);
H A DClientSSL.php52 * @param string $server URL of the Server to connect to
55 public function __construct($server, $path = false, $port = 443, $timeout = false, $timeout_io = null) argument
57 parent::__construct($server, $path, $port, $timeout, $timeout_io);
68 * Set the client side certificates to communicate with the server.
142 $curl = curl_init('https://' . $this->server . $this->path);
/dokuwiki/
H A D.htaccess.dist41 ## rules if your server setup allows HTTPS.
/dokuwiki/inc/Subscriptions/
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);
H A DSubscriptionSender.php31 $server = parse_url(DOKU_URL, PHP_URL_HOST);
32 $listid = implode('.', array_reverse(explode('/', DOKU_BASE))) . $server;
/dokuwiki/inc/Ui/
H A DEditor.php127 if ($conf['useacl'] && $INPUT->server->str('REMOTE_USER')) {
/dokuwiki/inc/Action/Exception/
H A DActionException.php38 if (strtolower($INPUT->server->str('REQUEST_METHOD')) == 'post') {
/dokuwiki/inc/Action/
H A DSearch.php42 parse_str($INPUT->server->str('QUERY_STRING'), $urlParts);
/dokuwiki/vendor/geshi/geshi/
H A DBUGS17 making some sort of "cache" effect to speed things up and reduce server load.
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DIntrospectionServer.php38 'Returns a struct describing the XML-RPC specifications supported by this server'
44 'Returns an array of available methods on this server'
71 'server error. requested method "' . $this->message->methodName . '" not specified.');
79 return new Error(-32602, 'server error. wrong number of method parameters');
120 return new Error(-32602, 'server error. invalid method parameters');
130 return new Error(-32601, 'server error. requested method "' . $method . '" not specified.');
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A DLICENSE

123