bdecode($torrent_binary); $size = 0; $infohash = sha1($bencode->bencode($torrent["info"])); if(isset($torrent['info']['files']) && count($torrent['info']['files'])) { foreach($torrent['info']['files'] as $file) { $size += $file['length']; } } else { $size = $torrent['info']['length']; } $name = htmlspecialchars(stripslashes($_POST['name'])); $cat = intval($_POST['category']); if(!is_writable('data')) { echo 'Fix the data directory permissions'; } else { if(file_exists('data/' . $infohash . '.torrent')) { echo 'Torrent already added

'; } else { $handle = fopen('data/meta.txt', 'a'); fwrite($handle, $infohash . '`' . $cat . '`' . $size . '`' . $name . '`' . "\n"); fclose($handle); move_uploaded_file($_FILES['torrent']['tmp_name'], 'data/' . $infohash . '.torrent'); echo 'Uploaded: ' . $name . '(' . $infohash . ')

'; } } } } ?> Upload Torrent
Name:


Torrent:


Category:


Back To Yoursite - BT