Uploading an old WP SQL database
-
Im reuploading my WordPress MySQL database, but I’m having some trouble. When I click the upload link, I get this error message. I haven’t touched the file myself and it was working fine before, so I don’t know what could be wrong.
-- Table structure for tablewp_categorieswp_categories
--
CREATE TABLE(cat_ID
int( 4 ) NOT NULL AUTO_INCREMENT ,cat_name
varchar( 55 ) NOT NULL default '',category_nicename
varchar( 200 ) NOT NULL default '',category_description
text NOT NULL ,category_parent
int( 4 ) NOT NULL default '0',cat_ID
PRIMARY KEY () ,cat_name
UNIQUE KEY(cat_name) ,category_nicename
KEY(category_nicename)
) TYPE = MYISAMBefore when it was up it did tend to go offline once in a while, and on the main page I’d get an error like this:
Error establishing a database connection! This probably means that the connection information in your wp-config.php file is incorrect. Double check it and try again.But after a day or so it would fix itself and run fine. Can anybody help me?
The topic ‘Uploading an old WP SQL database’ is closed to new replies.