Anton - 2010-11-17 19:12:40
Hello.
I would like to create a torrent file from multiple http links without a tracker, it really viable?
I have a working torrent file is obtained with only one file, ie so works:
$array[] = ‘Z:\home\site.com\www\images\second.jpg’;
//Create a new torrent
$torrent = new Torrent( $array );
$torrent->url_list(array('http://site.com/images/first.jpg');
***
But so torrent is created, but downloading files if they are several, no longer goes:
$array[] = ‘Z:\home\site.com\www\images\first.jpg’;
$array[] = ‘Z:\home\site.com\www\images\second.jpg’;
//Create a new torrent
$torrent = new Torrent( $array );
$torrent->url_list(array('http://site.com/images/first.jpg','http://site.com/images/second.jpg’));