adriengibrat / torrent-rw

php5 class to read and write .torrent files
GNU General Public License v3.0
320 stars 104 forks source link

Modify torrent doesn't work #49

Closed ghost closed 6 years ago

ghost commented 6 years ago

Hi there,

I'm not able to modify torrents at all.

require_once 'Torrent.php';

$torrent = new Torrent('test.torrent');

// modify torrent
$torrent->announce('http://alternate-torrent.tracker/announce'); // add a tracker
$torrent->comment('hello world');

This should modify the tracker and comment, but it does not work. I'm running PHP 5.5, with cURL enabled.

Any ideas?

ghost commented 6 years ago

I'm dumb.

Solved it by using: $torrent->save('test.torrent'); // save to disk