[TYPO3-english] Re: Error upgrading from 6.2 to 7.6

Marcel Rosenberger marcel at brutex.de
Thu Feb 15 09:42:17 CET 2018


The error means that you have values in the columns "image" and "media" which are incompatible with the new column definition.

You can execute the following directly to the database before running the update wizard again:

UPDATE pages SET media = '0' WHERE media IS NULL; 
UPDATE tt_content SET image = '0' WHERE image IS NULL; 
UPDATE tt_content SET media = '0' WHERE media IS NULL; 

This solved the error for me.

Regards
Marcel


More information about the TYPO3-english mailing list