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 1 – 25 of 106) sorted by last modified time

12345

/dokuwiki/vendor/geshi/geshi/src/geshi/
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>'
H A Dio.php71 'Regex', 'SGMLTag', 'SQLite', 'Server', 'ShowMessage', 'SleepyCat', 'SleepyCatCursor',
H A Dxpp.php69 'server',
H A Dnginx.php177 'server',
200 //'server',
684 //'server',
/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')) {
914 if ($INPUT->server->str('REMOTE_USER')) {
1904 $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
[all...]
H A DStyleUtils.php89 // set proper server dirs
/dokuwiki/inc/parser/
H A Dcode.php34 if (strpos($INPUT->server->str('HTTP_USER_AGENT'), 'Windows') !== false) {
H A Dxhtml.php1055 //do we stay at the same server? Use local target
/dokuwiki/
H A Dindex.php18 if (PHP_SAPI != 'cli-server') {
H A D.htaccess.dist41 ## rules if your server setup allows HTTPS.
/dokuwiki/lib/scripts/jquery/
H A Djquery.cookie.js42 // Replace server-side written pluses with spaces.
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php
H A DRandom.php69 // PHP isn't low level to be able to use those as sources and on a web server there's not likely
76 // server environment stuff and a hash of the previous http request data (which itself utilizes
130 // the IV client to server is the hash of that "nonce" with the letter A and for the encryption key it's the letter C.
/dokuwiki/inc/Menu/Item/
H A DProfile.php18 if (!$INPUT->server->str('REMOTE_USER')) {
H A DRegister.php18 if ($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.php9 * Client for communicating with a XML-RPC Server over HTTPS.
52 * @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.
125 * Set the query to send to the XML-RPC Server
142 $curl = curl_init('https://' . $this->server . $this->path);
/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')) {

12345