Search results

  1. S

    Reconcile active torrents with download directory

    https://code.google.com/p/pyroscope/wiki/RtControlExamples#Automatic_stop_of_torrents_having_problems Doing the same in a rutorrent extension "just" needs someone to write the code.
  2. S

    Feature Suggestion/Request: "Last Active" Column, like in uTorrent

    uTorrent has a Last Active column that lets users know how long it has been since each torrent has been accessed -- i.e., since the last time that torrent has successfully sent or received a chunk. I typically have about 100-200 torrents running at any given time, and, when disk space is...
  3. S

    External IP in Title

    Hi, unfortunately my time is/was limited. I now tested it and think its really fine. Looks really great. Thx
  4. S

    External IP in Title

    I have two comments: 1) The ip-address from sebman produced simply an error. Since I couldn't figure out how this should work, I simply applied the solution from Stackoverflow. And thx to sebman sample this worked. So, this is somehow resolved 2) I tried to be clever and want to display the...
  5. S

    External IP in Title

    Just a minor remark: Checking the error.log from my web-server I see that I have install a lang-dir cause it wants to access de.js. Which I don't see a big problem to provide, although the translated text is not THAT important. PLUS a iplog.css file is missing as well. Doesn't sound big...
  6. S

    External IP in Title

    I've tried it and looks nice - but its not what I would would have expected from the title of this thread. It gives me the IP-address from where I'm connected - that is what you have described in your plugin description. But I was looking more or less about the external IP address from the...
  7. S

    External IP in Title

    @AceP1983: Just to be sure: That's a plugin which could be placed in a plugin-folder and that's it? Plus (just for understanding): shouldn't you try to get your ip-address from external? I mean, internal IP-address is 192.168.... but this doesn't mean I'm connected to the Internet. I wold be...
  8. S

    External IP in Title

    Hi, to be honest, I didn't test it, but sounds nice. Although I wonder if the title is *the* proper place. Alternatives would be the bar at the bottom. As a technical question: wouldn't it be sufficient to replace YOUR_SERVER.... with localhost? Plus the question remains, where do you place...
  9. S

    Download, Upload Status page in the titlebar and more.

    You have the full code in previous posts. Simply write a new plugin with the following files: 1) plugin.info (You can copy it from plugin 'rpc' and change the details) 2) init.js Code: plugin.updateStatus = theWebUI.updateStatus; theWebUI.updateStatus = function() { var self =...
  10. S

    Web UI DONE section background

    This may happens if you, for example, use non-standard third-party plugin. Try to disable all plugins (exclude donecolor, theme, and, may be rpc/httprpc) and check yet once.
  11. S

    Web UI DONE section background

    See attach. But should warn you - user color scheme is not good for all ruTorrent themes.
  12. S

    [BOUNTY] Unpack - delete archive option

    Sorry, but this is 1) Not so easy 2) Is a very specific 3) You can simply specify constant directory for unpacking and check options 'Add torrent name/label to the path' for solving your issue.
  13. S

    Assign label/ratio group/channel to RSS feed

    I love the RSS feed and autotools plugin. I can tell autotools to label by tracker and then leave the label for a specific rss filter empty to get a dynamic asignment but that feels a little bit limited today. I still have to assign a single ratio group and/or channel to an rss filter even...
  14. S

    RSS Manager - Download .torrent File to a Watch Directory

    Maybe even more flexible: do not use the RSS from ruT but use a different manner of grabbing feeds, saving torrents and manipulate them to your liking?
  15. S

    [BOUNTY] Simple rutorrent plugin to send name, path and label to shell script

    OK, what next? I need an access to your system for saying something. ruTorrent + SSH access. If this is not possible, then let's finish with this.
  16. S

    [BOUNTY] Simple rutorrent plugin to send name, path and label to shell script

    However, I have tested it both with the test.sh and also with the absolute path of my own script, and neither appear to even generate the log file (which is unhelpful, I know). You should check web-server's error log. Any ideas what it could be? For example, your forgot to set executable...
  17. S

    [BOUNTY] Simple rutorrent plugin to send name, path and label to shell script

    Check attach. Points. 1) Set full path to your script in the plugin's conf.php. By default plugin call script 'test.sh', this script simply print passed parameters to the file '/tmp/test.lst'. 2) You may run your command for several selected torrents. 3) If torrent wasn't opened since last...
  18. S

    Request: Easy way to add magnet links

    I often prefer to use magnet links. I found guidance somewhere that showed how to do it (Open "Add Torrent"; paste link into box "Torrent URL"). That works but is non-obvious as there is no ref to "magnet". --> Anyway, I'd like a toolbar button that would automatically add the magnet link I...