Ajout d'infos sur les utilisateurs

This commit is contained in:
Gregory Colpart 2024-02-27 10:12:43 +01:00
parent fb9dea708a
commit ec6ff8791c

View file

@ -372,7 +372,6 @@ $ drush -l test1 updatedb
~~~
## Optimisation
* Drupal 7 : <https://www.drupal.org/docs/7/managing-site-performance-and-scalability/optimizing-drupal-to-load-faster-server-mysql>
@ -477,6 +476,19 @@ SecRule ARGS_GET_NAMES|ARGS_POST_NAMES|REQUEST_COOKIES_NAMES "^#" "t:none,log,de
La solution est de créer un dossier `config/sync` a la racine du projet, avec des droits d'écritures pour le serveur web.
### Gestion des utilisateurs
~~~
MariaDB> select * from users,users_field_data where users.uid=users_field_data.uid;
+-----+--------------------------------------+----------+-----+----------+--------------------+--------------------------+--------+---------+-------------------+----------+--------+------------+------------+------------+------------+------------------+------------------+
| uid | uuid | langcode | uid | langcode | preferred_langcode | preferred_admin_langcode | name | pass | mail | timezone | status | created | changed | access | login | init | default_langcode |
+-----+--------------------------------------+----------+-----+----------+--------------------+--------------------------+--------+---------+-------------------+----------+--------+------------+------------+------------+------------+------------------+------------------+
| 0 | 0b713940-204b-41c3-93aa-2380aa773d70 | en | 0 | en | en | NULL | | NULL | NULL | | 0 | 1708703180 | 1708703180 | 0 | 0 | NULL | 1 |
| 1 | b2f79d0b-638c-4d45-927c-f196e33417e2 | en | 1 | en | en | NULL | admin | $2y$... | admin@example.com | UTC | 1 | 1708955952 | 1708956585 | 1708956573 | 1708956573 | init@example.com | 1 |
+-----+--------------------------------------+----------+-----+----------+--------------------+--------------------------+--------+---------+-------------------+----------+--------+------------+------------+------------+------------+------------------+------------------+
~~~
## FAQ
### The website encountered an unexpected error. Please try again later