Search results

  1. L

    How to use rutorrent: RSS plugin

    slight amendment on my last question. i have 2 rules, dvd and xxx, both go into their separate folders. xxx > xxx & dvd > dvd i dont want xxx to be downloaded into the dvd dir so i set exclude /(xxx|jav)/ in my dvd rule, and /(720|1080|dvdr)/ in the xxx rule now it wont download anything with...
  2. L

    How to use rutorrent: RSS plugin

    Today Xirvik send me new Tornado seedbox (old one was 4XL-Storage) and on new box I have IRSSI but how to use it? I don't have root because it's semidedicated box (yes, I have root access on Seedplace and on seedbox4u with semidedicated box but on Xirvik i don't have it). Can I use that IRSSI...
  3. L

    How to use rutorrent: RSS plugin

    5555+ For You SoMUch!
  4. L

    How to use rutorrent: RSS plugin

    You're using a space. I've never used the RSS module, but if it's not removing dots or underscores, you should try something like this: *Conan*2011* and since you want the xvid release, *Conan*2011*XviD*
  5. L

    How to use rutorrent: RSS plugin

    it uses the php and the rtorrent process itself. The line he told you to add does the same thing as actually loading rtorrent in your browser. If you really wish to know more, add the execute.log to rtorrent.rc and you can see every command run via the rtorrent user.
  6. L

    How to use rutorrent: RSS plugin

    depends on the feeds. also make sure rutorrent/share/ has the write ownership/permissions
  7. L

    How to use rutorrent: RSS plugin

    Thanks a lot guys, this really helps
  8. L

    How to use rutorrent: RSS plugin

    So I kinda found the problem. --- sh -c '/usr/bin/php-cgi' '/var/www/rutorrent/plugins/rss/update.php' 'm0nst4r' & exit 0 --- --- Success --- PHP Notice: Undefined variable: argv in /var/www/rutorrent/plugins/rss/update.php on line 3 PHP Notice: Undefined variable: argv in...
  9. L

    How to use rutorrent: RSS plugin

    any time. This is why I'm here =)
  10. L

    How to use rutorrent: RSS plugin

    if you want it to download everything on the feed set your filter to: Code: /.*/i this works because the . (period) means "any character" and the * means "preceding item 0 or more times" so .* means "any characters match" The reason XXX.* isn't working is, it basically says "match XXX and...
  11. L

    Vbulletin User=Label Hack

    adding a button for the forums is simple. just check this: http://forums.rutorrent.org/index.php?topic=7.0
  12. L

    How to lock config or to remove config button within rutorrent webinterface for

    simple: dont give the user access via ssh to the dir which it is in: chroot them via ftp to a download dir outside of the dir with .rtorrent.rc use "access.ini" in rtuorrent/conf/ directory (or rutorrent/conf/users/USERNAME dir if you are using multiple users or webauth) and limit any...
  13. L

    Question/help with "on finished" command

    I'm trying to come up with a better way to download files automatically from my seedbox. In the past i've used rsync but this basically means i have to keep files in a non-sorted location until i decide to delete them from the seedbox as well, and i like to seed my torrents for a long time, so...
  14. L

    Remotely Send torrent from webbrowser to ruTorrent (uTorrent and wTorrent)

    This script installs in Chromium, but I have no way of getting the settings page because Chromium has only rudimentary Greasemonkey support. Uploaded with ImageShack.us Edit 1: This only works for public trackers (meaning no unique passkey). Pretty much useless to me.
  15. L

    Remotely Send torrent from webbrowser to ruTorrent (uTorrent and wTorrent)

    yes, this is nice. I'd eventually like to see a plugin for firefox and/or chrome which does the same thing. This is still very nice.
  16. L

    Keep track of when an item was last active

    Is this last_active column not something that could be added to the seedingtime plugin? It seems the logical place to add this additional variable.
  17. L

    Keep track of when an item was last active

    http://community.rutorrent.org/Recipe/Keep%20track%20of%20when%20an%20item%20was%20last%20active rutorrent, not rtorrent. maybe my bad for the OP. OK, so lets say I now have a new column in rutorrent using the plugin code. How do I put this last_active value into the column?
  18. L

    Keep track of when an item was last active

    1) I can't understand, for which reason you need such strange thing - 'last activity'. You already have ratio/per day/per week/per month for each torrent. And all traffic statistic (per day, month, year) for each torrent (plugin trafic). 2) If you want to add a new field to torrent's table...
  19. L

    rtorrent as a Service

    Probably there are tons of scripts like mine but i figured out to share my version of rtorrent Daemon, this been said in order to learn more about bash scripting any critics or constructive feedback is always welcomed. PS: This was made and tested in Debian environment. Code: #!/bin/sh ###...
  20. L

    Bounty: Torrent Info

    Ok Played an awfull lot with the code and came up with a solution Code: function getTorrentsInfo() { $req = new rXMLRPCRequest( new rXMLRPCCommand( "d.multicall", array( "", "d.get_hash=", "d.get_custom1=", "d.get_name=", "d.get_up_total=", "d.get_down_total="...