Jump to content

Recommended Posts

Posted

Change lines like this

 

CREATE TABLE `oxtb_accounts` (

`account_id` mediumint(9) NOT NULL,

`account_type` varchar(16) NOT NULL DEFAULT '',

`account_name` varchar(255) DEFAULT NULL

) ENGINE=InnoDB DEFAULT CHARSET=utf8;

 

to

 

CREATE TABLE `oxtb_accounts` (

`account_id` mediumint(9) NOT NULL,

`account_type` varchar(16) NOT NULL DEFAULT '',

`account_name` varchar(255) DEFAULT NULL

) ENGINE=MyISAM DEFAULT CHARSET=utf8;

Posted

Ok, I've updated my download to have that.

 

Is there a date for when the servers go back on to Read & Write?

Posted

We'll post it on the news here at helionet, facebook, and twitter. MyISAM tables are read/write already. Just InnoDB tables are read only.

Posted

Is there a way i can upload my backup with MyISAM or do i have to wait untill everything is back up?

Posted

Just create a new database, then go into PhpMyAdmin and import the edited .sql file. Then configure whatever software is using the database to use the new one instead.

Guest
This topic is now closed to further replies.
×
×
  • Create New...