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:
- Backup your data
- Remove the TYPO3 7 core as well the
composer.json
(and /vendor/
directory), .htaccess
and index.php
file from your website.
- Remove the content of
/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.
- Uninstall or downgrade all extensions which are only compatible with
TYPO3 7.x
.
- Set manual the
['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.
- Remove all array items from the array
['INSTALL']['wizardDone']
in /typo3conf/PackagesStates.php
.
- Set manual options such as
['FE']['activateContentAdapter']
back if needed.
- Put the
TYPO3 6.2
core back in it's place.
Now you're allowed to run TYPO3 again:
- Log in on the
install tool
by accessing /typo3/install/
.
- Run the
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.
- Run al steps from the
upgrade wizard
.
- Reactivate disabled extensions (manually).
- Check if the
['SYS']['compat_version']
is set to '6.2'
.
- Test your TYPO3 instance as good as you can.