Home
last modified time | relevance | path

Searched refs:username (Results 51 – 75 of 248) sorted by path

12345678910

/plugin/authhttp/
H A DREADME45 For example, if you configure your Webserver to display the username/password
55 It merely checks that DokuWiki's idea of username/password equals the HTTP
79 feature is used). In this scenario, the username for registration should match
80 the HTTP authentication username. Also, the login form should be hidden
/plugin/authloginapi/
H A Dauth.php98 * @param string $username
101 protected function setUserSession($id, $username, $groups = array()) argument
107 $USERINFO['name'] = $username;
/plugin/authphpbb3/
H A Dauth.php128 * @param string $username Username to clean.
131 public function clean_username($username) { argument
132 $username = preg_replace('#(?:[\x00-\x1F\x7F]+|(?:\xC2[\x80-\x9F])+)#', '', $username);
133 $username = preg_replace('# {2,}#', ' ', $username);
134 $username = trim($username);
135 return strtolower($username);
/plugin/authradius/
H A Dmschap.php85 function ChallengeHash($challenge, $peerChallenge, $username) argument
87 return substr(pack('H*', hash('sha1', $peerChallenge . $challenge . $username)), 0, 8);
90 function GenerateNTResponse($challenge, $peerChallenge, $username, $password) argument
92 $challengeHash = ChallengeHash($challenge, $peerChallenge, $username);
/plugin/authremoteuser/
H A DREADME.md26 1. Enable an authentication system which sets (domain and) username in an
46 2. Determine your username:
57 username in `_SERVER[...]` whereby `...` is the variable name of your
/plugin/authsaml/
H A Daction.php70 $username = $this->saml->getUsername();
72 $user = $this->saml->getUserData($username);
75 if(!$this->saml->register_user($username)) {
80 $user = $this->saml->getUserData($username);
84 $this->saml->update_user($username);
86 $this->saml->login($username);
H A Dauth.php76 $username = $this->saml->getUsername();
77 $this->saml->login($username);
H A Dsaml.php164 function login($username) argument
174 $_SERVER['REMOTE_USER'] = $username;
176 $userData = $this->getUserData($username);
200 function register_user($username) { argument
202 $user = $username;
224 function update_user($username) { argument
303 function _saveUserData($username, $userData) { argument
306 $pattern = '/^' . $username . ':/';
324 $this->users[$username] = $userinfo;
363 $newuser = $username;
[all …]
/plugin/authshibboleth/plugin/authshibboleth/
H A Dauth.php380 $username = $authInfo['user'];
/plugin/authsmartcard/
H A DREADME.md10 …oe has is added to the dokuwiki user database by an administrator. His username is 'jdoe'. His g…
H A Dauth.php48 public function checkPass(&$username, &$password) { argument
52 …'smartcard_userdata']) && $_SESSION['smartcard_userdata']['username']==$username && md5($_SESSION[…
57 if($username=='smartcard'){
83 $username = $userdata['username'];
135 public function findUserByUsernameAndPassword($username, $password){ argument
136 $username = preg_replace('/[^\w\d\.-_]/', '', $username);
139 $userdata = $this->getUserData($username);
140 $userdata['username'] = $username;
/plugin/authsplit/
H A DREADME229 convert the username to either uppercase or lowercase (eg. when combining
/plugin/authucenter/
H A DREADME.md19 * In `Authentication` settings area, set superuser to your superadmin username in UCenter. Otherwis…
H A Dauth.php88 $username = '';
98 $_SERVER['REMOTE_USER'] = $username;
113 $username = $this->_convert_charset($username, 0);
114 if($password && $uid && $username){
179 list($uid, $username, $email) = $data;
181 'name' => $username,
407 * @param string $username the name of the user
410 function get_uid($username){ argument
412 if($data = $this->_uc_get_user($username)) {
448 private function _uc_user_login($username, $password){ argument
[all …]
/plugin/authucenter/lib/api/
H A Duc.php127 $username = $get['username'];
131 if($username) {
133 …uc_setcookie(DW_UC_COOKIE_NAME, authcode("$uid\t$password_e\t$username", 'ENCODE'), $cookietime, t…
/plugin/authucenter/lib/uc_client/
H A Dclient.php314 'username'=>$username,
400 function uc_user_checkname($username) { argument
401 return call_user_func(UC_API_FUNC, 'user', 'check_username', array('username'=>$username));
408 function uc_user_addprotected($username, $admin='') { argument
412 function uc_user_deleteprotected($username) { argument
421 function uc_get_user($username, $isuid=0) { argument
430 function uc_user_merge_remove($username) { argument
431 return call_user_func(UC_API_FUNC, 'user', 'merge_remove', array('username'=>$username));
439 function uc_user_logincheck($username, $ip) { argument
560 function uc_pm_blackls_add($uid, $username) { argument
[all …]
/plugin/authucenter/lib/uc_client/control/
H A Dfeed.php28 $username = $this->input('username');
48 …ERT INTO ".UC_DBTABLEPRE."feeds SET appid='$appid', icon='$icon', uid='$uid', username='$username',
H A Dpm.php353 $username = $this->input('username');
354 return $_ENV['pm']->update_blackls($this->user['uid'], $username, 1);
360 $username = $this->input('username');
361 return $_ENV['pm']->update_blackls($this->user['uid'], $username, 2);
H A Duser.php65 $username = $this->input('username');
84 $username = $this->input('username');
108 $username = $this->input('username');
149 $username = $this->input('username');
162 $username = $this->input('username');
203 $usernames = (array)$username;
204 foreach($usernames as $username) {
216 $usernames = (array)$username;
217 foreach($usernames as $username) {
245 function _check_username($username) { argument
[all …]
/plugin/authucenter/lib/uc_client/model/
H A Dpm.php760 function update_blackls($uid, $username, $action = 1) { argument
761 $username = !is_array($username) ? array($username) : $username;
763 if(!in_array('{ALL}', $username)) {
764 $usernames = $this->base->implode($username);
795 if(in_array($v, $username)) {
H A Duser.php31 function get_user_by_username($username) { argument
41 function check_username($username) { argument
43 $len = $this->dstrlen($username);
69 function check_mergeuser($username) { argument
74 function check_usernamecensor($username) { argument
80 if(($usernamereplaced != $username) || ($censorusername && preg_match($censorexp, $username))) {
87 function check_usernameexists($username) { argument
114 $sqladd = $username !== '' ? "AND username<>'$username'" : '';
235 $username = substr(md5($username), 8, 15);
244 if($row['ip'] === $username) {
[all …]
/plugin/authyubikey/lib/
H A DREADME56 two-factor mode. It requires a database to store the username and
/plugin/autlogin/
H A Dadmin.php126 if(!empty($_REQUEST['username'])){
127 $username=$_REQUEST['username'];
247 $username=$_REQUEST['username'];
949 global $username;
982 if(isset($username)){
983 $crit=$this->_find_visit($username);
985 $username.="2";
988 if(!isset($username))
991 $concr_alias = $username;
/plugin/autotweet/
H A Dtwitteroauth.php131 function getXAuthToken($username, $password) { argument
133 $parameters['x_auth_username'] = $username;
/plugin/botbouncer/
H A Daction.php53 $username = $_POST['login'];
57 $username = $_SESSION[DOKU_COOKIE]['auth']['info']['name'];
78 'username' => $username,

12345678910