[TYPO3-v4] Current master branch is broken?

Kay Strobach typo3 at kay-strobach.de
Tue Jun 28 11:09:38 CEST 2011


+1

Am 28.06.2011 11:09, schrieb Xavier Perseguers:
>>> Updating master branch gives lots of SQL errors about missing tables or
>>> non-existing columns in tables, all related to the caching framework
>>> (which I do not have enabled by the way). Install tool does not offer to
>>> create these tables. Effectively, upgrade from earlier versions is
>>> impossible to the current master branch.
>>
>> I agree! Just tried to delete all my caching tables, they are not
>> created automatically and are not suggested in the Install Tool.
> 
> After dropping all cachingframework tables, I had to manually create a
> few of them to be able to log in again:
> 
> CREATE TABLE cachingframework_cache_hash (
>   id int(11) unsigned NOT NULL auto_increment,
>   identifier varchar(128) DEFAULT '' NOT NULL,
>   crdate int(11) unsigned DEFAULT '0' NOT NULL,
>   content mediumblob,
>   lifetime int(11) unsigned DEFAULT '0' NOT NULL,
>   expires int(11) unsigned DEFAULT '0' NOT NULL,
>   PRIMARY KEY (id),
>   KEY cache_id (identifier)
> ) ENGINE=InnoDB;
> 
> CREATE TABLE cachingframework_cache_hash_tags (
>   id int(11) unsigned NOT NULL auto_increment,
>   identifier varchar(128) DEFAULT '' NOT NULL,
>   tag varchar(128) DEFAULT '' NOT NULL,
>   PRIMARY KEY (id),
>   KEY cache_id (identifier),
>   KEY cache_tag (tag)
> ) ENGINE=InnoDB;
> 


-- 
http://www.kay-strobach.de - Open Source Rocks

TYPO3 .... inspiring people to share!
Get involved: http://typo3.org


More information about the TYPO3-project-v4 mailing list