Hello,
Does Transmission support DHT ?
Thanks
Search found 6 matches
- Thu Jan 15, 2009 7:12 am
- Forum: General
- Topic: Does Transmission support DHT ?
- Replies: 3
- Views: 12158
- Thu Jan 08, 2009 4:28 pm
- Forum: Web Interface
- Topic: Problem in PHP curl and the Transmission RPC
- Replies: 7
- Views: 13773
Re: Problem in PHP curl and the Transmission RPC
I solved the problem. Thank you for your help
- Thu Jan 08, 2009 4:27 am
- Forum: Web Interface
- Topic: Problem in PHP curl and the Transmission RPC
- Replies: 7
- Views: 13773
Re: Problem in PHP curl and the Transmission RPC
Thank you for your reply.
How to "post" a json object using PHP curl ?
How to "post" a json object using PHP curl ?
- Thu Jan 08, 2009 4:22 am
- Forum: Web Interface
- Topic: How to list all torrents by http request ?
- Replies: 8
- Views: 14768
Re: How to list all torrents by http request ?
?method=torrent-get&fields=name,status
where fields= contains any keys you wish to return. see the list of keys under 3.3 at the link you provided.
Hi,
I tried your URL (... transmission/rpc?method=torrent-get&fields=name,status), but it still returns error as below.
{
"arguments ...
where fields= contains any keys you wish to return. see the list of keys under 3.3 at the link you provided.
Hi,
I tried your URL (... transmission/rpc?method=torrent-get&fields=name,status), but it still returns error as below.
{
"arguments ...
- Wed Jan 07, 2009 4:42 pm
- Forum: Web Interface
- Topic: Problem in PHP curl and the Transmission RPC
- Replies: 7
- Views: 13773
Problem in PHP curl and the Transmission RPC
Hello,
I am trying to use PHP curl to send request to the Transmission RPC, but it only returns an error message to me.
My PHP code:
<?php
$a = array('method'=>'session-stats');
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://192.168.1.220:9091/transmission/rpc");
curl_setopt($ch ...
I am trying to use PHP curl to send request to the Transmission RPC, but it only returns an error message to me.
My PHP code:
<?php
$a = array('method'=>'session-stats');
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://192.168.1.220:9091/transmission/rpc");
curl_setopt($ch ...
- Tue Jan 06, 2009 2:23 pm
- Forum: Web Interface
- Topic: How to list all torrents by http request ?
- Replies: 8
- Views: 14768
How to list all torrents by http request ?
Hello,
I want to list all torrents by http request.
I have checked the RPC specification (http://trac.transmissionbt.com/browser/trunk/doc/rpc-spec.txt), but could not find the "list all torrents" method.
I tried this - http:// hostname:9091/transmission/rpc?method=torrent-get , but it returns ...
I want to list all torrents by http request.
I have checked the RPC specification (http://trac.transmissionbt.com/browser/trunk/doc/rpc-spec.txt), but could not find the "list all torrents" method.
I tried this - http:// hostname:9091/transmission/rpc?method=torrent-get , but it returns ...