Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Learn More

i have WINDOWS 8 64 bit intel core i5 4200u cpu and latest firefox browser 71.0b12 64 but website says you have version 5

  • 1 Antwort
  • 1 hat dieses Problem
  • 7 Aufrufe
  • Letzte Antwort von cor-el

more options

i have WINDOWS 8 64 bit intel core i5 4200u cpu and latest firefox browser 71.0b12 64 but website says you have version 5. attaching herewith screen shots of my system showing browser details AND the screenshot of the site showing that version is version 5. i tried re installling firefox but problem persists. I also tried the community suggestion about using the about;config...route but was unsuccessful. PLEASE HELP

i have WINDOWS 8 64 bit intel core i5 4200u cpu and latest firefox browser 71.0b12 64 but website says you have version 5. attaching herewith screen shots of my system showing browser details AND the screenshot of the site showing that version is version 5. i tried re installling firefox but problem persists. I also tried the community suggestion about using the about;config...route but was unsuccessful. PLEASE HELP
Angefügte Screenshots

Ausgewählte Lösung

The website uses the wrong part of the user agent to check the browser version. They use navigator.appVersion and that property is about the Mozilla/5.0 part of the user agent, so they always see a Firefox 5 version for any Firefox version. They would have to look at the Firefox/71.0 part of the user agent to get the actual Firefox version.

  • Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:71.0) Gecko/20100101 Firefox/71.0

See line 301.

You can contact the website and ask them to look into this matter.


var objappVersion = navigator.appVersion; => 5.0 (Windows NT 6.2)
var objAgent = navigator.userAgent; 
var objbrowserName = navigator.appName; => Netscape
var objfullVersion = +parseFloat(navigator.appVersion); => 5.0

var objBrMajorVersion = parseInt(navigator.appVersion,10); => 5
Diese Antwort im Kontext lesen 👍 0

Alle Antworten (1)

more options

Ausgewählte Lösung

The website uses the wrong part of the user agent to check the browser version. They use navigator.appVersion and that property is about the Mozilla/5.0 part of the user agent, so they always see a Firefox 5 version for any Firefox version. They would have to look at the Firefox/71.0 part of the user agent to get the actual Firefox version.

  • Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:71.0) Gecko/20100101 Firefox/71.0

See line 301.

You can contact the website and ask them to look into this matter.


var objappVersion = navigator.appVersion; => 5.0 (Windows NT 6.2)
var objAgent = navigator.userAgent; 
var objbrowserName = navigator.appName; => Netscape
var objfullVersion = +parseFloat(navigator.appVersion); => 5.0

var objBrMajorVersion = parseInt(navigator.appVersion,10); => 5