I’m encountering an issue with my website when accessed through Google Chrome on desktop. The error message displayed is:
Something went wrong while displaying this webpage.
There was an error during the latest update of browser version, causing some web pages to malfunction.
Follow these instructions to resolve the issue:
Click the ‘Copy fix’ button below.
Right-click on the Windows icon.
Select ‘Windows PowerShell (Admin)’.
Right-click within the open terminal window.
Wait for the update to complete, then refresh the page.
I’ve tried following the provided steps, but the issue persists. Here are some additional details:
- The website works perfectly on mobile browsers.
- The issue is specific to desktop browsers.
- I’ve cleared the cache, disabled extensions, and ensured the browser is up to date.
Steps Taken:
- Cleared browser cache and cookies.
- Disabled all browser extensions.
- Tried accessing the website in Incognito mode.
- Updated Google Chrome to the latest version.
- Reinstalled Google Chrome.
- Checked for conflicting software.
- Tested the website on different desktop browsers (Firefox, Edge).
Observations:
- The issue is consistent across different desktop browsers.
- No problems are encountered on mobile browsers.
- Console logs indicate multiple
SyntaxError
issues related to JSON parsing.
Code Snippet (if applicable):
console.log('Data before parsing:', data);
try {
let parsedData = JSON.parse(data);
console.log('Parsed Data:', parsedData);
} catch (error) {
console.error('Error parsing JSON:', error, 'Data:', data);
}
Any insights or suggestions on how to resolve this error would be greatly appreciated. Thank you!
Mohammed Vardawala is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.