I have only installed Firebase, so the error occurs on the server.
Failed to load resource: the server responded with a status of 400 (Bad Request)
I don't understand how to work with it.
I am trying to use Tailwind with Codeigniter4 framework. I used the soft-ui-dashboard-tailwind-main . When I try to load the dashboard after copying the dashboard.html to my Views folder as dashboard.php and copying the assets folder to my public directory and changing all ../assets to <?= base_url('public'); ?>/assets .
The dashboard page loads but without the charts and with some errors when I check my browser Chrome's inspect:
Failed to load resource: the server responded with a status of 404 (Not Found)
perfect-scrollbar.css:1 Failed to load resource: the server responded with a status of 404 (Not Found)
tooltips.css:1 Failed to load resource: the server responded with a status of 404 (Not Found)
dropdown.js:1 Failed to load resource: the server responded with a status of 404 (Not Found)
sidenav-burger.js:1 Failed to load resource: the server responded with a status of 404 (Not Found)
navbar-sticky.js:1 Failed to load resource: the server responded with a status of 404 (Not Found)
chart-2.js:1 Failed to load resource: the server responded with a status of 404 (Not Found)
chart-1.js:1 Failed to load resource: the server responded with a status of 404 (Not Found)
tooltips.js:1 Failed to load resource: the server responded with a status of 404 (Not Found)
fixed-plugin.js:1 Failed to load resource: the server responded with a status of 404 (Not Found)
perfect-scrollbar.js:1 Failed to load resource: the server responded with a status of 404 (Not Found)
tooltips.css:1 Failed to load resource: the server responded with a status of 404 (Not Found)
perfect-scrollbar.css:1 Failed to load resource: the server responded with a status of 404 (Not Found)
However when I use view source and click on the links said in the errors it loads.
Failed to load resource: the server responded with a status of 404 (Not Found)
Cannot GET /
It is working fine but sometimes while running the angular application showing Cannot GET / in the browser
I have tried a lot of thing but I didn't accomplished when deploy on IIS my project it is not working properly such as modals besides It is working on localhost with these errors;
Failed to load resource: the server responded with a status of 404 (Not Found)
adminlte.min.css:1 Failed to load resource: the server responded with a status of 404 (Not Found)
bootstrap.bundle.min.js:1 Failed to load resource: the server responded with a status of 404 (Not Found)
jquery.dataTables.min.js:1 Failed to load resource: the server responded with a status of 404 (Not Found)
jquery.min.js:1 Failed to load resource: the server responded with a status of 404 (Not Found)
bootstrap.bundle.min.js:1 Failed to load resource: the server responded with a status of 404 (Not Found)
adminlte.min.js:1 Failed to load resource: the server responded with a status of 404 (Not Found)
bootstrap.bundle.min.js:1 Failed to load resource: the server responded with a status of 404 (Not Found)
jquery.dataTables.min.js:1 Failed to load resource: the server responded with a status of 404 (Not Found)
dataTables.bootstrap4.min.js:5
I have an app that I've uploaded to shinyapps.io, and I've been noticing some instability that I can't trace. The app has a bunch of different reactive inputs which call code to filter, calculate, and plot some data. Occasionally, a certain sequence of selecting these inputs causes the site to freeze and trigger a 500 Internal Server Error.
Strangely enough, when I execute the same commands on a locally-hosted (thru R) version of the app, I don't get an error.
It's a really booger to trace: any suggestions on what may be causing the problem and/or how to debug it better? I'm a javascript novice, so any help would be appreciated.
Full representative error log:
/opt/shiny-server/scripts/shiny-run: line 3: 32 Killed
/bin/bash --login -c "$SHINY_EXEC_COMMAND $SHINY_R_PATH $*"
Failed to load resource: the server responded with a status of 500 (Internal Server Error)
<<site#shinyapps.io>>/shared/bootstrap/css/bootstrap-responsive.min.css
Failed to load resource: the server responded with a status of 500 (Internal Server Error)
<<site#shinyapps.io>>/shared/bootstrap/css/bootstrap.min.css
Failed to load resource: the server responded with a status of 500 (Internal Server Error)
<<site#shinyapps.io>>/shared/font-awesome/css/font-awesome.min.css
Failed to load resource: the server responded with a status of 500 (Internal Server Error)
<<site#shinyapps.io>>/shared/datatables/css/DT_bootstrap.css
Alright-- it turns out the problem is actually very simple. The app was simply running out of memory.
In the error log, there was a line about processes being killed, which is indicative of not enough memory. You can access the error log with
ShinyApps::showLogs()
To fix the problem, you can bump up the memory available to the app with:
shinyapps::configureApp("APPNAME", size="xlarge")
where "APPNAME" is the name of the app. More info about memory is here: http://shiny.rstudio.com/articles/shinyapps.html
Thanks to the folks at RStudio for helping diagnose.