Hi all of sudden my grafana page stopped loading tried clear browser cache, different browser restarting service and Switching OAM server ( HA) nothing helped getting below in console logs:
Could this be due to corrupt DB? Please advise
GET https://10.200.110.230:9000/public/build/grafana..css?v net::ERR_ABORTED 404 (Not Found)
DevTools failed to load SourceMap: Could not load content for https://10.200.110.230:9000/public/build/grafana.dark.css.map: Certificate error: net::ERR_CERT_AUTHORITY_INVALID
DevTools failed to load SourceMap: Could not load content for https://10.200.110.230:9000/public/build/manifest.4f5454f867a0cc2fe8dd.js.map: Certificate error: net::ERR_CERT_AUTHORITY_INVALID
DevTools failed to load SourceMap: Could not load content for https://10.200.110.230:9000/public/build/vendor.4f5454f867a0cc2fe8dd.js.map: Certificate error: net::ERR_CERT_AUTHORITY_INVALID
DevTools failed to load SourceMap: Could not load content for https://10.200.110.230:9000/public/build/app.4f5454f867a0cc2fe8dd.js.map: Certificate error: net::ERR_CERT_AUTHORITY_INVALID
login:1 Autofocus processing was blocked because a document already has a focused element.
login:102 GET https://10.200.110.230:9000/public/build/grafana..css?v net::ERR_ABORTED 404 (Not Found)
DevTools failed to load SourceMap: Could not load content for https://10.200.110.230:9000/public/build/0.4f5454f867a0cc2fe8dd.js.map: Certificate error: net::ERR_CERT_AUTHORITY_INVALID
Related
error mesage
When i open my proxy the error message in the image shows.
But if i close my proxy I get this error:
An unknown error occurred: User rejected certificate for github.com
(-17)
Flutter web project works smoothly when running directly into chrome from IDE, but after calling flutter build web, and hosting the built web app is not opening(only a blank page) and showing this error which is
Failed to load resource: the server responded with a status of 404 (Not Found)
main.dart.js:1
Failed to load resource: the server responded with a status of 404 (Not Found)
(index):1
Uncaught (in promise) TypeError: Failed to register a ServiceWorker for scope ('http://localhost:8080/') with script ('http://localhost:8080/flutter_service_worker.js'): A bad HTTP response code (404) was received when fetching the script.
Did you publish resources not /build/web but /web?
First of all don't publish /build/web just publish /web folder's resources.
If you are hosting it with github then goto index.html and then change
<base href="/">
to
<base href="/YourRepoName/">
This worked for me..
I'm using nginx locally on my laptop to "force" flutter to serve my page.
The simplest config that I needed:
server {
listen 8004;
server_name your-domain.local;
location / {
root /path/to/your/project/build/web;
try_files $uri /index.html;
}
}
That's enough, the page is working without any problems :)
I've tried to get my GitHub Pages up, but it's completely blank in my page, and the console errors were almost all about 400.
I've tried to change the homepage URL, but didn't work. Not sure what causes this.
My github page: https://shilibrad.github.io/monsters-rolodex/
https://github.com/shilibrad/monsters-rolodex
Errors:
Failed to load resource: the server responded with a status of 400 ()
2.8f03cf10.chunk.js:1
Failed to load resource: the server responded with a status of 400 ()
main.dd5c26f6.chunk.js:1
Failed to load resource: the server responded with a status of 400 ()
2.8f03cf10.chunk.js:1
Failed to load resource: the server responded with a status of 400 ()
main.dd5c26f6.chunk.js:1
Failed to load resource: the server responded with a status of 400 ()
shilibrad.github.io/monsters-rolodex/%PUBLIC_URL%/favicon.ico:1 Failed to load resource: the server responded with a status of 400 ()
manifest.json:1
Failed to load resource: the server responded with a status of 400 ()
manifest.json:1 Manifest: Line: 1, column: 1, Syntax error.
main.7444030a.chunk.css:1
Failed to load resource: the server responded with a status of 400 ()
Check if the issue persists:
there was a recent incident
the GitHub pages just had a feature rollout: "Build and deploy GitHub Pages from any branch "
Both might influences how the HTTP request is perceived by the GitHub server.
Make sure you have
configured a publication branch.
an index.html file to be read by default
As seen in the latest OP's commit, the paths were incorrect:
/monster-rolodex/...
# instead of
/monsters-rolodex/
ISSUE
I am unable to fetch my API routes in production mode and receiving an error of
VM15:1 GET https://movies-words-ts-86xlkq6rp.vercel.app/api/movies/tt5052448/words 502
Uncaught (in promise) Error: Request failed with status code 502
at LYNF.e.exports (fcae4559c849ad3f0939b7cca63449d545e4627d.d32ee7ae9c5841de2d98.js:1)
at Rn+g.e.exports (fcae4559c849ad3f0939b7cca63449d545e4627d.d32ee7ae9c5841de2d98.js:1)
at XMLHttpRequest.p.onreadystatechange (fcae4559c849ad3f0939b7cca63449d545e4627d.d32ee7ae9c5841de2d98.js:1)
Though everything works perfectly fine in development mode.
File information
api page
next.config.js
code from where I am calling the route, dict.tsx
After enabling SAML-authentication for Tableau Server. We get the below resources not found
vizportal/api/web/v1/getServerSettingsUnauthenticated 404 (Not Found)
vizportal/api/web/v1/getSessionInfo Failed to load resource: the server responded with a status of 404 (Not Found)