Home
last modified time | relevance | path

Searched +full:update +full:- +full:user +full:- +full:login -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 20 of 20) sorted by relevance

/dokuwiki/lib/plugins/authpdo/conf/
H A Ddefault.php11 $conf['user'] = '';
15 * statement to select a single user identified by its login name
17 * input: :user
18 * return: user, name, mail, (clear|hash), [uid], [*]
20 $conf['select-user'] = '';
25 * input: :user, :clear, :hash, [uid], [*]
28 $conf['check-pass'] = '';
31 * statement to select a single user identified by its login name
33 * input: :user, [uid]
36 $conf['select-user-groups'] = '';
[all …]
H A Dmetadata.php11 $meta['user'] = array('string', '_caution' => 'danger');
13 $meta['select-user'] = array('', '_caution' => 'danger');
14 $meta['check-pass'] = array('', '_caution' => 'danger');
15 $meta['select-user-groups'] = array('', '_caution' => 'danger');
16 $meta['select-groups'] = array('', '_caution' => 'danger');
17 $meta['insert-user'] = array('', '_caution' => 'danger');
18 $meta['delete-user'] = array('', '_caution' => 'danger');
19 $meta['list-users'] = array('', '_caution' => 'danger');
20 $meta['count-users'] = array('', '_caution' => 'danger');
21 $meta['update-user-info'] = array('', '_caution' => 'danger');
[all …]
/dokuwiki/lib/plugins/authpdo/_test/
H A Dsqlite.test.php34 … $this->markTestSkipped('skipping all authpdo tests for sqlite. Need PDO_sqlite extension');
36 $this->assertTrue(true); // avoid being marked as risky for having no assertion
41 $this->dbfile = tempnam('/tmp/', 'pluginpdo_test_');
42 copy(__DIR__ . '/test.sqlite3', $this->dbfile);
47 $conf['plugin']['authpdo']['dsn'] = 'sqlite:' . $this->dbfile;
48 $conf['plugin']['authpdo']['user'] = '';
51 …plugin']['authpdo']['select-user'] = 'SELECT id AS uid, login AS user, name, pass AS clear, mail F…
52 …$conf['plugin']['authpdo']['select-user-groups'] = 'SELECT * FROM member AS m, "group" AS g WHERE…
53 $conf['plugin']['authpdo']['select-groups'] = 'SELECT id AS gid, "group" FROM "group"';
55 …$conf['plugin']['authpdo']['insert-user'] = 'INSERT INTO user (login, pass, name, mail) VALUES (:u…
[all …]
/dokuwiki/lib/plugins/authpdo/_test/mysql/
H A Dmybb.php13 'select-user' => '
15 username AS user,
19 WHERE username = :user
21 'check-pass' => '
24 WHERE username = :user
27 'select-user-groups' => '
35 'select-groups' => '
39 'insert-user' => '
43 …VALUES (:user, :mail, @salt, MD5(CONCAT(MD5(@salt), MD5(:clear))), UNIX_TIMESTAMP() ) …
45 'delete-user' => '
[all …]
H A Dfluxbb.php3 …ion for fluxbb. They have a very simplistic model. There is no separate display name and a user can
10 'select-user' => '
12 username AS user,
17 WHERE username = :user
19 'select-user-groups' => '
25 'select-groups' => '
29 'insert-user' => '
32 VALUES (0, :user, :hash, :mail)
34 'delete-user' => '
38 'list-users' => '
[all …]
H A Dwordpress.php12 'select-user' => '
14 user_login AS user,
19 WHERE user_login = :user
21 'select-user-groups' => '
27 'select-groups' => '',
28 'insert-user' => '',
29 'delete-user' => '',
30 'list-users' => '
31 SELECT DISTINCT user_login AS user
36 AND U.user_login LIKE :user
[all …]
/dokuwiki/lib/plugins/authpdo/_test/pgsql/
H A Ddjango.php10 'select-user' => '
12 username AS "user",
17 WHERE username = :user
19 'select-user-groups' => '
25 'select-groups' => '
29 'insert-user' => '
32 …VALUES (:hash, false, :user, SPLIT_PART(:name,\' \',1), SPLIT_PART(:name,\' \',2), :mail, false, t…
34 'delete-user' => '
41 'list-users' => '
42 SELECT DISTINCT U.username AS "user"
[all …]
/dokuwiki/lib/plugins/authad/
H A Daction.php10 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
24 $controller->register_hook('AUTH_LOGIN_CHECK', 'BEFORE', $this, 'handleAuthLoginCheck');
25 $controller->register_hook('FORM_LOGIN_OUTPUT', 'BEFORE', $this, 'handleFormLoginOutput');
29 * Adds the selected domain as user postfix when attempting a login
42 if ($INPUT->str('dom')) {
43 $usr = $auth->cleanUser($event->data['user']);
44 $dom = $auth->getUserDomain($usr);
46 $usr = "$usr@" . $INPUT->str('dom');
48 $INPUT->post->set('u', $usr);
49 $event->data['user'] = $usr;
[all …]
/dokuwiki/conf/
H A Dmysql.conf.php.example10 * uid login pass firstname lastname email
27 $conf['plugin']['authmysql']['user'] = '';
51 /* Basic SQL statements for user authentication (required) */
56 * of the user. If the result table is empty or contains more than one
62 * %{user} user name
70 WHERE login='%{user}'
74 * information about one user. The field needed are:
76 * 'name' the user's full name
77 * 'mail' the user's email address
83 * %{user} user name
[all …]
H A Ddokuwiki.php22 $conf['license'] = 'cc-by-nc-sa'; //see conf/license.php
24 $conf['basedir'] = ''; //absolute dir from serveroot - blank for autodetection
25 $conf['baseurl'] = ''; //URL to server including protocol - blank for autodetect
26 $conf['cookiedir'] = ''; //path to use in cookies - blank for basedir
39 $conf['signature'] = ' --- //[[@MAIL@|@NAME@]] @DATE@//'; //signature see wiki page for details
40 $conf['showuseras'] = 'loginname'; // 'loginname' users login name
42 … // 'email' e-mail address (will be obfuscated as per mailguard)
43 … // 'email_link' e-mail address as a mailto: link (obfuscated)
56 $conf['autopasswd'] = 1; //autogenerate passwords and email them to user
59 $conf['defaultgroup']= 'user'; //Default groups new Users are added to
[all …]
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php10 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
33 $this->debugMsg('PDO extension for PHP not found.', -1, __LINE__);
34 $this->success = false;
38 if (!$this->getConf('dsn')) {
39 $this->debugMsg('No DSN specified', -1, __LINE__);
40 $this->success = false;
45 $this->pdo = new PDO(
46 $this->getConf('dsn'),
47 $this->getConf('user'),
48 conf_decodeString($this->getConf('pass')),
[all …]
/dokuwiki/inc/
H A Dauth.php6 * Including this file will automatically try to login
7 * a user by calling auth_login()
52 if ($INPUT->server->str('REMOTE_USER') === '') {
53 $INPUT->server->remove('REMOTE_USER');
59 foreach ($plugin_controller->getList('auth') as $plugin) {
61 $auth = $plugin_controller->load('auth', $plugin);
67 msg($lang['authtempfail'], -1);
71 if ($auth->success == false) {
72 // degrade to unauthenticated user
75 msg($lang['authtempfail'], -1);
[all …]
H A Dinfoutils.php19 define('DOKU_MESSAGEURL', 'https://update.dokuwiki.org/check/');
21 define('DOKU_MESSAGEURL', 'http://update.dokuwiki.org/check/');
43 if ($lm < time() - (60 * 60 * 24) || $lm < @filemtime(DOKU_INC . DOKU_SCRIPT)) {
53 $http->timeout = 12;
54 $resp = $http->get(DOKU_MESSAGEURL . $updateVersion);
57 // or it looks like one of our messages, not WiFi login or other interposed response
60 Logger::debug("checkUpdateMessages(): unexpected HTTP response received", $http->error);
94 $commitInfo = shell_exec("git log -1 --pretty=format:'%h %cd' --date=short");
102 // we cannot use git on the shell -- let's do it manually!
112 $packedRefs = file_get_contents(DOKU_INC . '.git/packed-refs');
[all …]
H A Dhtml.php20 use dokuwiki\Ui\Login; alias
33 define('SEC_EDIT_PATTERN', '#<!-- EDIT({.*?}) -->#');
54 return $xhtml_renderer->internallink($id, $name, $search, true, 'navigation');
63 * @deprecated 2020-07-18
67 dbg_deprecated(Login::class . '::show()');
68 (new Login($svg))->show();
75 * @deprecated 2020-07-18 not called anymore, see inc/Action/Denied::tplContent()
80 (new Denied())->showBanner();
195 * @param string[] $params key-value pairs added as hidden inputs
253 * @deprecated 2020-07-18
[all …]
H A Dtemplate.php120 $router->getAction()->tplContent();
123 msg(hsc($e->getMessage()), -1);
165 $toc = $plugin->getTOC();
191 $class = $INPUT->str('page');
203 if (!is_array($TOC)) $TOC = $plugin->getTOC(); //if TOC wasn't requested yet
205 $plugin->html();
208 $admin->show();
273 'crossorigin' => 'use-credentials' // See issue #4322
278 $styleIni = $styleUtil->cssStyleini();
282 'name' => 'theme-color',
[all …]
/dokuwiki/lib/plugins/authplain/
H A Dauth.php13 * @author Jan Schumann <js@schumann-it.com>
17 /** @var array user cache */
40 $this->success = false;
43 $this->cando['addUser'] = true;
44 $this->cando['delUser'] = true;
45 $this->cando['modLogin'] = true;
46 $this->cando['modPass'] = true;
47 $this->cando['modName'] = true;
48 $this->cando['modMail'] = true;
49 $this->cando['modGroups'] = true;
[all …]
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPUsers.php12 * Copyright (c) 2006-2012 Scott Barnett, Richard Hyland
29 * @subpackage User
31 * @copyright (c) 2006-2012 Scott Barnett, Richard Hyland
32 * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html LGPLv2.1
43 * USER FUNCTIONS
54 $this->adldap = $adldap;
58 * Validate a user's login credentials
60 * @param string $username A user's AD username
61 * @param string $password A user's AD password
66 return $this->adldap->authenticate($username, $password, $preventRebind);
[all …]
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dpostgresql.php4 * -----------
6 * Contributors: Leif Biberg Kristensen <leif_at_solumslekt_dot_org> 2010-05-03
14 * -------
16 * - First Release
19 * -------------------------
37 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
43 'COMMENT_SINGLE' => array(1 => '--'),
79 'LOCATION','LOCK','LOGIN','LOOP','MAPPING','MATCH','MAXVALUE',
103 'UPDATE','USER','USING','VACUUM','VALID','VALIDATOR','VALUE',
215 1 => 'color: #000000; font-weight: bold; text-transform: uppercase;',
[all …]
H A Dprogress.php4 * --------
13 * -------
15 * - First Release
18 * -------------------------
39 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
53 'BUFFER-COMPARE','BUFFER-COPY','CALL','CASE',
55 'CLOSE STORED-PROCEDURE','COLOR','COMPILE','CONNECT',
56 'CONSTRUCTOR','COPY-LOB','CREATE','CREATE ALIAS',
57 'CREATE BROWSE','CREATE BUFFER','CREATE CALL','CREATE CLIENT-PRINCIPAL',
58 'CREATE DATABASE','CREATE DATASET','CREATE DATA-SOURCE','CREATE QUERY',
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php4 * Pure-PHP implementation of SSHv2.
14 * if (!$ssh->login('username', 'password')) {
15 * exit('Login Failed');
18 * echo $ssh->exec('pwd');
19 * echo $ssh->exec('ls -la');
30 * if (!$ssh->login('username', $key)) {
31 * exit('Login Failed');
34 * echo $ssh->read('username@username:~$');
35 * $ssh->write("ls -la\n");
36 * echo $ssh->read('username@username:~$');
[all …]