Installing Extensions - Legacy Guide
Installing an Extension using the Extension Manager
In the backend:
- Go to Admin Tools > Extensions
- In the Docheader, select Get Extensions
-
Click Update now
The button is on the top right.
- Enter the name of the extension in the search field
- Click on Go
-
Click on the Action icon on the left for the extension:
Import and Install
Now the extension is installed, but not activated. To activate:
- Choose Installed Extensions in the Docheader
- Click on the icon with a + sign for your extension in the A/D column.
Uninstall an Extension Without Composer
If you installed TYPO3 via composer you should uninstall Extensions via composer.
Check Dependencies
First find out, which other extensions and functions of your TYPO3 installation are dependent on the extension you want to uninstall. You can find out about the dependencies by checking the TYPO3 Extension Repository (TER). Look for the extension you want to uninstall and the others you have installed. Read in each extensions manual the sections 'Dependencies' and 'Reverse dependencies'.
Check whether any referrals have been made to the extension in any setup, config or other TypoScript files. Check if you included a plugin from the extension in your web site. Think of the results of removing them and finally do it.
If you are working locally or on a test server you might as well try to
uninstall the extension. The Extension Manager warns you about dependencies that
are written in an extensions ext_
constraints section.
Note however that you depend on the extensions developers faithfully noting
all dependencies in this config file.
If you get an exception and cannot access the Extension Manager anymore because
of it, you can uninstall / install extensions manually with
Package
as a last resort, see
Uninstalling an Extension Manually
Tip
Be sure not to uninstall extensions by trial and error on production systems, especially not under time pressure.
Uninstall / Deactivate Extension via TYPO3 Backend
Log into the TYPO3 Backend and open the module Admin tools > Extensions. From the menu choose Install extensions. You get an overview about installed extensions.
On the left side you see an icon, which shows the status of each extension, and what you can do:
- Extension Install Icon with plus sign: The extension is not installed. (Click once to install)
- Extension Uninstall Icon with minus sign: The extension is installed and running. (Click once to uninstall)
Next to the extension you want to uninstall click on Extension UnInstall Icon. After some seconds the icon changes to the grey Extension Install Icon.
Remove an Extension via the TYPO3 Backend
After successfully uninstalling an extension via the Extension Manager you can permanently remove the extension by clicking on the waste-basket symbol "Remove" beside the extensions entry in the Extension Manager.
Uninstalling an Extension Manually
At times an extension causes a problem and the TYPO3 Backend can not be opened anymore due to it. In such a case the extension can be uninstalled manually. This is not common practise but a last resort.
This can be done by removing the extensions configuration from the file
Package
- Open the file
typo3conf/
Package States. php -
Search for your ext_key in the array.
'ext_key' => [ 'packagePath' => 'typo3conf/ext/ext_key/', ], //...
Copied! - Remove the entry.
Removing an extension manually
Removing an extension manually is not common practice and should only be done
as a last resort. You should only remove an extension that you uninstalled
successfully. Make a backup first. Then you can permanently remove an extension
by removing its folder at typo3conf/
. The
corresponding database tables can be removed in the
Admin Tools > Maintenance > Analyze Database Structure.