View Single Post
  #1  
Old 1st May 2009, 15:09
sammygo sammygo is offline
Senior Member
 
Join Date: May 2008
P2P
Posts: 141
Default Request to be Uploader
SQL :
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`)
) TYPE=MyISAM AUTO_INCREMENT=1;
The .php files are attached (uploadapp.php and uploadapps.php).
(Note: at line 144 of uploadapps.php you have to set the class = * to the number of the class your uploader class is.)


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


Click image for larger version

Name:	ss1.PNG
Views:	349
Size:	19.7 KB
ID:	1317 Click image for larger version

Name:	ss2.PNG
Views:	238
Size:	8.2 KB
ID:	1318


You need :
uploadapp.php
uploadapps.php

Thanks to ScarS @ tbdev.net for this mod :X
Attached Files
File Type: php uploadapp.php (5.3 KB, 311 views)
File Type: php uploadapps.php (9.7 KB, 265 views)

Last edited by sammygo; 1st May 2009 at 16:02.
Reply With Quote
The Following 6 Users Say Thank You to sammygo For This Useful Post:
bicolor (28th November 2009), biotox (8th April 2010), coko (13th April 2010), FENIX (28th January 2013), Komlok (13th February 2010), nicukent (9th May 2010)