[[PageOutline]] = Creating Torrents = == Suggested Programs == * [http://azureus.sourceforge.net/ Azureus] * [http://www.utorrent.com/ µTorrent] * [http://krypt.dyndns.org:81/torrent/maketorrent/ MakeTorrent] == Announce URLs == Announce URLs specify what trackers a torrent will use. Create a torrent with the following announce URLs ||`http://bt.edwardk.info:6969/announce`||'''This must be first'''|| ||`!http://bt.edwardk.info:2710/announce`|| ||`!http://bt.edwardk.info:972/announce`|| ||`!http://bt.edwardk.info:4040/announce`|| ||`!http://bt.edwardk.info:676/announce`|| ||`!http://bt.edwardk.info:6767/announce`|| ||`!http://bt.edwardk.info:12891/announce`|| ||`!http://bt.edwardk.info:63124/announce`|| == Piece Size == Most torrent creation programs allow automatic selection of piece size, you should use that exists. If not, then `256KB/2^18` for `175MB` files is a good choice. For larger torrents, increase the piece size. `2MB/2048KB/2^21` or higher is a must for batch torrents. '''Torrents larger than `80KB` are not allowed.''' = 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. = Configuration File = You can edit the configuration file to your preferred options.[[BR]] See http://php.net/manual/en/language.types.string.php for how strings are to be handled.[[BR]] See http://php.net/manual/en/function.array.php for how arrays are to be handled.[[BR]] A text editor with syntax highlighting for PHP files can be very useful, such as [http://notepad-plus.sourceforge.net/ Notepad++]. = 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); ?> }}}