If you install transmission-daemon in Fedora 14 (in my case) and you put the url: http://ip:9091 in your browser you receive a 403 Forbidden page with information about rpc.whitelist.
The solution is the next:
- Stop Transmission-daemon: service transmission-daemon stop
- Edit the file /var/lib/transmission/.config/transmission/settings.json and change the option rpc-whitelist:
- Start transmssion-daemon: service transmission-daemon start
Original: “rpc-whitelist”: “127.0.0.1″
Modified: “rpc-whitelist”: “*.*.*.*”
Now you can access without user/pass to http://ip:9091 without problem.
