Questions tagged [shiny-server]

Shiny Server provides a platform on which you can host multiple Shiny applications on a single server, each with their own URL or port.

Shiny Server is a server program that makes Shiny applications available over the web.

Using Shiny Server, you can host multiple Shiny applications, as well as static web content, on a Linux server and make them available over the internet. You can specify what applications are available at what URL, or configure Shiny Server to let anyone with a user account on the server deploy their own Shiny applications.

1655 questions
3
votes
2 answers

Keep plots and input values when switching between tabs

I have a shinydashboard app with two different tab panels. Each tab has different input values and both of them generate a graph when an action button is clicked. Whenever I switch between these tabs, their respective graphs disappear and input…
3
votes
1 answer

Host multiple plumber API on shiny-server

I have shiny-server installed on my server and I want to run multiple plumber APIs from it. I have also R studio server, but with it I can run only 1 at the same time. Do you know a method to do this?
Alessio93
  • 85
  • 10
3
votes
1 answer

Trouble Deploying r shiny app with dygraphs

I'm currently attempting to deploy my R shiny app which uses the dygraphs package to shinyapps.io. My app works fine locally but when I try to deploy it says the webpage cannot be found - "HTTP 500 Internal Server Error". My UI code…
ASmith
  • 33
  • 4
3
votes
1 answer

PhantomJS not found on Shiny Server

I'm using plotly's export function to generate png graphs. I installed Shiny Server on an Ubuntu 14.04. It works on my local computer. It works when I open R from console on the server. However, when I run Shiny app on server, I get PhantomJS…
Sabri Karagönen
  • 2,212
  • 1
  • 14
  • 28
3
votes
1 answer

make shiny app UI dependent on URL parameter

I would like to create alternative UIs for my app depending on URL parameter. Specifically, I'd like to use the drop-down pickerInput from shinyWidgets instead of checkboxGroupInput, but only if parameter mini=TRUE is passed via the…
MonikaP
  • 147
  • 9
3
votes
0 answers

Need to host shiny app on the internal server(having no internet connectivity)

I am new to R. I build a shiny app on my local system and now want to host it on an internal server.I have installed shiny server on the server and copied my app into srv/shiny-server/app.R. Now I am not sure about the next step.Please…
mehakVT
  • 167
  • 1
  • 8
3
votes
0 answers

unexpected error after uploading Shiny App

I have a problem. I wrote app which works fine locally, but when I try to upload it on shiny server in Rstudio I have only one warning: Warning message: Error detecting locale: Error in read.table(file = file, header = header, sep = sep, quote =…
tomsu
  • 371
  • 2
  • 16
3
votes
1 answer

Is a shiny server simply a web server with "additional features"?

I am no expert when it comes to web servers so I was wondering: Is the shiny server simply a web server with some additional features necessary to host shiny apps? To put it differently: Can I do the things I do with a web server like Apache also…
Manuel R
  • 3,976
  • 4
  • 28
  • 41
3
votes
0 answers

display LaTeX formula in Shiny withMathJax not working ok, how to use local MathJax in Shiny?

I saw this post R/shiny + mathjax, not rendering math I have included withMathJax("$a+b$"), in my ui.R file to test LaTeX output but I'm obtaining just "$a+b$" instead of the rendered formula I also tried…
pachadotdev
  • 3,345
  • 6
  • 33
  • 60
3
votes
1 answer

User session is getting interrupted after approx. 45 seconds

I have the shiny application deployed on the Rshiny pro server(1.5.2). Application does some heavy computations and generates the report without any problem if it gets completed before approximately 45 seconds. If the computation and report…
Abhinandan Satpute
  • 2,558
  • 6
  • 25
  • 43
3
votes
2 answers

Radiant R not working on shiny server

As per given instruction on the website, I installed the Radiant package on Ubuntu server with the following command. install.packages("radiant", repos = "https://radiant-rstats.github.io/minicran/") Then cloned the repo from here and placed it in…
Vasim
  • 3,052
  • 3
  • 35
  • 56
3
votes
1 answer

host html pages on shiny-server

I have used a combination of shiny and rmarkdown to build a website, in which the shiny app makes the search feature filtering results from a large database. Every result is linked by name to a detailed page where more information is provided. In…
InverniE
  • 598
  • 1
  • 7
  • 21
3
votes
2 answers

Get inputs from Shiny UI app to the server on Submit or Action button

I have 15 select (input type) fields. And I need to pass it to the Server function do prediction and show resultant output. I don't want to auto-update, when user sets value for one input field, but instead I want user to set values for all (15…
3
votes
1 answer

Duplicate legend entries using plotly and Shiny server

I want to plot data in R, such that user can select which instances (which factor levels) to plot. I would like to do it using plotly and then host it using Shiny Server. The problem is that I am getting every legend entry repeated twice after I…
Nick To
  • 848
  • 8
  • 9
3
votes
3 answers

get response header variable in Shiny

My apache passes LDAP login to variable X-Remote-User in header: but I don't know how to get it in Shiny app. Any ideas? Maybe solution could be some java script?
Taz
  • 5,755
  • 6
  • 26
  • 63