I received this error when I clicked on new account, error showed only in left column?: SQL error: download : ERROR: 1146 - Table 'autorespond.swd_account' doesn't existContent-Type: text/html; charset=ISO-8859-1 SQL error: INSERT INTO swd_account (`isact` , `name`) VALUES ('1' , 'download') : ERROR: 1146 - Table 'autorespond.swd_account' doesn't existStatus: 302 Moved Location: /cgi-bin/auto/responder.cgi?ses=FfPDoUr2ORy4OaL_r8_OomvJO&act=account
how can i solve this problem? I just installed and went here and clicked new account and this error popped up.
nevermind, problem solved with this: a. Log into phpmyadmin on your host
b. Click the database you created
c. Click MYQL
d. Paste the following 2 sets of commands separately inside RUN SQL QUERY input box:
>>>>>>>>
CREATE TABLE `swd_account` (
`pk_account` int(11) NOT NULL auto_increment,
`name` char(16) NOT NULL default '',
`isact` tinyint(4) NOT NULL default '1',
PRIMARY KEY (`pk_account`)
) TYPE=MyISAM;
>>>>>>>>
CREATE TABLE `swd_user` (
`pk_user` int(11) NOT NULL auto_increment,
`fk_account` int(11) NOT NULL default '0',
`email` varchar(40) NOT NULL default '',
`name` varchar(40) default NULL,
`isact` tinyint(4) NOT NULL default '1',
`datereg` date default NULL,
`days` tinyint(4) default '0',
`datelastsend` date default NULL,
`messlastsend` int(11) default NULL,
`countsend` int(11) NOT NULL default '0',
`undelivered` tinyint(4) default NULL,
PRIMARY KEY (`pk_user`),
KEY `fk_account` (`fk_account`,`email`,`isact`),
KEY `email` (`email`)
) TYPE=MyISAM;
vBulletin® v3.8.3, Copyright ©2000-2010, Jelsoft Enterprises Ltd.