Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Learn More

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

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 risposta
  • 1 ha questo problema
  • 4 visualizzazioni
  • Ultima risposta di 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
Immagini allegate

Soluzione scelta

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
Leggere questa risposta nel contesto 👍 0

Tutte le risposte (1)

more options

Soluzione scelta

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