VueJS local not found in Chrome - google-chrome

When browsing to http://localhost:8080/ in chrome I get redirected to a bad request page, provided by the chrome browser. If I browse to the network url ie: http://192.168.1.1:8080/, then the chrome browser happily loads it.
The localhost url works fine in Firefox and in Edge.
Has anyone experienced this behaviour before and know how to fix it?

Check your chrome proxy settings and hosts file, also try the guest and private mode.
It might be a cookies problem

Related

Site opens up fine in mozilla but not chrome

so the problem i'm facing is the site works fine in firefox , and it even works fine while loaded on http in chrome, but when you switch to https it stops working and in network tab only returns the site url with 304 status and doesn't load anything, but then again when you switch to icognito mode in chrome it still works fine, i've already removed all my extensions and cleared my cache and site data and ...
but the problem still remains, the url for the site is below:
https://hichhop.com
http://hichhop.com
please test both urls in both chrome and firefox to get what i mean exactly,
thank you in advance.
On reloading the mentioned website and keeping an eye on the networks tab in developer mode , you can check that in normal mode , i.e. , not incognito one , the site crashes before the below warning comes whereas you can see the below warning in incognito mode .
Mixed Content: The page at '' was loaded over HTTPS, but requested an insecure element ''. This request was automatically upgraded to HTTPS, For more information see
You can read more about this warning and how to resolve it using below link :
https://www.thesslstore.com/blog/how-to-find-and-fix-mixed-content-warnings-on-https-sites/
FYI , in incognito mode , insensitive and mixed content isn't blocked by default leading to your site opening in it .
Works fine for me, I think this may be an issue with your Chrome and STS
Browse to chrome://net-internals/#hsts
Under Delete domain security policies type hichhop.com and click Delete
Browse to chrome://settings/clearBrowserData
Check Cached images and files and click Clear data

Website popup is blank for Chrome

Our application uses a popup window to show a report. This works in every browser except Chrome.
In Chrome the URL in the Network tab of the inspector has a blank response. I also see Chrome loading an inject.preload.js script from disk cache?
This exact same page works in Firefox and Safari as well. I haven't been able to check IE yet (i'm on a mac today).
What is this inject.preload.js script and why would Chrome not load a URL in a popup?
The exact same code running staging servers works, the popup loads just fine. In production it works everywhere except Chrome. Both staging and production use SSL, have the same config, etc.
I unfortunately can't link as its a secured site.
Inject.preload.js is generally some sort of adblocker. It could be the case that its acting up and blocking your popup. If it is the case, it would show as an icon to the right of the address bar.

Chrome trying to load http site over https

So we have a site that does not have an ssl certificate and normally loads fine over http (works in firefox, chrome canary, safari etc) but when loading the site on Chrome v 44 it cant find any of the resources because it is trying to serve them over https.
So the html loads but no styling or scripts etc.
We think this is happening after a chrome update. In the console, all the resources have this error
net::ERR_INSECURE_RESPONSE
If your site is in wordpress, I have the solution.
Just place
$_SERVER['HTTPS'] = false;
in your themes's functions.php.
At least it worked for me...
Maybe it is Chrome HSTS Chrome HSTS

Why can't I get to my router's admin & settings using Google Chrome browser

I'm trying to get to my router's admin console using Google Chrome but when I type the URL for it Chrome redirects to this page:
The image says "404 Not Found" and the redirected URL is: ".../cgi-bin/check_hijack.html"
I've tried clearing all my history attached to a 192.168.X.X URL, deleting all my saved passwords for those admin pages and IP addresses but none has worked so far.
I'm using a Mac and the interesting part is I can get to my router's admin console via Safari or Firefox but Google Chrome just won't work.
Any ideas?
Thanks for your help.
Which router do you have?
Try to use google chrome in anonymous window.
You can check if same protocol is used in the browsers ( it's the part in front of visible url - it is hidden in chrome (http, https, .... You can see it when you cpy-paste the url)

Custom Protocol blocked By Chrome Version 30

When I try to launch a custom protocol from https connection, Chrome version 30 is giving the following error.
[blocked] The page at https://something.com ran insecure content from custom-protocol://somethingelse.com/myapp
Chrome version 29 works fine.
Did anyone come across similar issue?
Is this a new issue/feature in chrome?
Appreciate any response.
Thanks in advance.
I did, and the problem was that I was using https to access the page, the link was in an iframe and most of all, the certificate used in the https was not trusted. After moving to https works fine.
And by the way, it was working in FireFox.
Hope it helps!