Remove password check, how do I do it?

dsouvik215

Member
May 25, 2018
896
0
16
Hello!

How do I remove the password check when logging into rutorrent, I would love a verison of it where I don't have to login as I'm the only person able to access the PC I wanna run it on, atleast for the time being and having to login is a pain.

Thanks
 

das329717

Member
May 25, 2018
928
0
16
Rutorrent has no login mechanism. You need to edit your web server's configuration.
As you have not provided any info I can't help you any more than this.
 

jith45

Member
May 25, 2018
960
0
16
Quote from: gijsyo on July 22, 2011, 04:42:24 pm
Rutorrent has no login mechanism. You need to edit your web server's configuration.
As you have not provided any info I can't help you any more than this.​


Its as gijsyo says its all Apache/webserver that "manages" the access to the rutorrent, altho i understand your point i generally dont recommend you to remove the password from rutorrent, especially if you have an wireless network or other ppl in your network. Even if so if you really want to remove this all you have to do is in your apache config remove the content of location tag (or comment it) and add the following:
Code:
<location /webpath/rutorrent>
Order deny,allow
Allow from all
</location>
This will unlock completely the access to rutorrent from all incoming requests, its possible however to limit access to the location from 1 especific host for example:
Code:
<location /webpath/rutorrent>
Order deny,allow
Deny from all
Allow from 127.0.0.1
</location>
this will DENY all request except all coming from the IP Address 127.0.0.1 (witch is an loopback ip address). More information read this http://httpd.apache.org/docs/2.2/howto/access.html

Other Option is to use an service like LastPass that will insert automatically the password for you when ever you access that URL (you just need to press OK)