Glad I could help..
As for your remote access problem:
- If you are having problems accessing Subsonic on a different computer on your local network (e.g. a computer that is connected to the same router as the computer that's serving Subsonic) then the firewall on the machine serving Subsonic is blocking connections. You should also make sure that Subsonic is listening on all network interface by setting the following in subsonic.bat
- Code: Select all
set SUBSONIC_HOST=0.0.0.0
Note that 127.0.0.1 is special IP address for use with the loopback device. It basically allows a computer to communicate with itself. So don't use this IP address if you're connecting to subsonic from a different computer. If you're trying to access Subsonic on your local network use the local IP address of the computer serving subsonic (e.g. 192.168.*.*). To find out what a computer's local IP address run the following in "Command Prompt" on the computer you wish to know the IP address off.
- Code: Select all
ipconfig /all
It'll be in the list produced somewhere.
- If you can access Subsonic on your local network but can't from another machine on the internet then there are several things that can cause this.
-- You might be trying to use the local IP address instead of your internet IP address. To connect to Subsonic running on your computer from outside the local network then traffic must go through your router. So you must use your router's internet IP and not your local IP. To find out what your router's IP address is visit
http://www.whatismyip.com/-- Port forwarding might not be setup on your router. See
http://www.portforward.com. Note there are two types of port forwarding manual and automatic (uPnP).
-- If you're trying to use a *.subsonic.org address that you've been assigned it maybe set to use the wrong address. To check run the following in "Command prompt"
- Code: Select all
nslookup yourdomain.subsonic.org
-- Your internet service provider may block you from receiving connections on port 80.