What are the steps to downgrade a typo3 site and is this even possible?
I cannot get a few plugins to work on my 7.4 typo site so I decided to downgrade but I cannot find anything about it on typo forums or in the documentation. Are there any steps I can follow if this is possible.
Before upgrading your website you should always backup
your data and avoid downgrading
at any time.
Compatibility mode for TYPO3 6.x
The system extension compatibility6
is shipped with TYPO3 7, have you tried installing this extension already?
See also: Retaining compatibility to TYPO3 CMS 6
Downgrading from 7.x back to 6.2
There is no such thing as a documentation with downgrade instructions. But if you have no other option than you can try the following:
Before running TYPO3 again:
composer.json
(and /vendor/
directory), .htaccess
and index.php
file from your website./typo3temp/
, /fileadmin/_processed/
and /fileadmin/_temp_/
.uninstall
all TYPO3 7 related (system) extensions by setting the state
to inactive
in the /typo3conf/PackagesStates.php
file.TYPO3 7.x
.['SYS']['compat_version']
in /typo3conf/LocalConfiguration.php
to '6.0'
(we let TYPO3 think that we are uograding from 6.0
. Please note that TYPO3 7 doesn't have this option anymore and you need to create it yourself.['INSTALL']['wizardDone']
in /typo3conf/PackagesStates.php
.['FE']['activateContentAdapter']
back if needed.TYPO3 6.2
core back in it's place.Now you're allowed to run TYPO3 again:
install tool
by accessing /typo3/install/
.database compare
but please don't remove fields
or tables
that belongs to extensions which you have temporary disabled for downgrading purposes.Clear all caches
from the install tool.upgrade wizard
.['SYS']['compat_version']
is set to '6.2'
.