Search found 17 matches

by mantis006
November 10th, 2009, 2:22 am
Forum: Beta Releases
Topic: Sign up to become an Official SABnzbd Tester (Temporarily Closed)
Replies: 274
Views: 207556

Re: Sign up to become an Official SABnzbd Tester

I'm interested in testing.
Gentoo 64bit desktop and server and Fedora 12 beta 32 bit netbook.  I use chromium for both and am very interested in testing any sab+newzbin+chromium extensions that are in the works.
by mantis006
August 11th, 2008, 12:20 am
Forum: Feature Requests
Topic: Access control list for web interface
Replies: 3
Views: 6871

Re: Access control list for web interface

you can do this already with Apache.  Use apache's mod_proxy to forward requests and limit access to it. ProxyRequest Off <Proxy *>   Order deny,allow   Deny from all   Allow from somewhere.dyndns.org </Proxy> ProxyPass  /sabnzbd/  http://localhost:8080/sabnzbd/ ProxyPassReverse /sabnzbd/ http://loc...
by mantis006
August 4th, 2008, 8:26 am
Forum: General Help
Topic: SOLVED : Login from 2 computers
Replies: 2
Views: 2713

Re: Login from 2 computers (resolved)

might be best to mark this topic "resolved" in the header?
by mantis006
July 31st, 2008, 4:15 am
Forum: General Help
Topic: SSL not working
Replies: 3
Views: 3545

Re: SSL not working

UNS's SSL support sucked when they first adopted it so I can relate to that.  That extra delay could just be the typical overhead of adding SSL into the mix, or them trying to run SSL services on equipment not optimized for it (likely if it's a new service).  They'll probably advertise their SSL por...
by mantis006
July 31st, 2008, 4:12 am
Forum: General Help
Topic: Plush behind apache mod_proxy with authentication (ajax acts funny)
Replies: 0
Views: 2936

Plush behind apache mod_proxy with authentication (ajax acts funny)

So i have sabnzbd (with plush interface) running on the same box as my web server running Apache2 (with some extra modules like mod_proxy and pretty cool cookie+MySQL authentication system).  The system works great and offers authenticated only access to SABnzbd from afar that works with my existing...
by mantis006
July 30th, 2008, 11:20 am
Forum: General Help
Topic: SSL not working
Replies: 3
Views: 3545

Re: SSL not working

I checked real quick (on my way out atm) and couldn't find the SSL instructions on their NewsHosting's support page. I found this: http://forums.newsbin.com/viewtopic.php?p=136901 ; but didn't read the whole thing to see if they found out what the problem is.  I would suggest looking around their su...
by mantis006
July 28th, 2008, 11:14 am
Forum: Bug Reports
Topic: template inconsistency in 0.4.0
Replies: 17
Views: 13431

I have a working install method

I just posted my ebuild configuration for sabnzbd-0.4.2 here: http://forums.sabnzbd.org/index.php?topic=553.0 Shypike, I know you're not a fan of installing sabnzbd globally in python or watching others rip apart your brain child; however, it's an open source project.  People are going to use what y...
by mantis006
July 28th, 2008, 11:09 am
Forum: General Discussion
Topic: Working Gentoo Ebuild for sabnzbd-0.4.2
Replies: 6
Views: 10762

SUCCESS!

Hey guys, I just finished an ebuild for Gentoo's portage system with a modification of a super old setup.py script (0.2.7 i think).  It accomplishes much of what you guys are looking for as far as installation that is consistent with how other packages install. sabnzbd-0.4.2.ebuild (I follow rullerz...
by mantis006
July 28th, 2008, 1:31 am
Forum: Feature Requests
Topic: Variable refresh rate
Replies: 4
Views: 4260

Re: Variable refresh rate

I corrected my post above, the Prototype function is Ajax.PeriodicalUpdater() which takes a refresh delay and a decay value (decay is a multiplier for delay whenever the returned value is the same as last time). I'm not finding anything too useful for jquery as I'm not so familiar with it.  googling...
by mantis006
July 27th, 2008, 12:35 am
Forum: General Help
Topic: Clarkconnect 4.2 ~ SABnzbd Daemon
Replies: 3
Views: 5021

Re: Clarkconnect 4.2 ~ SABnzbd Daemon

for security reasons, I would *highly* recommend not using root for daemon processes.  If there were ever a way to execute arbitrary code or permissions were not set restrictvely enough on the code the daemon runs, it would be executed with root privileges. For a lot of gnu systems, we use a utility...
by mantis006
July 26th, 2008, 7:15 am
Forum: General Help
Topic: sabnzbd and apache2
Replies: 13
Views: 22897

Re: sabnzbd and apache2

The way I do it is by utilizing mod_proxy in apache.  I setup a vhost to handle a lot of my "LAN only services" like sab.  By doing this, you'll be able to utilize all those wonderful apache authentication and security modules (SSL, AUTH_MYSQL, etc) to really secure your sabnzbd web interf...
by mantis006
June 20th, 2008, 11:58 pm
Forum: Feature Requests
Topic: Variable refresh rate
Replies: 4
Views: 4260

Re: Variable refresh rate [Edit 7/28/2008]

This would suck without some javascript at work to do the refreshing.  The Prototype JS libraries offer an Ajax.Updater described here: http://www.prototypejs.org/api/ajax/updater.&nbsp; To sum it up: ajax.updater Ajax.PreiodicalUpdater will subscribe to a served file, and if it changes, reset t...
by mantis006
June 20th, 2008, 10:45 pm
Forum: General Discussion
Topic: Working Gentoo Ebuild for sabnzbd-0.4.2
Replies: 6
Views: 10762

Re: How I daemonized sabnzbd+ on Gentoo Linux this time [still needs work though]

As stated before, it would probably be best to use sabnzbd's system of shutting down instead.  I think the killing off of processes with start-stop-daemon will screw with anything that's currently being processed (most likely mess up post-processing).  You also have some variables declared in your i...
by mantis006
May 18th, 2008, 12:51 am
Forum: Feature Requests
Topic: SABnzbd and PID File under Linux
Replies: 24
Views: 20084

Re: SABnzbd and PID File under Linux

/var/run/* is a common place for PID files on gentoo as well. I've seem hamachi do what you're suggesting, creating a state file ( / etc/hamachi/state) that contains information about the running instance (username, identity, etc).  This info could then be easily parsed; however, I don't think /etc ...
by mantis006
April 28th, 2008, 8:50 pm
Forum: General Discussion
Topic: Working Gentoo Ebuild for sabnzbd-0.4.2
Replies: 6
Views: 10762

Re: How I daemonized sabnzbd+ on Gentoo Linux this time [still needs work though]

ok, i updated the init and conf scripts given in the first post to use curl to shutdown properly.
To generalize this for most users, I just made SAB_HOSTNAME=$HOSTNAME, which will most likely work; but, can be overrided easily in the conf.d script.

hope this is cleaner and more useful.