I am trying to up my website in zoom hosting. Whenever I run my app, all my css and js is not working when I checked my inspect element it shows these errors "Failed to load resource: net::ERR_PROXY_CONNECTION_FAILED"
Question: How can I fix this error? Is the .htaccess also the same with the localhost that I am using?
If you are using Chrome as browser Check Network Tab to see what file failed to get downloaded.
IN Chrome to get to the network tab from the menu select More tools/Developer tool and then Network tab.
Usually, you will see a resource name, such as a picture or icon or image.
If you use IE9+ you can click on F12, or click Developer Tools on the Debug menu and look at Network Tab.
Related
These websites were working before and suddenly after a restart of my AWS Workspaces these websites are returning below error on all browsers. I have re-installed IIS and also deleted the files from C:\inetpub\history. When i run the same website from Visual Studio it works but the url would be like http://localhost:29740.
This site can’t be reachedThe webpage at http://localhost/xxx might be temporarily down or it may have moved permanently to a new web address.
ERR_CONNECTION_ABORTED
Are you using chrome browser? there are many reasons for this error, such as the website or service you are trying to access does not support the SSLv3 protocol (Secure Socket Layer Version 3 Protocol), some third-party program like your antivirus or an extension install on to your browser might be interrupting your connection to the website.
Before trying any fixes, try to access the same website from a different browser and preferably a different connection. Try to access the website from the browser in Incognito mode may help too. But if you still encounter this error, here is what you can do to fix it.
Disable SSLv3 in Google Chrome:
First, add a Chrome shortcut to the desktop, then right-click the Chrome desktop shortcut, select Properties, and click the Shortcut tab as below.
C:\Program Files (x86)\Google\Chrome\Application\chrome.exe” –ssl-version-min=tls1
Disable Antivirus and Firewall
In the System tray on the right corner of your taskbar, right-click on the icon of your Antivirus and then click on the option that refers to disabling your antivirus protection temporarily.If prompted, set the duration of antivirus to be disabled as per your choice.You may temporarily disable Windows Defender in you use iton Windows 10.
Now, you can check if your issue is resolved or not. Additionally, you can disable your Windows Firewall protection too. This is due to the fact that the Windows Firewall monitors and authorizes or denies and inward or outward connection from your computer.
Now, you can check again if your issue is resolved or not.
Reset Google Chrome
To reset Chrome browser, make sure that Google Chrome is not running anywhere in the background using the Task Manager.Now, hit the WINKEY + R combinations to open Run and then navigate to the following path,
%USERPROFILE%\AppData\Local\Google\Chrome\User Data
Now, select the folder named as Default and hit the Shift + Delete button combinations and then click on Yes for the confirmation prompt you get.
After deleting the Default folder, open Google Chrome and click on the Menu button denoted by three verticle dots in the top right corner.Then, click on Settings. In the Settings section, scroll down and click on Advanced to reveal the Advanced Settings.
Now, scroll down to the Restore Settings to their original defaults button and click on it.Click on Reset, and this will reset your Google Chrome browser.Now check if you issue is fixed or not.
Reinstall Google Chrome
If all the methods that are mentioned above do not work properly, the last and the ultimate fix would be reinstalling Google Chrome.
I created a Azure Static website and uploaded some test html to test it out. And it worked.
But now I have uploaded some different content and those changes are not showing in Chrome and other browsers except Internet Explorer.
I linked this with Custom domain as well.
This is what showing in chrome:
This is what showing in Internet Explorer:
I cleared cache in Chrome and tried installing Firefox newly as well. But still showing the old content.
Can any one please help?
Update: when I use the URL like https://www.northernlightspictures.com/index.html then I can see the changes
Please try to use the feature Hard Reload or Empty Cache and Hard Reload of Chrome to reload your page, the step as below.
Press F12 in Chrome and Enabled the feature Disable cache
Click the right key of your mouse on the fresh button of Chrome, and then click the Hard Reload or Empty Cache and Hard Reload button, as the figure below.
Of couse, you can directly use the shortcut key:
For on Windows and Linux, Ctrl+Shift+R or Shift+F5. For on
MacOS, Cmd+Shift+R.
Please try to browse your website again in Chrome, as it is working for me as per your expectation.The way you see it working in Internet Explorer, its showing the same for me on Chrome and Firefox as well. "https://www.northernlightspictures.com/"
Please try to browse the application in "incognito window" i.e. private window.
When I go to my website, the browser says 'Waiting for xxxx.ru' in its status bar while loading. I have no JavaScript (or any other) libraries pointing to this weird website. Does this mean my site is hacked? I checked the ".htaccess" file, and so far it seems to be OK. Please help!
Try to use Developer Tools with Chrome Browser to follow the requests in Network tab.
Edit > Developer > Developer Tools.
If you are using Chrome try disable all plugins...
I wrote a simple Google Apps script and published it in the Chrome Web Store as an app (I guess "hosted" app. You can find the link here: http://bit.ly/1JTiKLC). I followed the instructions mentioned here:
https://developers.google.com/apps-script/guides/distribute-web-app
I specified all the required items in the checklist, AFAIK, including icons of the required size. The item is listed and I can download it. However, when it is added in the Chrome desktop launcher, it has the default "apps script" blue icon:
I want to change this but can't find any way to do so. The link above specifies that there is a way to do this for a new tab page (sec. Updating a web app's icon on the New Tab Page). First of all, I cannot see any link that says "specify an alternative image" anywhere as they say. Could someone elaborate on this. Secondly, is there a similar way to change the launcher icon for apps script webapps?
Ok, I found it. Here's the info for someone else who may have the same question: The link appears in the window just after you click "Publish>Register in Chrome Web Store..." in the apps script editor itself. It's not there in the developer dashboard. You can host the image publicly on any site which provides direct links, like imgur.
This will change the icon in the Chrome new page tab (or in "chrome://apps/") as well as the desktop launcher. Cheers :)
I write a DOM tree protecter Chrome extension to examine if the DOM tree changes. I have the js files in background_page, how can i get those console.logs() in other test html files? What I can only find now is the debug information of chrome://extensions/ when i click on generated_background_page.html. So how can I get information of other webpages? Thanks for replying.
One thing I have found very useful when debugging chrome extensions is to use the "inspect element" feature of the chrome developer tools. If you have a page or an element (such as on a popup from your extension) that you want to debug:
Open up Developer Tools
Wait for your popup to appear (if its not already up)
Switch to the Elements view on Developer Tools
Click the magnifying glass at the bottom so you can select an element
Click on an element in the page you want to debug (e.g. the popup page)
Now your Sources view and other views line up to match the element you've clicked on. The console will now let you look at variables in that context.
If you are not able to get the extension to work, there could be a whole host of reasons.
Are all your scripts loaded form the extension's directory or are you serving
them from a site? Chrome will not load scripts from an external site
unless over https AND after the site that is serving the script has
been whitelisted. See the Chrome Content Security
Policy
for more info.
To inspect the DOM, you need to inject a content script into the page that is being loaded. Are you sure you are doing this correctly? The manifest.json must be done right or else your content script will not get loaded.
For your content script and extension to communicate, you must post and receive messages. More information is available here.
Perhaps the best suggestion I have is that you follow the Chrome extension "tutorial" carefully until you have something working and then amend it to suit your needs.