Make WordPress Core

Opened 11 years ago

Closed 11 years ago

Last modified 11 years ago

#25298 closed defect (bug) (fixed)

SQL error preventing wp_signups table from being created on network install

Reported by: gradyetc's profile gradyetc Owned by: nacin's profile nacin
Milestone: 3.7 Priority: normal
Severity: critical Version: 3.7
Component: Database Keywords:
Focuses: Cc:

Description

Recent schema changes to the $ms_global_tables variable within /wp-admin/includes/schema.php are causing database errors when installing a network. The CREATE TABLE block for $wpdb->singups contains invalid SQL.

The resulting error:

WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'KEY user_login_email (user_login,user_email),\n  KEY domain_path (domain,path),\n)' at line 16 for query \nCREATE TABLE wp_signups (\n  signup_id bigint(20) NOT NULL auto_increment,\n  domain varchar(200) NOT NULL default '',\n  path varchar(100) NOT NULL default '',\n  title longtext NOT NULL,\n  user_login varchar(60) NOT NULL default '',\n  user_email varchar(100) NOT NULL default '',\n  registered datetime NOT NULL default '0000-00-00 00:00:00',\n  activated datetime NOT NULL default '0000-00-00 00:00:00',\n  active tinyint(1) NOT NULL default '0',\n  activation_key varchar(50) NOT NULL default '',\n  meta longtext,\n  PRIMARY KEY  (signup_id),\n  KEY activation_key (activation_key),\n  KEY user_email (user_email)\n  KEY user_login_email (user_login,user_email),\n  KEY domain_path (domain,path),\n) DEFAULT CHARACTER SET utf8 made by install_network, dbDelta

This error was introduced in [25179]. I've attached a patch against 25338.

Attachments (1)

25298.diff (535 bytes) - added by gradyetc 11 years ago.

Download all attachments as: .zip

Change History (4)

@gradyetc
11 years ago

#1 @nacin
11 years ago

  • Milestone changed from Awaiting Review to 3.7
  • Version changed from 3.6.1 to trunk

#2 @nacin
11 years ago

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

In 25413:

Fix comma placement in [25179].

props gradyetc.
see #15004, fixes #25298.

#3 @SergeyBiryukov
11 years ago

  • Version changed from trunk to 3.7
Note: See TracTickets for help on using tickets.