Reputation: 175
First of all, I am new to Typo3.
I installed Typo3 via composer ( version 9.5.1 ).
According to their documentation, in order to install an extension,I need to open ADMIN TOOLS > Extensions from the admin panel.
I can't find ADMIN TOOLS on my admin panel ( attached is a screenshot of my admin panel ). Please, can someone help me out? is there a configuration that is needed before ADMIN TOOLS appear in the admin panel?
Upvotes: 1
Views: 594
Reputation: 1085
Looks like you do not have the system maintainer permissions. Log in to typo3/install.php
and create a new administrator with system maintainer permissions.
There you should also be able to install / activate extensions.
Otherwise add the uid of your backend user to the list of systemMaintainers inside typo3conf/LocalConfiguration.php
: ['SYS']['systemMaintainers'] = [1],
Upvotes: 1