ERROR: [on_request_read] connection reset by peer

Dear Experts

I have a shiny app with 3 files:
ui (ui.R): User interface (Dashboard)
server (server.R): server side to process and manipulate the data read from (Global.R).
globals (globals.R): Retrieve the data to be processed by (server)

I run the shiny application using the following syntax:

library(shiny)
setwd("E:/Application file address/")
source('ui.R', local = TRUE)
source('server.R')
shinyApp(
ui,server
)
I got an error "ERROR: [on_request_read] connection reset by peer" and the viewer (browser) disappear

The Whole Files Available here in this link: Problem Shiny App
https://drive.google.com/open?id=19YCTlwFGghbS_etS269RJFMSBqKYz2t_

The session info is:

sessionInfo()
R version 3.4.3 (2017-11-30)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows >= 8 x64 (build 9200)

Matrix products: default

locale:
[1] LC_COLLATE=English_United States.1252 LC_CTYPE=English_United States.1252
[3] LC_MONETARY=English_United States.1252 LC_NUMERIC=C
[5] LC_TIME=English_United States.1252

attached base packages:
[1] stats graphics grDevices utils datasets methods base

other attached packages:
[1] bindrcpp_0.2 shinydashboard_0.6.1 shiny_1.0.5 tidyr_0.7.2 dplyr_0.7.4
[6] wordcloud2_0.2.0 SnowballC_0.5.1 tm_0.7-3 NLP_0.1-11 googleVis_0.6.2
[11] reshape_0.8.7 ggplot2_3.1.0 memoise_1.1.0 wordcloud_2.5 RColorBrewer_1.1-2
[16] stringr_1.2.0 RevoUtils_10.0.7 RevoUtilsMath_10.0.1

loaded via a namespace (and not attached):
[1] Rcpp_0.12.14 pillar_1.0.1 compiler_3.4.3 plyr_1.8.4 bindr_0.1 tools_3.4.3
[7] digest_0.6.13 jsonlite_1.5 tibble_1.4.1 gtable_0.2.0 pkgconfig_2.0.1 rlang_0.3.0.1
[13] yaml_2.1.16 parallel_3.4.3 withr_2.1.1 xml2_1.1.1 htmlwidgets_0.9 DT_0.2
[19] grid_3.4.3 glue_1.2.0 R6_2.2.2 purrr_0.2.4 magrittr_1.5 htmltools_0.3.6
[25] scales_0.5.0 codetools_0.2-15 rsconnect_0.8.5 assertthat_0.2.0 xtable_1.8-2 mime_0.5
[31] colorspace_1.3-2 httpuv_1.3.5 stringi_1.1.6 lazyeval_0.2.1 munsell_0.4.3 slam_0.1-42

Please Advice

Thank You In Advanced

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.