Thread: Ajax Chat
View Single Post
  #14  
Old 16th April 2010, 06:04
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
Quote:
Originally Posted by djblackout View Post
Error:
Code:
SQL query:     
               F EXISTS  `shoutbox` ;
 
      
       MySQL said: Click the image to open in full size. 
   #1064 - You have an error in your SQL syntax; check the manual that  corresponds to your MySQL server version for the right syntax to use  near 'F EXISTS `shoutbox`' at line 1
try to manualy delete shoutbox table if it exists then run
Code:
CREATE TABLE `shoutbox` (
  `id` smallint(6) NOT NULL auto_increment,
  `userid` smallint(6) NOT NULL default '0',
  `class` int(11) NOT NULL default '0',
  `username` varchar(25)  NOT NULL default '',
  `date` int(11) NOT NULL default '0',
  `text` text  NOT NULL,
  `orig_text` text  NOT NULL,
  `warned` enum('yes','no')  NOT NULL default 'no',
  `donor` enum('yes','no')  NOT NULL default 'no',
  `gender` enum('1','2','3')  NOT NULL default '1',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1118 ;
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote