:navigation-title: Administrator .. include:: /Includes.rst.txt .. _backend-users-admin: =========================== TYPO3 backend administrator =========================== Each administrator that uses the TYPO3 backend should have their own personal backend user account. This allows you to see who made which changes later on. The administrator account that was automatically created for you during `Installation `_ has the widest rights possible and is a System Maintainer. The System Maintainer is an Administrator who can also see and use the section `Admin Tools `_ in the backend. .. tip:: If your Backend User account does not seem to work for some reason, check chapter `Troubleshooting common TYPO3 backend login problems `_. .. contents:: Table of Contents :local: :depth: 1 .. _backend-users-admin-creation: Creating a TYPO3 backend administrator ====================================== There are 3 ways to create a new TYPO3 backend administrator: .. contents:: Table of Contents :local: :depth: 1 .. _backend-users-admin-cli: Create an administrator using a console command ----------------------------------------------- In DDEV or on a server if you can use the console there is a console command to create a new administrator: .. tabs:: .. group-tab:: DDEV .. code-block:: bash ddev typo3 backend:user:create .. group-tab:: On server .. code-block:: bash vendor/bin/typo3 backend:user:create When prompted answer that you want to create an administrator. If they should also be a system maintainer, answer yes during the prompt. .. _backend-users-admin-backend-module: Using the backend module "Backend Users" to create admins --------------------------------------------------------- The first administrator got created for you during `Installation `_. When you log into the backend (See `Backend login `_) you can go to module `Backend Users `_ and create a new administrator there. .. figure:: /Images/ManualScreenshots/BackendUser/CreateUser.png :alt: Screenshot of the "Backend Users" module demonstrating the location of the "Create new backend user" button in the module header Open the module :guilabel:`System > Backend Users` and click on "Create new backend user" When creating the user check the "Admin" option: .. figure:: /Images/ManualScreenshots/BackendUser/CreateAdmin.png :alt: The Admin option is the first option in the tab "General" in the backend user edit form When you check the Admin option the form needs to reload once. Answer the dialogue with "OK". You can :ref:`Grant System Maintainer rights ` in the Admin Tools later on. .. _backend-users-admin-install-tool: Using the Install Tool to create an administrator ------------------------------------------------- Access the Install Tool at `https://my-site.ddev.site/typo3/install.php` using the Install Tool password defined during the installation process. .. figure:: /Images/ManualScreenshots/BackendUser/InstallTool.png :alt: The Install Tool: Create Administrative User, Create new administrative users and grant them system maintainer privileges (optional). In the module "Maintenance" module use the button "Create Administrator". If they should be a System Maintainer check the box. .. _backend-users-system-maintainer: Granting System Maintainer rights ================================= .. note:: You must be logged in with a System Maintainer account or use the Install Tool to grant System Maintainer rights. In `Application context Development `_ all backend administrators can use the module. Using the module :guilabel:`Admin Tools > Settings` and card "Manage System Maintainers Access" you can manage which administrator accounts should be granted "System Maintainer" rights. .. figure:: /Images/ManualScreenshots/BackendUser/ManageSystemMaintainers.png :alt: "Manage System Maintainers" window in the Admin Tools. Disabled backend admins are marked with [DISABLED], you can choose them any way. On saving the changes are written to file :file:`config/system/settings.php` therefore this file needs to be writable. If your installation also has a file called :file:`config/system/additional.php` the settings can be overridden here. In this case changes you make in the Admin Tools do not take effect. A setting overriding the System Maintainer list could look like this: .. code-block:: php :caption: config/system/additional.php $GLOBALS['TYPO3_CONF_VARS']['SYS']['systemMaintainers'] => [ 1, 3, 42 ]; This setting is also documented in :ref:`systemMaintainers `.