I've encountered this problem on one of my computers (I use two desktops and one laptop, all running Gentoo).
http://localhost:8100 either doesn't use CSS(?) to format the output, there are no tabs and the ui.R input panel is standard text and fields, no plots or tables are output. I have a "Download" button to download the table that I'm displaying and clicking on this results in "Could not connect to remote server"
My /etc/hosts has...
127.0.0.1 localhost morgan
...and I can ping localhost....
# ping localhost
PING localhost (127.0.0.1) 56(84) bytes of data.
64 bytes from localhost (127.0.0.1): icmp_seq=1 ttl=64 time=0.030 ms
64 bytes from localhost (127.0.0.1): icmp_seq=2 ttl=64 time=0.036 ms
I've noticed that after starting the server with runApp() it just reports "Listening on port 8100" and opens localhost:8100, but when I explicitly change this to
127.0.0.1:8100 in the R terminal I then see the loading of required packages that server.R does. Does this suggests that perhaps the server.R isn't being loaded correctly?
The same code runs fine and as expected on my two other computers.
Not a game stopper, but would be nice to runApp() and have the web-page open directly (is there a way to specify the address in runApp() (can't see the option in the current PDF documentation for 0.5.0?).
Cheers,
Neil