Home
last modified time | relevance | path

Searched +full:login -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 51) sorted by last modified time

123

/dokuwiki/lib/plugins/authpdo/
H A Dauth.php72 // can login names be changed?
74 ['select-user', 'select-user-groups', 'update-user-login']
270 $ok = $this->query($this->getConf('update-user-login'), $params);
/dokuwiki/inc/
H A Dtemplate.php1023 case 'login':
H A Dinfoutils.php57 // or it looks like one of our messages, not WiFi login or other interposed response
H A Dauth.php6 * Including this file will automatically try to login
73 // do the login either by cookie or provided credentials XXX
176 * Try a token login
178 * @return bool true if token login succeeded
241 * This tries to login the user based on the sent auth credentials
244 * a new login is assumed and user/password are checked. If they
258 * On a successful login $_SERVER[REMOTE_USER] and $USERINFO
283 //usual login
293 http_status(403, 'Login failed');
927 * @param string $user Login nam
[all...]
/dokuwiki/lib/tpl/dokuwiki/css/
H A D_forms.css6 * - login
/dokuwiki/inc/Menu/
H A DUserMenu.php14 protected $types = ['Profile', 'Admin', 'Register', 'Login'];
/dokuwiki/lib/plugins/usermanager/
H A Dcli.php32 $options->registerArgument('login', 'Username', true, 'add');
155 [$login, $mail, $name, $grps, $pass] = $args;
161 $pass = auth_pwgen($login);
174 if ($auth->triggerUserMod('create', [$login, $pass, $name, $mail, $grps])) {
/dokuwiki/conf/
H A Dusers.auth.php.dist9 # login:passwordhash:Real Name:email:groups,comma,separated
H A Dmysql.conf.php.example10 * uid login pass firstname lastname email
70 WHERE login='%{user}'
87 WHERE login='%{user}'";
101 AND u.login='%{user}'";
107 /* This statement should return a table containing all user login names
113 * The login name will be accessed as 'user' to an alias might be necessary.
116 * %{user} in FilterLogin user's login name
121 $conf['plugin']['authmysql']['getUsers'] = "SELECT DISTINCT login AS user
125 $conf['plugin']['authmysql']['FilterLogin'] = "login LIKE '%{user}'";
129 $conf['plugin']['authmysql']['SortOrder'] = "ORDER BY login";
[all...]
/dokuwiki/data/pages/wiki/
H A Dwelcome.txt20 Once you're comfortable with creating and editing pages you might want to have a look at the [[this>doku.php?do=admin&page=config|configuration settings]] (be sure to login as superuser first).
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingAuthtype.php55 msg('Authentication system changed. Please re-login.');
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Djava5.php941 93 => 'http://docs.oracle.com/javase/7/docs/api/javax/security/auth/login/{FNAME}.html',
H A Dpostgresql.php79 'LOCATION','LOCK','LOGIN','LOOP','MAPPING','MATCH','MAXVALUE',
H A Dproftpd.php260 'LOGIN',
H A Dprogress.php330 'LOGIN-EXPIRATION-TIMESTAMP','LOGIN-HOST','LOGIN-STATE','LOG-THRESHOLD',
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH1.php
H A DSSH2.php14 * if (!$ssh->login('username', 'password')) {
15 * exit('Login Failed');
30 * if (!$ssh->login('username', $key)) {
31 * exit('Login Failed');
1125 * @see self::login()
2208 * Login
2217 public function login($username, ...$args)
2237 * Login Helper function in phpseclib\\Net\\SSH2
2257 throw new \UnexpectedValueException('A PublicKey object was passed to the login method instead of a PrivateKey object');
2330 * Login Helpe
[all...]
/dokuwiki/inc/Remote/
H A DApi.php26 * 'public' => 1/0 - method bypass default group check (used by login)
H A DApiCore.php41 'core.login' => (new ApiCall([$this, 'login'], 'user'))->setPublic(),
123 * Login
125 * This will use the given credentials and attempt to login the user. This will set the
132 * @return int If the login was successful
134 public function login($user, $pass)
143 @session_start(); // reopen session for login
1033 public function login($user, $pass) global() function in dokuwiki\\Remote\\ApiCore
/dokuwiki/inc/Subscriptions/
H A DRegistrationSubscriptionSender.php10 * @param string $login login name of the new user
18 public function sendRegister($login, $fullname, $email)
26 'NEWUSER' => $login,
34 $login,
19 sendRegister($login, $fullname, $email) global() argument
/dokuwiki/inc/Ui/
H A DUserProfile.php87 $input = $form->addTextInput('login', $lang['user'])
H A DUserRegister.php34 // create the login form
41 $input = $form->addTextInput('login', $lang['user'])->attrs($base_attrs)->addClass('edit')
42 ->val($INPUT->post->str('login'));
H A DUserResendPwd.php90 $input = $form->addTextInput('login', $lang['user'])->addClass('edit');
/dokuwiki/inc/Action/
H A DDenied.php5 use dokuwiki\Ui\Login;
33 if (empty($INPUT->server->str('REMOTE_USER')) && actionOK('login')) {
34 (new Login())->show();
H A DLogin.php9 * Class Login
11 * The login form. Actual logins are handled in inc/auth.php
15 class Login extends AbstractAclAction class
37 (new Ui\Login())->show();

123