Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Error when trying to create a group

Do you have phpMyAdmin running? Can you go to it or whatever Database admin program that your host gives you and then run the following command on your database?

CREATE TABLE wp_user_3_activity (
id int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
item_id int(11) NOT NULL,
secondary_item_id int(11),
user_id int(11) NOT NULL,
component_name varchar(75) NOT NULL,
component_action varchar(75) NOT NULL,
date_recorded datetime NOT NULL,
is_private tinyint(1) NOT NULL,
KEY item_id (item_id),
KEY user_id (user_id),
KEY is_private (is_private),
KEY component_name (component_name)
)

See if it will actually create the tables manually?

Skip to toolbar