Make WordPress Core

Opened 18 years ago

Closed 18 years ago

#4380 closed defect (bug) (fixed)

New trunk (2.3) install produces table does not exist errors

Reported by: foolswisdom's profile foolswisdom Owned by:
Milestone: 2.3 Priority: normal
Severity: normal Version: 2.3
Component: Administration Keywords:
Focuses: Cc:

Description

New trunk (2.3) install produces table does not exist errors
ENV: WP / trunk r5616

Now we’re going to create the database tables and fill them with some default data.

WordPress database error: [Table 'wordpresstrunk.wp_categories' doesn't exist]
INSERT INTO wp_categories (cat_ID, cat_name, category_nicename, category_count, category_description) VALUES ('0', 'Uncategorized', 'uncategorized', '1', '')

WordPress database error: [Table 'wordpresstrunk.wp_categories' doesn't exist]
INSERT INTO wp_categories (cat_ID, cat_name, category_nicename, link_count, category_description) VALUES ('0', 'Blogroll', 'blogroll', '7', '')

WordPress database error: [Table 'wordpresstrunk.wp_link2cat' doesn't exist]
INSERT INTO wp_link2cat (`link_id`, `category_id`) VALUES (1, 2)

WordPress database error: [Table 'wordpresstrunk.wp_link2cat' doesn't exist]
INSERT INTO wp_link2cat (`link_id`, `category_id`) VALUES (2, 2)

WordPress database error: [Table 'wordpresstrunk.wp_link2cat' doesn't exist]
INSERT INTO wp_link2cat (`link_id`, `category_id`) VALUES (3, 2)

WordPress database error: [Table 'wordpresstrunk.wp_link2cat' doesn't exist]
INSERT INTO wp_link2cat (`link_id`, `category_id`) VALUES (4, 2)

WordPress database error: [Table 'wordpresstrunk.wp_link2cat' doesn't exist]
INSERT INTO wp_link2cat (`link_id`, `category_id`) VALUES (5, 2)

WordPress database error: [Table 'wordpresstrunk.wp_link2cat' doesn't exist]
INSERT INTO wp_link2cat (`link_id`, `category_id`) VALUES (6, 2)

WordPress database error: [Table 'wordpresstrunk.wp_link2cat' doesn't exist]
INSERT INTO wp_link2cat (`link_id`, `category_id`) VALUES (7, 2)

WordPress database error: [Table 'wordpresstrunk.wp_post2cat' doesn't exist]
INSERT INTO wp_post2cat (`rel_id`, `post_id`, `category_id`) VALUES (1, 1, 1)

Change History (4)

#1 @johnbillion
18 years ago

I think this has already been reported (by me hehe):
#4189 comment:74

#2 @ryan
18 years ago

(In [5621]) Use new term tables in wp_install_defaults(). see #4380, #4189

#3 @ryan
18 years ago

I haven't tested that yet, but it should get us going in the right direction.

#4 @foolswisdom
18 years ago

  • Resolution set to fixed
  • Status changed from new to closed

ENV: WP trunk r5655
Confirmed fixed.

Note: See TracTickets for help on using tickets.