ERROR: An error has occurred. Check your logs or contact the app author for clarification.
The only problem is I am the app author and have no clue what I did wrong or where to start to fix it
ERROR: An error has occurred. Check your logs or contact the app author for clarification.
The only problem is I am the app author and have no clue what I did wrong or where to start to fix it
Hi @Etomasetti! Welcome!
It looks like you found some of the info you'll need to fix the problem! The message in your screenshot indicates that on line 8 of your ui.R
file you are referencing a file path that leads outside of your project directory. You might want to take a look at this section of the shinyapps.io user guide to understand why that's a problem: http://docs.rstudio.com/shinyapps.io/Storage.html
So the simple answer is that you need to change the file path (and probably the location of the file!) that you're accessing on line 8 of ui.R
so that it is a relative path to somewhere inside your project directory. If it's not obvious how to make that work in your context, then I think you'll need to supply more information, such as:
ui.R
You might also want to read these references for advice on shiny debugging and how to find your application's logs:
The storage link held the key info. Thank you. My app is up and running and reacting as it should.
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.