---
title: "Installing Extensions - Classic mode"
manual: "TYPO3 Explained"
version: "13.4"
permalink: "https://docs.typo3.org/permalink/t3coreapi:extensions-legacy-management@13.4"
source: "Administration/ExtensionManagement/ClassicMode/Index.rst"
rendered: "2026-09-23T17:02:48+00:00"
---

# Installing Extensions - Classic mode {#extensions-legacy-management}

## Installing an Extension using the Extension Manager {#extension-install}

In the backend:

1.  Go to **Admin Tools > Extensions**
1.  In the Docheader, select **Get Extensions**
1.  Click **Update now**

    The button is on the top right.
1.  Enter the name of the extension in the search field
1.  Click on **Go**
1.  Click on the Action icon on the left for the extension:

    **Import and Install**

    Now the extension is installed, but not activated. To activate:
1.  Choose **Installed Extensions** in the Docheader
1.  Click on the icon with a **+** sign for your extension
    in the **A/D** column.

## Uninstall an Extension Without Composer {#uninstall-extension-without-composer}

If you installed TYPO3 via composer you should uninstall Extensions via composer.

### Check Dependencies {#uninstall-extension-without-composer-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)](https://extensions.typo3.org/). 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_emconf.php`](../../../ExtensionArchitecture/FileStructure/ExtEmconf.md#file-extension-ext-emconf-php) 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
`PackageStates.php` as a last resort, see
[Uninstalling an Extension Manually](https://docs.typo3.org/permalink/t3coreapi:uninstall-extension-manually@13.4)

> [!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 {#uninstall-extension-backend}

![](../../../Images/ManualScreenshots/ExtensionManager/UninstallExtension.png)

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 {#remove-extension-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 {#uninstall-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
`PackageStates.php`

1.  Open the file `typo3conf/PackageStates.php`
1.  Search for your ext_key in the array.

    **typo3conf/PackageStates.php**

    ```php
    'ext_key' => [
          'packagePath' => 'typo3conf/ext/ext_key/',
    ],
    //...
    ```
1.  Remove the entry.

### Removing an extension manually {#remove-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/ext/[extensionname]`. The
corresponding database tables can be removed in the
**Admin Tools > Maintenance > Analyze Database Structure**.
