ESP32
ESP32

Reputation: 8728

Typo3 V8: uninstall extensions manually

My Backend shows an error due to an incompatible extension. How can I uninstall it manually? In Typo3 V7 I could edit PackageStates.php like this:

    'myownext' => [
        'packagePath' => 'typo3conf/ext/myownext/',
        'state' => 'inactive',
    ],

But V8 removed all state keys - and it does not listen to this key if I add it manually. When I remove the whole entry from the file it is added again after refresh of the BE.

Upvotes: 1

Views: 2881

Answers (1)

Robert
Robert

Reputation: 592

TYPO3 8.7.19: If I remove an entry of an extension in PackageStates.php the extension is disabled. As example I disable powermail by removing the following entry:

'powermail' => [
    'packagePath' => 'typo3conf/ext/powermail/',
],

Don't forget to load the file PackageStates.php after editing again on the server-

Upvotes: 2

Related Questions