Try runninng the install_warn.php script again. In other words, point your browser to :
http://www.yourdomain.com/admincp/install_warn.php
That should create the table for you. If that fails, use the following query:
Code:
CREATE TABLE `bxhtptbr_vbforum.warn_notes` (
`wid` int(15) NOT NULL auto_increment,
`warned_user` int(15) NOT NULL default '0',
`warned_by` int(15) NOT NULL default '0',
`warned_time` int(15) NOT NULL default '0',
`warned_note` text NOT NULL,
`warned_post` int(15) NOT NULL default '0',
`warned_type` smallint NOT NULL default '1',
PRIMARY KEY (`wid`)
Please note that I've used the table prefix shown in your error messages above.
Let me know if that helps.