silverblue Posted October 21, 2006 Share Posted October 21, 2006 hi all...so i install on my server this packbut there is one problem i cant resolve...each time i add a torrent with mulitple trackeri show me nothing 0 seed and 0 peersand i know that the file have many sources but still it show 0is there a way to make the script read mulitple tracker list???here is the script [code]// ALL VARS (i THINK)$upfile = $_FILES['torrent']['tmp_name'];$torrent = torrent_info_file($upfile);$tracker = strip_tags($torrent['announce']);$tracker = strip_tags(str_replace('announce', 'scrape', $tracker));$infohash = strip_tags($torrent['hash']);$stats = torrent_scrape_url($tracker, $torrent['hash']);$seeds = strip_tags($stats['seeds']);$peers = strip_tags($stats['peers']);$size = strip_tags($torrent['size']);$torrentname = trim(strip_tags($_POST['filename']));$subcat = strip_tags($_POST['type']);$description = strip_tags(trim($_POST['info']));$registration = strip_tags($_POST['reg']);$date = date('YmdHis');$updated = date('YmdHis');$maincat = mysql_query("SELECT catid FROM categories WHERE subid = '$subcat' LIMIT 1");$maincat = mysql_fetch_row($maincat);$maincat = $maincat[0];[/code]thank all[attachment deleted by admin] Link to comment https://forums.phpfreaks.com/topic/24675-help-in-x-tore-torrent-tracker/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.