I have an app that runs fine locally; however, when I upload it to my personal server, none of the components rendered in the output
of server.R
are rendering. Even things as simple as output$test <- renderText({return("Test")})
are showing as blank. The ui.R
still reserves a place for these, and their divs are visible when I inspect the page.
Further, I added messages to the server.R
file, and none of them are logged (including message("Server on")
at the very top of the function).
I added options(shiny.trace = TRUE)
to the top of global.R
. When run locally, I get a number of SEND
messages. However, when run on the remote server, the only messages logged appear to be RECV
, e.g.:
SEND {"config":{"workerId":"","sessionId":"fe3f9f7f1fad0fbfe02847d7f19f9121","user":null}}
RECV {"method":"update","data":{"user":"fake"}}
SEND {"errors":[],"values":[],"inputMessages":[]}
RECV {"method":"update","data":{"password:shiny.password":"password"}}
RECV {"method":"update","data":{"login:shiny.action":1}}
The rest of the Shiny apps on this server appear to still be working, so I am at a loss. This previous discussion appears to have had a similar problem: "output" served by Shiny Server does not display on laptop However, there was no resolution. I tested this from my laptop (Chrome and Firefox) and phone (Chrome), and get the same result on both.