Project

General

Profile

Actions

Bug #17935

closed

Installation misses key-definition of table pages and create of table fe_users

Added by Steffen Kamper over 16 years ago. Updated over 15 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2007-12-17
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
4.2
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

after setup (done with new install) these compare results are given:

ALTER TABLE pages DROP KEY parent;
ALTER TABLE pages ADD KEY parent (pid,sorting,deleted,hidden);

CREATE fe_users ...

I don't think that this concerns to new installer, so i report this here as seen with a fresh trunk version.

(issue imported from #M6998)


Files

bug_6998.diff (1.57 KB) bug_6998.diff Administrator Admin, 2008-05-09 22:09
Actions #1

Updated by Kasper Ligaard over 16 years ago

I also missed the fe_users table after upgrading using the new install tool.

Actions #2

Updated by Stig Nørgaard Færch over 16 years ago

I can also confirm that a fresh install of the latest TYPO3 4.2 trunk misses to create the fe_users table.

Actions #3

Updated by Steffen Müller almost 16 years ago

In 4.2.0, the fe_users table seems to be correct. But we still have the pages key problem:

ALTER TABLE pages DROP KEY parent;
ALTER TABLE pages ADD KEY parent (pid,sorting,deleted,hidden);

It might be because the 1-2-3-tool uses /t3lib/stddb/tables.sql with:
KEY parent (pid,sorting)
But the Database Analyser COMPARE uses typo3/sysext/cms/ext_tables.sql with:
KEY parent (pid,sorting,deleted,hidden)

Since /t3lib/stddb/tables.sql misses the 'hidden' column, changing the KEY value requires to add this column first.

I don't know if this is harmless - the applied patch adds this column and adjusts the KEY.

Actions #4

Updated by Steffen Müller over 15 years ago

Fixed in rev. 3765
Bug can be closed.

Actions #5

Updated by Christian Jul Jensen over 15 years ago

submitted to svn by ingmar in rev3765

Actions

Also available in: Atom PDF