[[PageOutline]] = Creating Torrents = = Adding Torrents = To add a torrent, upload the torrent file to the FTP you were provided with. Torrents will show up only after they have been seeded or used. It will take less than 2 minutes for a torrent to be recognized after it's been uploaded. = Removing Torrents = To remove a torrent, delete the torrent file from the FTP you were provided with and check if you can see the torrent in the `/mirrors/` folder. Delete from there if required as well. = Setting Up Categories = Below is a sample configuration file. The easiest way to add a new category is to add: {{{ $i++; // Start next category $categories[$i]['heading'] = '

Some new category

'; $categories[$i]['wildcards'] = '*Some new category*'; $categories[$i]['name'] = 'Some new category'; }}} below the predefined categories. You can copy and paste this and only change the values. `$i++` will increase the number for you so you don't have to number it yourself. = Sample Configuration File = {{{ #!php Uncategorized'; $categories[$i]['wildcards'] = ''; $categories[$i]['name'] = 'Uncategorized'; $i++; // Start next category $categories[$i]['heading'] = '

New Torrents

'; $categories[$i]['wildcards'] = ''; $categories[$i]['name'] = 'New Torrents'; // End of user editable contents' define("CACHEFILE",'btcache.dat'); define("CACHETIME",120); ?> }}}