Thread: TBDevRU 3.2
View Single Post
  #33  
Old 14th December 2009, 10:27
Rendevous Rendevous is offline
Senior Member
 
Join Date: Nov 2009
Romania
Posts: 43
Default
Quote:
Originally Posted by duda View Post
Code:
ERROR


SQL Error
Table 'sharefile_lydo_org01.bans' doesn't exist

in /home/www/free/lydo.org/sharefile.lydo.org/include/bittorrent.php, line 151
add this in phpmyadmin

PHP Code:
CREATE TABLE IF NOT EXISTS `bans` (
  `
idint(10unsigned NOT NULL auto_increment,
  `
addeddatetime NOT NULL default '0000-00-00 00:00:00',
  `
addedbyint(10unsigned NOT NULL default '0',
  `
commentvarchar(255NOT NULL default '',
  `
firstint(11) default NULL,
  `
lastint(11) default NULL,
  
PRIMARY KEY  (`id`),
  
KEY `first_last` (`first`,`last`)
ENGINE=MyISAM  DEFAULT CHARSET=cp1251 AUTO_INCREMENT=
Reply With Quote