[Typo3] Can't Login to BE after install

Dmitry Dulepov typo3 at fm-world.ru
Thu Nov 17 07:38:51 CET 2005


Hi!

John Crosby wrote:
> So it sound like a MySQL 5 issue...I'll try v4 and let you know. 

There is an issue with versions of MySQL new than 4.1.<something>. It is
incompatible with previous versions of MySQL in handling autoincrement
columns. For example, the following will work in earlier MySQL and will
not work in certail 4.1.x and 5th version:

  uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment,

it should be

  uid int(11) unsigned NOT NULL auto_increment,

because default values are not supported for auto_increment columns. May
be this is a problem.

Dmitry.



More information about the TYPO3-english mailing list