Quote:
Originally Posted by sv1cec
Do you have a table pmtext_warned in your database?
|
Hi John how are you ? still a coffee addict ?

anyway i had to manually add that table vb3_pmtext_warned now it works fine
Code:
CREATE TABLE vb3_pmtext_warned (
`pmtextid` int(10) unsigned NOT NULL auto_increment,
`fromuserid` int(10) unsigned not null,
`fromusername` varchar(50),
`title` varchar(250),
`before_title` varchar(250),
`message` mediumtext,
`before_message` mediumtext,
`touserarray` mediumtext,
`dateline` int(10) unsigned,
PRIMARY KEY (`pmtextid`), key (`fromuserid`)
) TYPE=MyISAM;