Home
last modified time | relevance | path

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

/dokuwiki/conf/
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...]
H A Dusers.auth.php.dist9 # login:passwordhash:Real Name:email:groups,comma,separated
/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/inc/Remote/
H A DApiCore.php41 'core.login' => (new ApiCall([$this, 'login'], 'user'))->setPublic(),
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/
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
979 $login = trim($auth->cleanUser($INPUT->post->str('login')));
[all...]
H A Ddeprecated.php529 * @param string $login login name of the new user
536 public function send_register($login, $fullname, $email) {
539 return $subscriptionSender->sendRegister($login, $fullname, $email);
534 send_register($login, $fullname, $email) global() argument
/dokuwiki/inc/lang/da/
H A Dpwconfirm.txt3 Nogen har bedt om et nyt password til dit @TITLE@ login på @DOKUWIKIURL@
H A Dsubscr_list.txt10 For at stoppe notifikationer om sideændringer, login på wikien på
/dokuwiki/inc/lang/de/
H A Dpwconfirm.txt3 Jemand hat ein neues Passwort für Ihren @TITLE@ login auf @DOKUWIKIURL@ angefordert.
/dokuwiki/inc/lang/en/
H A Dpwconfirm.txt3 Someone requested a new password for your @TITLE@ login at @DOKUWIKIURL@
H A Dregister.txt3 Fill in all the information below to create a new account in this wiki. Make sure you supply a **valid e-mail address** - if you are not asked to enter a password here, a new one will be sent to that address. The login name should be a valid [[doku>pagename|pagename]].
/dokuwiki/inc/lang/fi/
H A Dpwconfirm.txt3 Joku pyysi uutta salasanaa login nimellesi @TITLE@ sivustolla @DOKUWIKIURL@
/dokuwiki/inc/lang/id/
H A Dlogin.txt3 Anda belum login! Masukkan data autentifikasi dibawah ini untuk masuk log (login). Cookies harus diaktifkan agar bisa login.
H A Dpwconfirm.txt3 Seseorang telah meminta password baru untuk @TITLE@ Anda login ke @DOKUWIKIURL@
H A Dregister.txt3 Isikan semua informasi dibawah ini untuk membuat account baru di wiki ini. Pastikan Anda telah mengisikan **alamat email yang valid**, karena password akan dikirim melalui email ini. Nama login harus sesuai dengan aturan [[doku>pagename|pagename]].
/dokuwiki/inc/lang/lb/
H A Dpwconfirm.txt3 Iergendeen huet e neit Passwuert fir däin @TITLE@ login op @DOKUWIKIURL@ gefrot
/dokuwiki/inc/lang/nl/
H A Dlogin.txt3 Je bent op dit moment niet ingelogd! Voer je login-gegevens hieronder in om in te loggen. Je browser moet cookies accepteren om in te kunnen loggen.
H A Dpwconfirm.txt3 Iemand heeft een nieuw wachtwoord aangevraagd voor je @TITLE@ login op @DOKUWIKIURL@
/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/lib/tpl/dokuwiki/css/
H A D_forms.css6 * - login
H A Ddesign.less77 .mode_login .action.login a,
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php133 * If "notification" is set as a context parameter the message code for successful login is
134 * NET_SSH2_MSG_USERAUTH_SUCCESS. For a failed login it's NET_SSH2_MSG_USERAUTH_FAILURE.
217 if (!$this->sftp->login($user, $pass)) {
223 if (!$this->sftp->login($user, $pass)) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH1.php
H A DSSH2.php14 * if (!$ssh->login('username', 'password')) {
30 * if (!$ssh->login('username', $key)) {
1125 * @see self::login()
2217 public function login($username, ...$args)
2257 throw new \UnexpectedValueException('A PublicKey object was passed to the login method instead of a PrivateKey object');
2475 // can we use keyboard-interactive authentication? if not then either the login is bad or the server employees
2761 // either the login is bad or the server employs multi-factor authentication
2994 throw new InsufficientSetupException('Operation disallowed prior to login()');
3151 throw new InsufficientSetupException('Operation disallowed prior to login()');
3212 throw new InsufficientSetupException('Operation disallowed prior to login()');
2237 function login($username) global() function in phpseclib\\Net\\SSH2
[all...]