View Single Post
  #12  
Old 24th March 2013, 16:55
Litago Litago is offline
Member
 
Join Date: Aug 2012
Norway
Posts: 10
Default
Quote:
Originally Posted by joeroberts View Post
try this one
Code:
CREATE TABLE `uploadapp` ( `id` int(10) unsigned NOT NULL auto_increment, `userid` int(10) NOT NULL default '0', `applied` datetime NOT NULL default '0000-00-00 00:00:00', `speed` varchar(20) NOT NULL default '', `offer` longtext NOT NULL, `reason` longtext NOT NULL, `sites` ENUM('yes', 'no') NOT NULL default 'no', `sitenames` varchar(150) NOT NULL default '', `scene` ENUM('yes', 'no') NOT NULL default 'no', `creating` ENUM('yes', 'no') NOT NULL default 'no', `seeding` ENUM('yes', 'no') NOT NULL default 'no', `connectable` ENUM('yes', 'no', 'pending') NOT NULL default 'pending', `status` ENUM('accepted', 'rejected', 'pending') NOT NULL default 'pending', `moderator` varchar(40) NOT NULL default '', `comment` varchar(200) NOT NULL default '', PRIMARY KEY (`id`), UNIQUE KEY `users` (`userid`) ) ENGINE=MyISAM AUTO_INCREMENT=1;

Thanks but still nothing changed in upload.php ( did edit to class 3 as it says in line 144



(Note: at line 144 of uploadapps.php you have to set the class = * to the number of the class your uploader class is.)
Reply With Quote