Search results

  1. S

    [Bounty] Plugin to browse and download files

    Hmm right. Well I'd love that too for $200 haha, but I don't really have the skills to do it in ruTorrent.
  2. S

    Greek Translation of rutorrent

    Don't touch this. This is a names of variables from rtorrent.rc.
  3. S

    [BOUNTY][COMPLETED] Create symlink from drop down menu

    No. Because we can't make hardlink for a directory.
  4. S

    Show monthly traffic in bottom status bar

    Something like this: Code: <td class="statuscell"> <div class="stval" id="servertime"></div> </td> <!-- ^^existing --> <?php $bw=shell_exec("vnstat -m | grep \"`LC_ALL=C date +\"%b '%y\"`\" | awk '{print $9 $10}'"); ?> <td class="statuscell"> <div><center><?php print $bw; ?></center></div> </td>
  5. S

    Code to remove keys from tracker links

    It is just for display purposes
  6. S

    rtorrent restart script through webpage

    At first this is easy, if rTorrent client work on Web Server context, and all folders which use rtorrent configured for WebServer user. Another think: Write simple crontab task, which will do some actions if some "flag" is exists. Flag - can be a file with some custom name. This flag can...
  7. S

    Code to remove keys from tracker links

    Hello me and a friend made a little code to remove any secret keys from tracker links Row 791 in js/webui.js Code: var pattern = new RegExp("^https?://[a-z0-9]*\.?[a-z0-9\-]+\.[a-z0-9\:]+\/","i"); var resultat = pattern.exec(trk['name']); trk['name'] = resultat[0]; Maybe some dev want to...
  8. S

    rtorrent script

    Ah! It's funny that that never crossed my mind. That's why I posted for help to get some more eyes on it. Thanks for your suggestion and that's what I'll do.
  9. S

    Disabling http://retracker.local/ on torrent start

    Try to use svn version of ruTorrent, and check plugin 'retrackers'. It has option for automatic deletion of trackers.
  10. S

    How to identify a torrent that was loaded through XML-RPC

    Hi, This question is not related to rutorrent, but this seems to be pretty much the only place to ask question about it. I'm writing some PHP scripts to manage rtorrent and one of the things I'm doing is loading torrents. However, I'd like to set some custom variables on the torrents I loaded...
  11. S

    auto-start cron script

    BTW, env vars in cron are best set at the top of the crontab. Doing something like SIZE=${1:-95} also allows different thresholds, while still sharing the script.
  12. S

    auto-start cron script

    Just to confirm changing $USER to $LOGNAME works on my system. Most likely is something wrong on my setup, $USER and $LOGNAME should work...
  13. S

    Check if a torrent went into an error state

    I did a lot of searching and I can't seem to find anything that looks for an event when a torrent goes into an error state. Basically, I want to send myself notification via a simple shell script that triggers when a torrent enters an error state (example: it becomes unregistered on a tracker...
  14. S

    RSS Alerter

    Definitely. Code: exec("sh -c 'echo \"*** added ".$t."***\" >> /tmp/rss.log'"); What if $t contain char `"`? And `>`? Write your code correctly. See function escapeshellarg etc.
  15. S

    RSS Alerter

    You need to put your code into function checkFilters for this. Something like this (see comments inside): Code: public function checkFilters($rss,$info = null,$filters = null) { if($filters===null) { $filters = new rRSSFilterList()...
  16. S

    API?

    yea I give up on asking you guys that know it all. if I ever get this done at least no one can say I didnt do it all
  17. S

    API?

    Okay thanks for the info that the window mannagement is done in JS at least I found out I need to use this theDialogManager.make under plugin.onLangLoaded = function() , but what is the API on theDialogManager so I can use it right at least? seems ur not all that keen on helping someone thats...
  18. S

    API?

    Don't understand, what do you want. *All* UI in ruTorrent is written on JS. Include dialog/window system. If you don't know javascript - i can't help you with this
  19. S

    Is this possible? Rainmeter utorrent skin to work with rutorrent

    I'm curious if the utorrent skin that's in Geometer in Rainmeter could some how be tweaked or w/e to show the torrents I got in rutorrent on my network. Now it only works with utorrent webgui like this, [uTorrent] Measure=Plugin Plugin=Plugins\WebParser.dll UpdateRate=10...