Hello,
I've been strugling with this as well.
Just to make sure you did things right to the following:
Using bash:
Code: Select all
[user@yoshi ~]$ TRANSMISSION_WEB_HOME="/usr/local/share/transmission/web/"
[user@yoshi ~]$ export TRANSMISSION_WEB_HOME
Next make sure that your web folder is readable by the user under which transmission will run.
After an update I noticed permission were set to 700 and user/group to root:wheel
I set it to 755 as it hold no sensitive information:
Code: Select all
[root@yoshi ~]# chmod -R 755 /usr/local/share/transmission/web/
Then start transmission daemon. Be sure to include any IP-address you'll be connection from to the command line (or config file?)
Code: Select all
[user@yoshi ~]$ /usr/local/bin/transmission-daemon -a 127.0.0.1,192.168.0.* -w /<download_folder>
Then to test things go to http://<ip-address>:9091
You could ofcourse add these actions to a shell script, but as you neved need to repeat these step (since FreeBSD is never rebooted

) I'm too lazy to do so.
Good luck!