Search results

  1. D

    RSS Alerter

    This can't be true. See web-server errors log for errors in your code. Can't say something else, sorry.
  2. D

    RSS Alerter

    Well, it isn't working as well as I had thought. When I add a new filter in the RSS manager, I am alerted with the new torrents that match that filter. Unfortunately, any future matches to those filters do not result in me being alerted. Is this definitely the right place to be putting the...
  3. D

    API?

    All code is open - read it. And ask a concrete questions. Any sort of documentation doesn't exist at this moment. May be, i will write something in nearest future. On russian - i cant write such large texts on english.
  4. D

    Vbulletin User label Problem

    Was hopping someone might be able to give me some direction I'm stumpted Trying to create a plugin for vbulletin users to use rutorrent I have sucessfully made it check to see if vbull users are loged in if not direct them to a login script I have even added a button to the top menu for a...
  5. D

    Tracklabels mod - tracker favicons in list

    what i do is this: i check out a full trunk download: Code: svn co http://rutorrent.googlecode.com/svn/trunk then i remove the empty plugin directory in rutorrent/ and move the full one in. Code: cd trunk rm -r rutorrent/plugins mv plugins/ rutorrent/ mv rutorrent ../ cd ../ rm -r trunk/...
  6. D

    Tracklabels mod - tracker favicons in list

    Checking out the latest version from /var/www did the trick!
  7. D

    Tracklabels mod - tracker favicons in list

    Thanks, looks good the favicons Strangely enough I did not get it either. 3.1 was installed a while ago, and I regularly "svn up" however this change doesn't seem to have come through.
  8. D

    Tracklabels mod - tracker favicons in list

    um....this has been in rutorrent for at least 2-3 weeks...maybe a month
  9. D

    Unpack Plugin + .iso files??

    Which version of unrar you use?
  10. D

    Calling all nix gurus: Idea for package/addon semi-automated scripts

    rutorrent is amazing, we all know it. It is by far the best seedbox software around. It looks great, has amazing features and performs well. The biggest issue with rutorrent currently is setup. A good number of people who try it can't get it working easily and give up. Others get it working...
  11. D

    BOUNTY: irc auto downloader

    Okay point taken I'm just going to offer $40 on top of the existing requirements posted by wonslung. Brings total bounty to $80 any more contributors?
  12. D

    BOUNTY: irc auto downloader

    i think you should drop the last one. While it might be nice for some people most regex builders end up causing more problems than they help. don't take this as me not being appreciative for the bounty support =) I just think we need to think more in terms of version 1.0 and not version 3.0
  13. D

    Oblivion theme

    Scrollbar's colors may be changed in IE only.
  14. D

    Oblivion theme

    considering rutorrent is gplv3 AND considering he shared it innitially, that makes his theme ALSO gplv3 so you can do what you want with it provided it falls under the gpl which would include sharing it, or adding it to the main code base.
  15. D

    calling php file from plugin on new torrent event

    log - for javascript. toLog - for php. Attach here *all* plugins files.
  16. D

    calling php file from plugin on new torrent event

    1) You may use function toLog instead fopen/fwrite. Result must be writed to /tmp/error.log by default. 2) You must use something like that at start of test.php Code: if( chdir( dirname( __FILE__) ) ) { if( count( $argv ) > 2 ) $_SERVER['REMOTE_USER'] = $argv[2]; $hash =...
  17. D

    labels column

    No, if you make this by correct way. For example: Code: plugin.filterByLabel = theWebUI.filterByLabel; // save original handler theWebUI.filterByLabel = function(hash) { if(plugin.enabled) { // your code here } else plugin.filterByLabel.call(theWebUI,hash); //...
  18. D

    labels column

    if you guys can't tell, i'm kind of an organization fiend. thus, it's only natural that I make another plugin pertaining to labels. my previous plugin loaded all previous labels into a dropdown menu for easy access on new torrents, allowing me to easily manage a list of category/subcategory...
  19. D

    Login / Logout plugin/mod using web auth and captcha

    Dude, you're just wrong. There is no rule which says you must use .htaccess files, and it's even a second hand method in apache itself (it's better to use the apache config) Second of all, there is no rule which states you must mount SCGI on /RPC2 or make it available via any public ip. I...
  20. D

    Login / Logout plugin/mod using web auth and captcha

    As you can see, this is a not simple "data parser". ruTorrent in base configuration interact with rTorrent by two ways: 1) From php 2) From javascript. Second way is preffered, if you have a slow server. Some plugins (rpc, httprpc) disable it. As result: in your code you must check - js variable...