Home
last modified time | relevance | path

Searched refs:_SERVER (Results 1 – 25 of 667) sorted by path

12345678910>>...27

/plugin/404manager/
H A Daction.php416 if ($_SERVER['REMOTE_USER']) {
441 if ($_SERVER['REMOTE_USER']) {
H A Dadmin.php408 if (substr_count($_SERVER['HTTP_REFERER'], 'admin.php')) {
420 if ($_SERVER['HTTP_REFERER'] <> '') {
421 … $this->pageRedirections[$sourcePageId]['LastReferrer'] = $_SERVER['HTTP_REFERER'];
590 $this->pageRedirections[$sourcePageId]['LastReferrer'] = $_SERVER['HTTP_REFERER'];
601 "REFERRER" => $_SERVER['HTTP_REFERER'],
/plugin/abortlogin/
H A Daction.php24 $ip = $_SERVER['REMOTE_ADDR'];
/plugin/accscounter/syntax/
H A Dcounter.php153 …if(auth_isMember($this->getConf('usrExclusion'), $_SERVER['REMOTE_USER'], (array) $USERINFO['grps'…
/plugin/aclauditor/
H A Dadmin.php210 …isttitle">'.$this->getLang('listwho').' : "'.($this->who ? $this->who : $_SERVER['REMOTE_USER']).'…
238 …ttitle">'.$this->getLang('listbothwho').' "'.($this->who ? $this->who : $_SERVER['REMOTE_USER']).'…
/plugin/adfs/
H A Dauth.php50 $_SERVER['REMOTE_USER'] = $_SESSION[DOKU_COOKIE]['auth']['user'];
75 $_SERVER['REMOTE_USER'] = $USERINFO['user'];
104 $_SESSION[DOKU_COOKIE]['auth']['user'] = $_SERVER['REMOTE_USER'];
/plugin/adfs/phpsaml/
H A DREADME.md1218 … `setSelfPort` and `isHTTPS` will take care of the `$_SERVER["HTTP_X_FORWARDED_PORT"]` and `$_SERV…
1220 …elfURL` and `getSelfRoutedURLNoQuery` to replace the data extracted from `$_SERVER["REQUEST_URI"]`.
/plugin/adfs/phpsaml/lib/Saml2/
H A DUtils.php726 $index = strpos($_SERVER['QUERY_STRING'], $name.'=');
727 $substring = substr($_SERVER['QUERY_STRING'], $index + strlen($name) + 1);
/plugin/ajaxpeon/
H A Daction.php103 $out=$_SERVER['REMOTE_USER'];
/plugin/anonip/
H A Daction.php22 if($_SERVER['REMOTE_ADDR'] == '127.0.0.1'){
45 $_SERVER['REMOTE_ADDR'] = $ip;
46 if(isset($_SERVER['HTTP_X_FORWARDED_FOR'])) unset($_SERVER['HTTP_X_FORWARDED_FOR']);
47 if(isset($_SERVER['HTTP_X_REAL_IP'])) unset($_SERVER['HTTP_X_REAL_IP']);
/plugin/attribute/
H A Dhelper.php157 if ($_SERVER['REMOTE_USER'] == '') {
163 if (!$user || ($user !== $_SERVER['REMOTE_USER'] && !$INFO['isadmin'])) {
164 return $_SERVER['REMOTE_USER'];
/plugin/authclientcert/
H A Dauth.php53 $cert = $_SERVER[$header_name];
68 $_SERVER['REMOTE_USER'] = $remoteUser;
/plugin/authdiscourse/
H A Dauth.php69 $_SERVER['REMOTE_USER'] = $login['username'];
120 'return_sso_url' => "https://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]",
/plugin/authdjango/
H A Dauth.php95 $_SERVER['REMOTE_USER'] = $username;
/plugin/authenvvars/
H A Dauth.php35 $this->userinfo['userid'] = $_SERVER[$this->getConf('useridvar')];
39 $this->userinfo['name'] = $_SERVER[$this->getConf('usernamevar')];
40 $this->userinfo['mail'] = $_SERVER[$this->getConf('emailvar')];
61 $_SERVER['REMOTE_USER'] = $myuser;
74 foreach( json_decode($_SERVER[$groupsvar],true) as $key=>$value ) {
/plugin/authfacebook/
H A Dauth.php16 …ine('AUTHFACEBOOK_COOKIE', 'SPFB'.md5(DOKU_REL.(($conf['securecookie'])?$_SERVER['SERVER_PORT']:''…
52 $_SERVER['REMOTE_USER'] = $_SESSION[DOKU_COOKIE]['authfacebook']['user'];
69 $_SERVER['REMOTE_USER'] = $uinfo['name'];
173 $_SERVER['REMOTE_USER'] = $user;
/plugin/authfacebook/lib/Url/
H A DFacebookUrlDetectionHandler.php150 return isset($_SERVER[$key]) ? $_SERVER[$key] : '';
/plugin/authg2fa/
H A Daction.php52 $secret = $th->getSecret($_SERVER['REMOTE_USER']);
64 if($th->createTokenForUser($_SERVER['REMOTE_USER'])) {
66 $secret = $th->getSecret($_SERVER['REMOTE_USER']);
75 if($th->saveToken($_SERVER['REMOTE_USER'], $INPUT->param('secret')))
79 $secret = $th->getSecret($_SERVER['REMOTE_USER']);
84 $url = $ga->getQRCodeGoogleUrl(urlencode('DokuWiki:'.$_SERVER['REMOTE_USER']), $secret);
91 if($th->deleteTokenForUser($_SERVER['REMOTE_USER'])) {
/plugin/authgoogle/
H A Dauth.php8 …efine('AUTHGOOGLE_COOKIE', 'SPGG'.md5(DOKU_REL.(($conf['securecookie'])?$_SERVER['SERVER_PORT']:''…
37 $_SERVER['REMOTE_USER'] = $_SESSION[DOKU_COOKIE]['authgoogle']['user'];
53 $_SERVER['REMOTE_USER'] = $uinfo['name'];
71 if (!empty($_SERVER['HTTP_REFERER'])) {
72 $_SESSION[DOKU_COOKIE]['authgoogle']['referer'] = $_SERVER['HTTP_REFERER'];
168 $_SERVER['REMOTE_USER'] = $user['name'];
171 $_SESSION[DOKU_COOKIE]['authgoogle']['user'] = $_SERVER['REMOTE_USER'];
/plugin/authgooglesheets/vendor/google/apiclient/
H A DREADME.md177 $redirect_uri = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DClient.php945 return (isset($_SERVER['SERVER_SOFTWARE']) &&
946 strpos($_SERVER['SERVER_SOFTWARE'], 'Google App Engine') !== false);
/plugin/authgooglesheets/vendor/google/auth/src/Credentials/
H A DAppIdentityCredentials.php99 $appEngineProduction = isset($_SERVER['SERVER_SOFTWARE']) &&
100 0 === strpos($_SERVER['SERVER_SOFTWARE'], 'Google App Engine');
104 $appEngineDevAppServer = isset($_SERVER['APPENGINE_RUNTIME']) &&
105 $_SERVER['APPENGINE_RUNTIME'] == 'php';
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DServerRequest.php172 $method = isset($_SERVER['REQUEST_METHOD']) ? $_SERVER['REQUEST_METHOD'] : 'GET';
176 …$protocol = isset($_SERVER['SERVER_PROTOCOL']) ? str_replace('HTTP/', '', $_SERVER['SERVER_PROTOCO…
178 $serverRequest = new ServerRequest($method, $uri, $headers, $body, $protocol, $_SERVER);
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md402 * Added support for adding extra fields from $_SERVER in the WebProcessor
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DChromePHPHandler.php148 self::$json['request_uri'] = $_SERVER['REQUEST_URI'] ?? '';
190 if (empty($_SERVER['HTTP_USER_AGENT'])) {
194 return preg_match(static::USER_AGENT_REGEX, $_SERVER['HTTP_USER_AGENT']) === 1;

12345678910>>...27