kylewooten / transdroid

Automatically exported from code.google.com/p/transdroid
GNU General Public License v3.0
0 stars 0 forks source link

Incorrect values with rTorrent #474

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What happen?
All works fine (settings, infos, progressbar, etc.) but values (upload, 
download, ratio) are totally different from what's on my client. I can even see 
negative values.

What steps will reproduce the problem?
Setup rTorrent, setup nginx, setup transdroid, see negative numbers and 
incorrect values everywhere (screenshot as attachement).

What version of the product are you using?
1.1.14, but happen in earlier versions

What torrent client are you using?
rTorrent 0.8.6 (as packaged in Debian Squeeze)

Some conf (to show that nothing's weird) :
rtorrent (0.8.6)
----------------
scgi_port = 127.0.0.1:1042
directory = /path/to/my/folder/

nginx (1.2.7-1)
---------------
server
{
       listen 80;
       server_name server.localhost;
       root   /path/to/my/folder/;

       location /
         {
                scgi_pass       127.0.0.1:1042;
                include         scgi_params;
                scgi_param      SCRIPT_NAME  /RPC2;
         }
}

Original issue reported on code.google.com by enerhpoz...@gmail.com on 25 Apr 2013 at 4:51

Attachments:

GoogleCodeExporter commented 9 years ago
You need to use the i8 dialect of the rTorrent API, by adding this option
to your rtorrent.rc configuration file. However, I believe the Debian
package of rTorrent doesn't support this, so you might want to use a ppa or
compile yourself. I've added extensive instructions in the install guide on
www.trandroid.org

Original comment by erickok@gmail.com on 26 Apr 2013 at 7:53

GoogleCodeExporter commented 9 years ago

Original comment by erickok@gmail.com on 29 Apr 2013 at 10:43

GoogleCodeExporter commented 9 years ago
Oh, ok.

I made some search, a newer rtorrent version is available on squeeze-backports 
and it fix the problem (and wheezy is comming) :
http://packages.debian.org/squeeze-backports/rtorrent

Thanks for your advices,

Original comment by enerhpoz...@gmail.com on 29 Apr 2013 at 5:08