Home
last modified time | relevance | path

Searched refs:login (Results 26 – 50 of 208) sorted by path

123456789

/plugin/authnc/
H A DREADME.md15 * ~The login form throws a `failure 998` invalid syntax, see [this](https://www.freedesktop.org/wik…
19 * [x] Only allow login for enabled users
20 * allow only specific groups to login
/plugin/authremoteuser/
H A DREADME.md65 3. In your *DokuWiki* login as superuser, click *Admin*, choose
84 5. Reload your *DokuWiki* installation. Your login should be automatically
104 able to login using their (hopefully yet known) password. All other users can
/plugin/authsaml/
H A Daction.php86 $this->saml->login($username);
H A Dauth.php77 $this->saml->login($username);
H A Dsaml.php164 function login($username) function in saml_handler
/plugin/authshibboleth/
H A DREADME.md24 * includes an action plugin to handle login actions
/plugin/authsmartcard/
H A DREADME.md42 …ep, you'll need to edit your main wiki login page (YOUR_DOKUWIKI_INSTALLATION/inc/lang/YOUR_CHOSEN…
/plugin/authsplit/
H A DREADME15 - a PRIMARY auth plugin that will be used for VALIDATION of login names and
53 - checkPass(): this is DokuWiki's method that validates login names and
55 validates both login name and password successfully. If a user is not known
73 be known there by the same login name, too. If not, behaviour depends on the
127 - for login names, real names and email addresses, authsplit will try to
154 restrictions on login names.
189 - login names and passwords would come from authplain, ie. stored in the
222 validate login names and passwords. An example candidate is my authhttp
/plugin/authsqlite/
H A DREADME.md22 WHERE u.login=\'%{user}\'
26 FROM user WHERE login=\'%{user}\'';
31 AND g.gid = ug.gid AND u.login=\'%{user}\'';
33 'SELECT DISTINCT u.login AS user FROM user AS u
36 $conf['plugin']['authsqlite']['FilterLogin'] = 'u.login LIKE \'%{user}\'';
40 $conf['plugin']['authsqlite']['SortOrder'] = 'ORDER BY u.login';
42 'INSERT INTO user (login, pass, email, fullname)
50 'SELECT uid AS id FROM user WHERE login=\'%{user}\'';
54 $conf['plugin']['authsqlite']['UpdateLogin'] = 'login=\'%{user}\'';
H A Dauth.sql3 login text not null, field
7 unique(login),
/plugin/authucenter/
H A DREADME.md19 …o your superadmin username in UCenter. Otherwise, you will not be able to login to DokuWiki's Admi…
/plugin/authvk/
H A Dauth.php58 $login = $collection->findOne(array('name' => $user));
59 if ($login == null) return false;
61 if ($login['password'] != sha1($login['_id'] . $pass)) {
66 $USERINFO['name'] = $login['name'];
67 $USERINFO['mail'] = $login['email'];
68 $USERINFO['grps'] = $login['name'] == 'Admin' ? array('admin','user'): array( 'user');
70 $_SERVER['REMOTE_USER'] = $login['name'];
/plugin/authwordpress/
H A Dauth.php282 $login = $row['user_login'];
285 if (isset($this->users[$login])) {
286 return $this->users[$login];
296 'user' => $login,
303 $this->users[$login] = $info;
347 * @param string $user login
/plugin/authyubikey/
H A DREADME.md16 After that, you have to login into your Dokuwiki as an administrator. At first
H A Dauth.php.org383 * @param string $user User login
/plugin/autlogin/
H A Daction.php77 if(empty($_SERVER['REMOTE_USER'])) // if isn't somebody login continue
H A Dadmin.php49 return 'Automatic login';
/plugin/bez/meta/
H A DTpl.php62 public function user_name($login=false) { argument
63 if (!$login) {
64 $login = $this->current_user();
66 $name = $this->action->get_model()->userFactory->get_user_full_name($login);
68 return $login;
73 public function user_email($login=false) { argument
74 if (!$login) {
75 $login = $this->current_user();
77 return $this->action->get_model()->userFactory->get_user_email($login);
/plugin/blextra/
H A Dhelper.php50 'type' => 'login',
/plugin/blogtng/action/
H A Dedit.php386 $login = $this->entryhelper->entry['login'];
387 if(!$login) $login = p_get_metadata($ID, 'user');
388 if(!$login) $login = $INPUT->server->str('REMOTE_USER');
391 if($login) {
393 $userdata = $auth->getUserData($login);
408 'login' => $login,
409 'author' => ($userdata) ? $userdata['name'] : $login,
H A Dpagedata.php48 $login = $this->entryhelper->entry['login'];
49 if(!$login) $login = $data['current']['user'];
50 if(!$login) $login = $INPUT->server->str('REMOTE_USER');
53 if($login){
55 $userdata = $auth->getUserData($login);
71 'login' => $login,
72 'author' => $userdata ? $userdata['name'] : $login,
/plugin/blogtng/db/
H A Dupdate0001.sql10 login, field
H A Dupdate0004.sql53 login, field
57 SELECT pid, page, title, blog, image, created, lastmod, author, login, email
71 login, field
81 SELECT pid, page, title, blog, image, created, lastmod, author, login, email, 1
H A Dupdate0005.sql11 login, field
15 SELECT pid, page, title, blog, image, created, lastmod, author, login, mail
29 login, field
39 SELECT pid, page, title, blog, image, created, lastmod, author, login, mail, 'enabled'
/plugin/bugzillaint/docs/
H A Dbugzillaint.txt110 * ''assigned_to'' - shows assigne login name, links to a list of all bugs assigned to the person

123456789