Kukhonjiswa imibuzo ethegiwe: Veza yonke imibuzo
  • Okugcinwe kunqolobane

Downloading attachments Mozilla / Yahoo mail

Couple days ago Yahoo Mail stopped downloading attachments of any type. Only happens when using Mozilla. Yahoo mail works fine with edge and android. The following had no… (funda kabanzi)

Couple days ago Yahoo Mail stopped downloading attachments of any type. Only happens when using Mozilla. Yahoo mail works fine with edge and android. The following had no affect: (1) signing out and in to yahoo mail. (2) Clearing cache etc in Mozilla (3) rolling back recent windows updates. Occurs with all types of attachments, so not an app issue. Appreciate your help, please include only those suggestions which consider the "suddenly" part...

Asked by dejavodoo 1 unyaka odlule

Last reply by drjoewebb 1 unyaka odlule

  • Okugcinwe kunqolobane

Ctrl+R

I'm uploading changed webpages to the internet on a daily basis, using Firefox. I'm Using Firefox version 100.0 now and I have discoverd a problem with version 100.0 . Fr… (funda kabanzi)

I'm uploading changed webpages to the internet on a daily basis, using Firefox. I'm Using Firefox version 100.0 now and I have discoverd a problem with version 100.0 . From Firefox version 99.01 and downwards, this problem never existed before. The refresh button in Firefox 100.0 ( Ctrl+R ) no longer works good anymore! Sometimes it works good, the other time it's not working correct anymore, you will not see the latest uploaded webpage on the internet. The only solution to this problem is bij closing Firefox and restarting it. Only then you will see the latest uploaded webpage on the internet. Please have a serious look at this annoying problem in version 100.0. This problem can only be discoverd by people who are uploading new webpages to the internet, not bij the regular internet-users/visitors.

Asked by webmaster101 1 unyaka odlule

Last reply by cor-el 1 unyaka odlule

  • Okugcinwe kunqolobane

Why my code work fine on chrome but not firefox?

Here is my code: <html> <head> <meta charset="utf-8"> <style> .fullCard, .lowerHalfCard, .upperHalfCard, .fullCard-after, .l… (funda kabanzi)

Here is my code:

<html>
 <head>
  <meta charset="utf-8">
  <style>
   .fullCard,
   .lowerHalfCard,
   .upperHalfCard,
   .fullCard-after,
   .lowerHalfCard-after,
   .upperHalfCard-after {
     background-color: inherit;
     border-radius: 10px;
     height: 100%;
     width: 100%;
     position: absolute;
     
     align-items: center;
     display: flex;
     justify-content: center;
     vertical-align:middle;
   }
  
   .fullCard-after::after,
   .upperHalfCard-after::after{
     content: "";
     display: block;
     position: absolute;
     height: 4px;
     background-color: inherit;
     width: 100%;
     top: calc(50% - 2px);
   }
   .lowerHalfCard-after::after{
     content: "";
     display: block;
     position: absolute;
     height: 4px;
     background-color: inherit;
     width: 100%;
     top: calc(50% - 2px);
   }
   .lowerHalfCard,
   .lowerHalfCard-after{
    clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
   }
   .upperHalfCard,
   .upperHalfCard-after{
     clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 50%);
   }

   .splitFlap {
     background-color:black;
     box-sizing: border-box;
     border-radius: 10px;    
     width: 100px;
     height: 150px;
     position: relative;    
   }

   .rotate0to90 {
     animation-name: r0to90;
   }

   .rotate90to0 {
     animation-name: r90to0;
   }

   .rotate0to_90 {
     animation-name: r0to_90;
   }

   .rotate_90to0 {
     animation-name: r_90to0;
   }

   .rotate0to90,
   .rotate90to0,
   .rotate0to_90,
   .rotate_90to0 {
     animation-duration: 0.3s;
     animation-fill-mode: forwards;
   }

   @keyframes r0to90 {
     from {
    transform:rotateX(0deg);
     }

     to {
    transform: rotateX(90deg);
     }
   }

   @keyframes r90to0 {
     from {
    transform: rotateX(90deg);
     }

     to {
    transform: rotateX(0deg);
     }
   }

   @keyframes r0to_90 {
     from {
    transform: rotateX(0deg);
     }

     to {
    transform: rotateX(-90deg);
     }
   }

   @keyframes r_90to0 {
     from {
    transform: rotateX(-90deg);
     }

     to {
    transform: rotateX(0deg);
     }
   }

   .transform0to_90 {
     transform: rotateX(-90deg);
   }

   .transform0to90 {
     transform: rotateX(90deg);
   }
   .hide{
    display:none
   }
   .zIndex2 {
     z-index: 2;
   }

   .zIndex4 {
     z-index: 4;
   }

   .zIndex10 {
     z-index: 10;
   }
   .blue{
      background-color: blue
   }
   .green{
      background-color: green
   }
   .red{
      background-color: red
   }
   .orange{
     background-color: orange
   }
  </style>
  <script>
   let baseDiv,lowerDiv,middleDiv,upperDiv;
   document.addEventListener("DOMContentLoaded",()=>{
    baseDiv=document.getElementById("base");
    lowerDiv=document.getElementById("lower");
    middleDiv=document.getElementById("middle");
    upperDiv=document.getElementById("upper");
   });
   let backward=()=>{
       middleDiv.innerHTML=baseDiv.innerHTML;
    lowerDiv.classList.add("rotate0to90");
    middleDiv.className="upperHalfCard-after transform0to_90 zIndex4";
   }
   let forward=()=>{
    middleDiv.innerHTML=baseDiv.innerHTML;
    upperDiv.classList.add("rotate0to_90");
    middleDiv.className="lowerHalfCard-after transform0to90 zIndex4";
   }
   
   let upperHandler=()=>{
    middleDiv.classList.add("rotate90to0");
    upperDiv.classList.replace("zIndex4","zIndex2");    
   }
   let lowerHandler=()=>{
    lowerDiv.classList.replace("zIndex4","zIndex2");
    middleDiv.classList.add("rotate_90to0");    
   }
   let middleHandler=()=>{
    upperDiv.innerHTML=baseDiv.innerHTML;
    lowerDiv.innerHTML=baseDiv.innerHTML;
    middleDiv.className="hide";
    upperDiv.className="upperHalfCard-after zIndex4";
    lowerDiv.className="lowerHalfCard-after zIndex2";
   }
  </script>
 </head>
 <body>
  <div class="splitFlap">
   <div 
    id="base" 
    class="fullCard-after zIndex2">
    <img src="img/1_100.png">
   </div>
   <div 
    class="upperHalfCard-after zIndex4"
    id="upper"
    onAnimationEnd="upperHandler()">
    <img src="img/0_100.png">
   </div>
   <div 
    id="middle"
    class="hide"
    onAnimationEnd="middleHandler()">
   </div>
   <div
    class="lowerHalfCard-after zIndex2" 
    id="lower"
    onAnimationEnd="lowerHandler()">
    <img src="img/0_100.png">
   </div>
  </div>
  <p>
   <button onClick="forward()">
     +
   </button>
   <button onClick="backward()">
    -
   </button>
   <button onClick="setHinge()">Set Hinge</button>
  </p>
 </body>
</html> 

I am creating a split-flap. It works fine in Chrome, but in firefox, during the second rotation period, it is not smooth as in chrome. How can I fix it?

Asked by knvbhk 1 unyaka odlule

Last reply by cor-el 1 unyaka odlule

  • Okugcinwe kunqolobane

Hi there from South Africa. I need the Verification Email sent to me please

Evening from Johannesburg. Please can someone advise as to when i will receive the verification email? I have tried numerous times and i am yet to get one email to action… (funda kabanzi)

Evening from Johannesburg. Please can someone advise as to when i will receive the verification email? I have tried numerous times and i am yet to get one email to action this. First attempt was 05th May. Another, today. I am still waiting and have checked all folders in the said email to use by yourselves.

Asked by Barret Swart 1 unyaka odlule

Last reply by cor-el 1 unyaka odlule

  • Okugcinwe kunqolobane

I cannot manage to get FireFox screen to show the 4/5 options in the upper LH corner, to help me get FireFox as my search engine>>>.

I have been successfully using FireFox for many years, recently we downsized into a Condo,now 81 years young. I have FireFox as my default browser choice, but it only lis… (funda kabanzi)

I have been successfully using FireFox for many years, recently we downsized into a Condo,now 81 years young. I have FireFox as my default browser choice, but it only lists Google on the search bar, when I type in my search in the box under the Firefox name it immediately jumps up to the top of the page Google browser.

How do I get back my screen to use FireFox as my search engine ?? I have tried to change it but will only give me two options Google or Google ?? Is it possible to go back to the screen and try and start again??

Many thanks to anyone who will give me info as to how to rectify my problem, be gentle with me as I am efficient in using the computer but less so trying to solve my problems. Robin

Asked by Robin S 1 unyaka odlule

Last reply by FredMcD 1 unyaka odlule

  • Okugcinwe kunqolobane

change primary email address on profile

Instructions on changing primary email address not helpful-prompted to access Accounts but profile displayed would not let me edit my primary email address. When attempte… (funda kabanzi)

Instructions on changing primary email address not helpful-prompted to access Accounts but profile displayed would not let me edit my primary email address. When attempted to add secondary address was notified that code was sent to my old email address was was compromised & deleted by security of my carrier Want to add new email address & add secondary email account. Assistance greatly appreciated

Asked by JAYeskewicz 1 unyaka odlule

Last reply by FredMcD 1 unyaka odlule

  • Okugcinwe kunqolobane

EMAIL VERFICIATION CODE ISN'T SENT

EMAIL VERFICIATION CODE ISN'T SENT\ tried a few attemtps I formatted my laptop, and now i downoladed mozilla, logging in... and waiting for verficiation code for mozilla… (funda kabanzi)

EMAIL VERFICIATION CODE ISN'T SENT\ tried a few attemtps

I formatted my laptop, and now i downoladed mozilla, logging in... and waiting for verficiation code for mozilla sync account for years, please help

Asked by Lidor Yosef 1 unyaka odlule

Last reply by FredMcD 1 unyaka odlule

  • Okugcinwe kunqolobane

I have no idea why this is happening

{ "securitySoftware": { "registeredAntiVirus": "Microsoft Defender Antivirus", "registeredAntiSpyware": "", "registeredFirewall": "Microsoft Firewall" }, "pr… (funda kabanzi)

{

 "securitySoftware": {
   "registeredAntiVirus": "Microsoft Defender Antivirus",
   "registeredAntiSpyware": "",
   "registeredFirewall": "Microsoft Firewall"
 },
 "processes": {
   "remoteTypes": {
     "privilegedabout": 1,
     "extension": 1,
     "prealloc": 1
   },
   "maxWebContentProcesses": 8
 },
 "environmentVariables": {
   "MOZ_APP_RESTART": "1",
   "MOZ_CRASHREPORTER_DATA_DIRECTORY": "C:\\Users\\yourm\\AppData\\Roaming\\Mozilla\\Firefox\\Crash Reports",
   "MOZ_CRASHREPORTER_EVENTS_DIRECTORY": "C:\\Users\\yourm\\AppData\\Roaming\\Mozilla\\Firefox\\Profiles\\apx9tstq.default-release-1650652330211\\crashes\\events",
   "MOZ_CRASHREPORTER_PING_DIRECTORY": "C:\\Users\\yourm\\AppData\\Roaming\\Mozilla\\Firefox\\Pending Pings",
   "MOZ_CRASHREPORTER_RESTART_ARG_0": "C:\\Program Files\\Mozilla Firefox\\firefox.exe",
   "MOZ_CRASHREPORTER_STRINGS_OVERRIDE": "C:\\Program Files\\Mozilla Firefox\\browser\\crashreporter-override.ini",
   "MOZ_SKELETON_UI_RESTARTING": "1"
 },
 "modifiedPreferences": {
   "browser.contentblocking.category": "standard",
   "browser.download.useDownloadDir": false,
   "browser.search.region": "US",
   "browser.search.update": false,
   "browser.sessionstore.upgradeBackup.latestBuildID": "20220411174855",
   "browser.startup.homepage_override.buildID": "20220411174855",
   "browser.startup.homepage_override.mstone": "99.0.1",
   "browser.startup.page": 3,
   "browser.urlbar.placeholderName": "DuckDuckGo",
   "browser.urlbar.quicksuggest.migrationVersion": 2,
   "browser.urlbar.quicksuggest.scenario": "offline",
   "browser.urlbar.suggest.bookmark": false,
   "browser.urlbar.suggest.openpage": false,
   "browser.urlbar.suggest.searches": false,
   "browser.urlbar.tipShownCount.searchTip_onboard": 4,
   "doh-rollout.balrog-migration-done": true,
   "doh-rollout.disable-heuristics": true,
   "doh-rollout.doneFirstRun": true,
   "doh-rollout.doorhanger-decision": "UIOk",
   "doh-rollout.home-region": "US",
   "doh-rollout.uri": "https://mozilla.cloudflare-dns.com/dns-query",
   "dom.disable_open_during_load": false,
   "dom.forms.autocomplete.formautofill": true,
   "dom.security.https_only_mode": true,
   "dom.security.https_only_mode_ever_enabled": true,
   "extensions.lastAppVersion": "99.0.1",
   "idle.lastDailyNotification": 1651446016,
   "media.gmp-gmpopenh264.abi": "x86_64-msvc-x64",
   "media.gmp-gmpopenh264.lastUpdate": 1650652374,
   "media.gmp-gmpopenh264.version": "1.8.1.1",
   "media.gmp-manager.buildID": "20220411174855",
   "media.gmp-manager.lastCheck": 1651358262,
   "media.gmp-widevinecdm.abi": "x86_64-msvc-x64",
   "media.gmp-widevinecdm.lastUpdate": 1650652376,
   "media.gmp-widevinecdm.version": "4.10.2391.0",
   "media.gmp.storage.version.observed": 1,
   "media.hardware-video-decoding.failed": false,
   "media.peerconnection.ice.default_address_only": true,
   "media.peerconnection.ice.no_host": true,
   "media.peerconnection.ice.proxy_only_if_behind_proxy": true,
   "network.http.proxy.respect-be-conservative": false,
   "network.trr.bootstrapAddress": "1.1.1.1",
   "network.trr.confirmationNS": "skip",
   "network.trr.excluded-domains": ",accounts.firefox.com,profile.accounts.firefox.com,oauth.accounts.firefox.com,firefoxusercontent.com,mozillausercontent.com,accounts-static.cdn.mozilla.net,accounts-static-2.stage.mozaws.net,firefox.factor11.cloudflareclient.com,detectportal.firefox.com,localhost.localdomain,localhost6.localdomain6,localhost6",
   "network.trr.fetch_off_main_thread": false,
   "network.trr.mode": 3,
   "network.trr.uri": "https://mozilla.cloudflare-dns.com/dns-query",
   "places.database.lastMaintenance": 1651265143,
   "privacy.sanitize.pending": "[{\"id\":\"newtab-container\",\"itemsToClear\":[],\"options\":{}}]",
   "privacy.history.custom": true,
   "privacy.purge_trackers.date_in_cookie_database": "0",
   "privacy.purge_trackers.last_purge": "1651446020315",
   "privacy.userContext.enabled": true,
   "security.remote_settings.crlite_filters.checked": 1651525452,
   "security.remote_settings.intermediates.checked": 1651425976,
   "security.sandbox.content.tempDirSuffix": "{26f660aa-1fb1-4924-9d39-ba6d8030032f}",
   "services.sync.declinedEngines": "",
   "services.sync.lastPing": 1651446447,
   "services.sync.lastSync": "Mon May 02 2022 14:09:07 GMT-0700 (Pacific Daylight Time)",
   "services.sync.engine.addresses": true,
   "services.sync.engine.addresses.available": true,
   "services.sync.engine.creditcards": true,
   "services.sync.engine.prefs.modified": false,
   "signon.rememberSignons": false,
   "storage.vacuum.last.index": 1,
   "storage.vacuum.last.places.sqlite": 1650653788,
   "ui.osk.debug.keyboardDisplayReason": "IKPOS: Touch screen not found."
 },
 "lockedPreferences": {
   "fission.autostart.session": false
 },
 "printingPreferences": {
   "print.more-settings.open": true,
   "print.printer_HP57B824_(HP_OfficeJet_Pro_8720).print_duplex": 0,
   "print_printer": "OneNote (Desktop)"
 },
 "media": {
   "currentAudioBackend": "wasapi",
   "currentMaxAudioChannels": 2,
   "currentPreferredSampleRate": 48000,
   "audioOutputDevices": [
     {
       "name": "Speakers (Realtek(R) Audio)",
       "groupId": "INTELAUDIO\\FUNC_01&VEN_10EC&DEV_0294&SUBSYS_104314A1&REV_1000\\4&33d682b5&0&0001",
       "vendor": "",
       "type": 2,
       "state": 2,
       "preferred": 5,
       "supportedFormat": 4112,
       "defaultFormat": 4096,
       "maxChannels": 2,
       "defaultRate": 48000,
       "maxRate": 48000,
       "minRate": 48000,
       "maxLatency": 480,
       "minLatency": 144
     },
     {
       "name": "",
       "groupId": "",
       "vendor": "",
       "type": 2,
       "state": 0,
       "preferred": 0,
       "supportedFormat": 4112,
       "defaultFormat": 4096,
       "maxChannels": 2,
       "defaultRate": 44100,
       "maxRate": 44100,
       "minRate": 44100,
       "maxLatency": 0,
       "minLatency": 0
     },
     {
       "name": "E20 (Intel(R) Display Audio)",
       "groupId": "INTELAUDIO\\FUNC_01&VEN_8086&DEV_280B&SUBSYS_80860101&REV_1000\\4&33d682b5&0&0201",
       "vendor": "",
       "type": 2,
       "state": 0,
       "preferred": 0,
       "supportedFormat": 4112,
       "defaultFormat": 4096,
       "maxChannels": 2,
       "defaultRate": 48000,
       "maxRate": 48000,
       "minRate": 48000,
       "maxLatency": 0,
       "minLatency": 0
     },
     {
       "name": "",
       "groupId": "",
       "vendor": "",
       "type": 2,
       "state": 0,
       "preferred": 0,
       "supportedFormat": 4112,
       "defaultFormat": 4096,
       "maxChannels": 2,
       "defaultRate": 44100,
       "maxRate": 44100,
       "minRate": 44100,
       "maxLatency": 0,
       "minLatency": 0
     },
     {
       "name": "SOUNDBAR (TaoTronics TT-SK023)",
       "groupId": "BTHENUM\\{0000110b-0000-1000-8000-00805f9b34fb}_VID&0002099a_PID&0500\\7&1c634f93&3&F013C3E30949_C00000000",
       "vendor": "",
       "type": 2,
       "state": 1,
       "preferred": 0,
       "supportedFormat": 4112,
       "defaultFormat": 4096,
       "maxChannels": 2,
       "defaultRate": 44100,
       "maxRate": 44100,
       "minRate": 44100,
       "maxLatency": 0,
       "minLatency": 0
     }
   ],
   "audioInputDevices": [
     {
       "name": "Microphone (Realtek(R) Audio)",
       "groupId": "INTELAUDIO\\FUNC_01&VEN_10EC&DEV_0294&SUBSYS_104314A1&REV_1000\\4&33d682b5&0&0001",
       "vendor": "",
       "type": 1,
       "state": 2,
       "preferred": 5,
       "supportedFormat": 4112,
       "defaultFormat": 4096,
       "maxChannels": 2,
       "defaultRate": 48000,
       "maxRate": 48000,
       "minRate": 48000,
       "maxLatency": 480,
       "minLatency": 64
     },
     {
       "name": "",
       "groupId": "",
       "vendor": "",
       "type": 1,
       "state": 0,
       "preferred": 0,
       "supportedFormat": 4112,
       "defaultFormat": 4096,
       "maxChannels": 2,
       "defaultRate": 48000,
       "maxRate": 48000,
       "minRate": 48000,
       "maxLatency": 0,
       "minLatency": 0
     },
     {
       "name": "Stereo Mix (Realtek(R) Audio)",
       "groupId": "INTELAUDIO\\FUNC_01&VEN_10EC&DEV_0294&SUBSYS_104314A1&REV_1000\\4&33d682b5&0&0001",
       "vendor": "",
       "type": 1,
       "state": 0,
       "preferred": 0,
       "supportedFormat": 4112,
       "defaultFormat": 4096,
       "maxChannels": 2,
       "defaultRate": 48000,
       "maxRate": 48000,
       "minRate": 48000,
       "maxLatency": 0,
       "minLatency": 0
     },
     {
       "name": "",
       "groupId": "",
       "vendor": "",
       "type": 1,
       "state": 0,
       "preferred": 0,
       "supportedFormat": 4112,
       "defaultFormat": 4096,
       "maxChannels": 2,
       "defaultRate": 48000,
       "maxRate": 48000,
       "minRate": 48000,
       "maxLatency": 0,
       "minLatency": 0
     }
   ]
 },
 "accessibility": {
   "isActive": true,
   "forceDisabled": 0,
   "handlerUsed": true,
   "instantiator": "UIAUTOMATION|"
 },
 "startupCache": {
   "DiskCachePath": "C:\\Users\\yourm\\AppData\\Local\\Mozilla\\Firefox\\Profiles\\apx9tstq.default-release-1650652330211\\startupCache\\startupCache.8.little",
   "IgnoreDiskCache": true,
   "FoundDiskCacheOnInit": true,
   "WroteToDiskCache": false
 },
 "libraryVersions": {
   "NSPR": {
     "minVersion": "4.33",
     "version": "4.33"
   },
   "NSS": {
     "minVersion": "3.76.1",
     "version": "3.76.1"
   },
   "NSSUTIL": {
     "minVersion": "3.76.1",
     "version": "3.76.1"
   },
   "NSSSSL": {
     "minVersion": "3.76.1",
     "version": "3.76.1"
   },
   "NSSSMIME": {
     "minVersion": "3.76.1",
     "version": "3.76.1"
   }
 },
 "userJS": {
   "exists": false
 },
 "intl": {
   "localeService": {
     "requested": [
       "en-US"
     ],
     "available": [
       "en-US"
     ],
     "supported": [
       "en-US"
     ],
     "regionalPrefs": [
       "en-US"
     ],
     "defaultLocale": "en-US"
   },
   "osPrefs": {
     "systemLocales": [
       "en-US"
     ],
     "regionalPrefsLocales": [
       "en-US"
     ]
   }
 },
 "crashes": {
   "submitted": [],
   "pending": 0
 },
 "sandbox": {
   "contentSandboxLevel": 6,
   "effectiveContentSandboxLevel": 6,
   "contentWin32kLockdownState": "Win32k Lockdown disabled -- Running in Safe Mode"
 },
 "remoteAgent": {
   "listening": false,
   "url": ""
 },
 "graphics": {
   "numTotalWindows": 1,
   "numAcceleratedWindows": 1,
   "windowLayerManagerType": "WebRender (Software)",
   "windowLayerManagerRemote": true,
   "adapterDescription": "Intel(R) UHD Graphics 620",
   "adapterVendorID": "0x8086",
   "adapterDeviceID": "0x3ea0",
   "adapterSubsysID": "14a11043",
   "adapterRAM": 0,
   "adapterDrivers": "igdumdim64 igd10iumd64 igd10iumd64 igd12umd64 igdumdim32 igd10iumd32 igd10iumd32 igd12umd32",
   "driverVendor": "",
   "driverVersion": "26.20.100.7870",
   "driverDate": "2-5-2020",
   "adapterDescription2": "NVIDIA GeForce GTX 1050 with Max-Q Design",
   "adapterVendorID2": "0x10de",
   "adapterDeviceID2": "0x1c8d",
   "adapterSubsysID2": "14a11043",
   "adapterRAM2": 2048,
   "adapterDrivers2": "C:\\WINDOWS\\System32\\DriverStore\\FileRepository\\nvam.inf_amd64_a043d7b150598e7c\\nvldumdx.dll,C:\\WINDOWS\\System32\\DriverStore\\FileRepository\\nvam.inf_amd64_a043d7b150598e7c\\nvldumdx.dll,C:\\WINDOWS\\System32\\DriverStore\\FileRepository\\nvam.inf_amd64_a043d7b150598e7c\\nvldumdx.dll,C:\\WINDOWS\\System32\\DriverStore\\FileRepository\\nvam.inf_amd64_a043d7b150598e7c\\nvldumdx.dll C:\\WINDOWS\\System32\\DriverStore\\FileRepository\\nvam.inf_amd64_a043d7b150598e7c\\nvldumd.dll,C:\\WINDOWS\\System32\\DriverStore\\FileRepository\\nvam.inf_amd64_a043d7b150598e7c\\nvldumd.dll,C:\\WINDOWS\\System32\\DriverStore\\FileRepository\\nvam.inf_amd64_a043d7b150598e7c\\nvldumd.dll,C:\\WINDOWS\\System32\\DriverStore\\FileRepository\\nvam.inf_amd64_a043d7b150598e7c\\nvldumd.dll",
   "driverVendor2": "",
   "driverVersion2": "30.0.15.1169",
   "driverDate2": "2-1-2022",
   "isGPU2Active": false,
   "direct2DEnabled": false,
   "directWriteEnabled": true,
   "directWriteVersion": "10.0.22000.258",
   "clearTypeParameters": "Gamma: 1.8 Pixel Structure: RGB ClearType Level: 100 Enhanced Contrast: 50 ",
   "targetFrameRate": 60,
   "direct2DEnabledMessage": {
     "key": ""
   },
   "webgl1Renderer": "WebGL is currently disabled.",
   "webgl1Version": "-",
   "webgl1DriverExtensions": "-",
   "webgl1Extensions": "-",
   "webgl1WSIInfo": "-",
   "webgl2Renderer": "WebGL is currently disabled.",
   "webgl2Version": "-",
   "webgl2DriverExtensions": "-",
   "webgl2Extensions": "-",
   "webgl2WSIInfo": "-",
   "info": {
     "AzureFallbackCanvasBackend": "skia",
     "AzureCanvasBackend": "skia",
     "AzureContentBackend": "skia",
     "ApzWheelInput": 1,
     "ApzDragInput": 1,
     "ApzKeyboardInput": 1,
     "ApzAutoscrollInput": 1,
     "ApzZoomingInput": 1,
     "CMSOutputProfile": "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",
     "DisplayCount": 1,
     "Display0": "1920x1080@60Hz : Intel(R) UHD Graphics 620",
     "HardwareStretching": "both=1 window-only=0 full-screen-only=0 none=0 error=0"
   },
   "failures": [
     "[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt"
   ],
   "indices": [
     0
   ],
   "featureLog": {
     "features": [
       {
         "name": "HW_COMPOSITING",
         "description": "Compositing",
         "status": "blocked",
         "log": [
           {
             "type": "default",
             "status": "available"
           },
           {
             "type": "runtime",
             "status": "blocked",
             "message": "Acceleration blocked by safe-mode"
           }
         ]
       },
       {
         "name": "D3D11_COMPOSITING",
         "description": "Direct3D11 Compositing",
         "status": "unavailable",
         "log": [
           {
             "type": "default",
             "status": "unavailable",
             "message": "Hardware compositing is disabled"
           }
         ]
       },
       {
         "name": "DIRECT2D",
         "description": "Direct2D",
         "status": "unavailable",
         "log": [
           {
             "type": "default",
             "status": "unavailable",
             "message": "Direct2D requires Direct3D 11 compositing"
           }
         ]
       },
       {
         "name": "D3D11_HW_ANGLE",
         "description": "Direct3D11 hardware ANGLE",
         "status": "disabled",
         "log": [
           {
             "type": "default",
             "status": "unavailable",
             "message": "D3D11 compositing is disabled"
           },
           {
             "type": "env",
             "status": "disabled",
             "message": "D3D11 compositing is disabled"
           }
         ]
       },
       {
         "name": "GPU_PROCESS",
         "description": "GPU Process",
         "status": "blocked",
         "log": [
           {
             "type": "default",
             "status": "available"
           },
           {
             "type": "runtime",
             "status": "blocked",
             "message": "Safe-mode is enabled"
           }
         ]
       },
       {
         "name": "WEBRENDER",
         "description": "WebRender",
         "status": "unavailable-in-safe-mode",
         "log": [
           {
             "type": "default",
             "status": "available"
           },
           {
             "type": "runtime",
             "status": "unavailable-in-safe-mode",
             "message": "Safe-mode is enabled"
           }
         ]
       },
       {
         "name": "WEBRENDER_QUALIFIED",
         "description": "WebRender qualified",
         "status": "available",
         "log": [
           {
             "type": "default",
             "status": "available"
           }
         ]
       },
       {
         "name": "WEBRENDER_COMPOSITOR",
         "description": "WebRender native compositor",
         "status": "unavailable",
         "log": [
           {
             "type": "default",
             "status": "available"
           },
           {
             "type": "runtime",
             "status": "unavailable",
             "message": "No DirectComposition usage"
           }
         ]
       },
       {
         "name": "WEBRENDER_PARTIAL",
         "description": "WebRender partial present",
         "status": "available",
         "log": [
           {
             "type": "default",
             "status": "available"
           }
         ]
       },
       {
         "name": "WEBRENDER_SHADER_CACHE",
         "description": "WebRender shader disk cache",
         "status": "unavailable",
         "log": [
           {
             "type": "default",
             "status": "available"
           },
           {
             "type": "runtime",
             "status": "unavailable",
             "message": "WebRender disabled"
           }
         ]
       },
       {
         "name": "WEBRENDER_OPTIMIZED_SHADERS",
         "description": "WebRender optimized shaders",
         "status": "unavailable",
         "log": [
           {
             "type": "default",
             "status": "available"
           },
           {
             "type": "runtime",
             "status": "unavailable",
             "message": "WebRender disabled"
           }
         ]
       },
       {
         "name": "WEBRENDER_ANGLE",
         "description": "WebRender ANGLE",
         "status": "unavailable-no-angle",
         "log": [
           {
             "type": "default",
             "status": "available"
           },
           {
             "type": "runtime",
             "status": "unavailable-no-angle",
             "message": "ANGLE is disabled"
           }
         ]
       },
       {
         "name": "WEBRENDER_DCOMP_PRESENT",
         "description": "WebRender DirectComposition",
         "status": "unavailable",
         "log": [
           {
             "type": "default",
             "status": "available"
           },
           {
             "type": "runtime",
             "status": "unavailable",
             "message": "Requires ANGLE"
           }
         ]
       },
       {
         "name": "WEBRENDER_SOFTWARE",
         "description": "WebRender software fallback",
         "status": "available",
         "log": [
           {
             "type": "default",
             "status": "available"
           }
         ]
       },
       {
         "name": "WEBGPU",
         "description": "WebGPU",
         "status": "blocked",
         "log": [
           {
             "type": "default",
             "status": "disabled",
             "message": "Disabled by default"
           },
           {
             "type": "runtime",
             "status": "blocked",
             "message": "WebGPU can only be enabled in nightly"
           }
         ]
       },
       {
         "name": "WINDOW_OCCLUSION",
         "description": "WINDOW_OCCLUSION",
         "status": "available",
         "log": [
           {
             "type": "default",
             "status": "available"
           }
         ]
       }
     ],
     "fallbacks": []
   },
   "crashGuards": []
 },
 "experimentalFeatures": [
   [
     "experimental-features-abouthome-startup-cache",
     "browser.startup.homepage.abouthome_cache.enabled",
     false
   ],
   [
     "experimental-features-cookie-samesite-lax-by-default2",
     "network.cookie.sameSite.laxByDefault",
     false
   ],
   [
     "experimental-features-cookie-samesite-none-requires-secure2",
     "network.cookie.sameSite.noneRequiresSecure",
     false
   ],
   [
     "experimental-features-cookie-samesite-schemeful",
     "network.cookie.sameSite.schemeful",
     false
   ],
   [
     "experimental-features-css-constructable-stylesheets",
     "layout.css.constructable-stylesheets.enabled",
     false
   ],
   [
     "experimental-features-css-masonry2",
     "layout.css.grid-template-masonry-value.enabled",
     false
   ],
   [
     "experimental-features-devtools-compatibility-panel",
     "devtools.inspector.compatibility.enabled",
     true
   ],
   [
     "experimental-features-devtools-serviceworker-debugger-support",
     "devtools.debugger.features.windowless-service-workers",
     false
   ],
   [
     "experimental-features-firefox-100",
     "general.useragent.forceVersion100",
     false
   ],
   [
     "experimental-features-media-jxl",
     "image.jxl.enabled",
     false
   ],
   [
     "experimental-features-ime-search",
     "browser.urlbar.keepPanelOpenDuringImeComposition",
     false
   ],
   [
     "experimental-features-web-gpu2",
     "dom.webgpu.enabled",
     false
   ],
   [
     "experimental-features-webrtc-global-mute-toggles",
     "privacy.webrtc.globalMuteToggles",
     false
   ]
 ],
 "addons": [
   {
     "name": "Add-ons Search Detection",
     "type": "extension",
     "version": "2.0.0",
     "isActive": true,
     "id": "addons-search-detection@mozilla.com"
   },
   {
     "name": "Amazon.com",
     "type": "extension",
     "version": "1.3",
     "isActive": true,
     "id": "amazondotcom@search.mozilla.org"
   },
   {
     "name": "Bing",
     "type": "extension",
     "version": "1.3",
     "isActive": true,
     "id": "bing@search.mozilla.org"
   },
   {
     "name": "DuckDuckGo",
     "type": "extension",
     "version": "1.1",
     "isActive": true,
     "id": "ddg@search.mozilla.org"
   },
   {
     "name": "eBay",
     "type": "extension",
     "version": "1.3",
     "isActive": true,
     "id": "ebay@search.mozilla.org"
   },
   {
     "name": "Google",
     "type": "extension",
     "version": "1.2",
     "isActive": true,
     "id": "google@search.mozilla.org"
   },
   {
     "name": "Wikipedia (en)",
     "type": "extension",
     "version": "1.1",
     "isActive": true,
     "id": "wikipedia@search.mozilla.org"
   },
   {
     "name": "Amazon Assistant",
     "type": "extension",
     "version": "10.2103.25.10303",
     "isActive": false,
     "id": "abb@amazon.com"
   },
   {
     "name": "Capital One Shopping: Online Coupon Tool",
     "type": "extension",
     "version": "0.1.1043",
     "isActive": false,
     "id": "{aff8af88-06a9-4eee-b383-3af08c47b8c8}"
   },
   {
     "name": "Dashlane",
     "type": "extension",
     "version": "6.2148.3",
     "isActive": false,
     "id": "jetpack-extension@dashlane.com"
   },
   {
     "name": "DuckDuckGo Privacy Essentials",
     "type": "extension",
     "version": "2022.4.26",
     "isActive": false,
     "id": "jid1-ZAdIEUB7XOzOJw@jetpack"
   },
   {
     "name": "Firefox Private Network",
     "type": "extension",
     "version": "24",
     "isActive": false,
     "id": "secure-proxy@mozilla.com"
   },
   {
     "name": "Firefox Relay",
     "type": "extension",
     "version": "2.3.4",
     "isActive": false,
     "id": "private-relay@firefox.com"
   },
   {
     "name": "Grammarly for Firefox",
     "type": "extension",
     "version": "8.897.0",
     "isActive": false,
     "id": "87677a2c52b84ad3a151a4a72f5bd3c4@jetpack"
   },
   {
     "name": "Pulse SMS Extension",
     "type": "extension",
     "version": "2.1.4",
     "isActive": false,
     "id": "{085bef48-0484-467c-9112-5689bfc33b83}"
   },
   {
     "name": "Translate Web Pages",
     "type": "extension",
     "version": "9.4.2",
     "isActive": false,
     "id": "{036a55b4-5e72-4d05-a06c-cba2dfcc134a}"
   }
 ],
 "features": [
   {
     "name": "DoH Roll-Out",
     "version": "2.0.0",
     "id": "doh-rollout@mozilla.org"
   },
   {
     "name": "Firefox Screenshots",
     "version": "39.0.1",
     "id": "screenshots@mozilla.org"
   },
   {
     "name": "Form Autofill",
     "version": "1.0.1",
     "id": "formautofill@mozilla.org"
   },
   {
     "name": "Picture-In-Picture",
     "version": "1.0.0",
     "id": "pictureinpicture@mozilla.org"
   },
   {
     "name": "Web Compatibility Interventions",
     "version": "31.0.0",
     "id": "webcompat@mozilla.org"
   },
   {
     "name": "WebCompat Reporter",
     "version": "1.4.2",
     "id": "webcompat-reporter@mozilla.org"
   }
 ],
 "application": {
   "name": "Firefox",
   "osVersion": "Windows_NT 10.0 22000",
   "version": "99.0.1",
   "buildID": "20220411174855",
   "distributionID": "",
   "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:99.0) Gecko/20100101 Firefox/99.0",
   "safeMode": true,
   "updateChannel": "release",
   "supportURL": "https://support.mozilla.org/1/firefox/99.0.1/WINNT/en-US/",
   "osTheme": "",
   "numTotalWindows": 1,
   "numFissionWindows": 0,
   "numRemoteWindows": 1,
   "launcherProcessState": 0,
   "fissionAutoStart": false,
   "fissionDecisionStatus": "disabledBySafeMode",
   "remoteAutoStart": true,
   "policiesStatus": 0,
   "keyLocationServiceGoogleFound": true,
   "keySafebrowsingGoogleFound": true,
   "keyMozillaFound": true
 },
 "normandy": {
   "addonStudies": [],
   "prefRollouts": [],
   "prefStudies": [],
   "nimbusExperiments": [],
   "nimbusRollouts": []
 }

}

Asked by ThatDamnGirl 1 unyaka odlule

Last reply by FredMcD 1 unyaka odlule

  • Okugcinwe kunqolobane

Sound and videos are stuttering when clicking other stuff.

The title already says it all. Whenever i have some sound or video running in any tab, clicking on certain things like other videos or animated stuff in the same tab or a… (funda kabanzi)

The title already says it all. Whenever i have some sound or video running in any tab, clicking on certain things like other videos or animated stuff in the same tab or another one causes a small interruption in the sound/video. Clicking a lot of times results in sound and video stuttering. I does not appear when i just click another link.

I already tried updating firefox, reinstall firefox, even downgrading firefox. This problem only appears in firefox and only on this device. I would be very thankfull for some advices, because this is really annoying.

Asked by doering71 1 unyaka odlule

Last reply by FredMcD 1 unyaka odlule

  • Okugcinwe kunqolobane

PASSWORD MANGER

I have sent several emails and get no reply, how am I suposed to fix check or see my saved passwords if they all look like this...3b4a3f36-7056-4eee-bcb3-2b0838fa07e1 … (funda kabanzi)

I have sent several emails and get no reply, how am I suposed to fix check or see my saved passwords if they all look like this...3b4a3f36-7056-4eee-bcb3-2b0838fa07e1

Asked by The Boss 1 unyaka odlule

Last reply by cor-el 1 unyaka odlule

  • Okugcinwe kunqolobane

Website malfunction

While using Yahoo email I tried to access the 'Notepad' page and get a message saying to Download a new version of Firefox to see the 'Calendar' even though I was trying … (funda kabanzi)

While using Yahoo email I tried to access the 'Notepad' page and get a message saying to Download a new version of Firefox to see the 'Calendar' even though I was trying for the 'Notepad' not the 'Calendar'. If I try for the 'Calendar' I initially get the small right-sidebar version fine but if I ask for the full page version I get the error message again. This does not happen if I access Yahoo through Chrome-browser. I have repeatedly done the download to no avail. (I have version 99.0.1). I am attaching a screenshot of the error message. Thanks for any help. No rush.

Asked by davidNwillems 1 unyaka odlule

Last reply by cor-el 1 unyaka odlule

  • Okugcinwe kunqolobane

firefox is not normal wants me to download the browser i have an acct for long time had a virus last night but windows defender caught it and removed it my colors are all gone too along with file view etc on top line

im afraid to download anything. i should not have to download firefox browser, i have been using this acct for years. i tried to update ccleaner last nite and windows def… (funda kabanzi)

im afraid to download anything. i should not have to download firefox browser, i have been using this acct for years. i tried to update ccleaner last nite and windows defender caught a trojan but removed it right away all other places i have been were fine today what happened to my firefox and duckduck go etc

Asked by memok 1 unyaka odlule

Last reply by FredMcD 1 unyaka odlule

  • Okugcinwe kunqolobane

lost everything with firefox

my pc had friend so when i got a new one i lost all of my firefox data, how can i get all of it back so i was forced to start all over, i lost all my, bookmarks, tabs, hi… (funda kabanzi)

my pc had friend so when i got a new one i lost all of my firefox data, how can i get all of it back so i was forced to start all over, i lost all my, bookmarks, tabs, history and saved passwords

Asked by dj_dean 1 unyaka odlule

Last reply by FredMcD 1 unyaka odlule

  • Okugcinwe kunqolobane

Firefox Keeps Crashing After Update To Version 100

Ever since Firefox updated to the new version I've been having constant crashes. I've tried restarting in Safe Mood which doesn't help. Pretty much Firefox will open, say… (funda kabanzi)

Ever since Firefox updated to the new version I've been having constant crashes. I've tried restarting in Safe Mood which doesn't help. Pretty much Firefox will open, say it's not responding, and then by the time it looks like it's about to restore my tabs it crashes. I had to do a refresh and transferred the backup files from an older session which worked, but then it eventually crashed again. I uninstalled and reinstalled Firefox and tried opening my older profile but it keeps happening. I really need to restore my previous session. There's nothing with my computer that seems to be causing it. I did have 2 windows open with about 8,000 tabs total which I'm sure could be part of the reason, but it never really had trouble before and only just started crashing since the update. Is there any way to fix this without starting over? I read that this is a bug that others have dealt with previously.

Some additional information. I'm on a 64-bit Windows 10 PC.

Startup Crash False Process Type parent MOZ_CRASH Reason (Sanitized) Failed to load critical module "resource://gre/modules/WebNavigation.jsm" Crash Reason EXCEPTION_BREAKPOINT Crash Address 0x00007ffb8c0f5135

Asked by TMan11 1 unyaka odlule

Last reply by Stephen5000 1 unyaka odlule

  • Okugcinwe kunqolobane

Zoom meeting links not opening

This morning I re-installed an update to Zoom (on Linux - ElementaryOS / Ubuntu 18.04). Since installing, I've not been able to follow links from Firefox to Zoom (zoommt… (funda kabanzi)

This morning I re-installed an update to Zoom (on Linux - ElementaryOS / Ubuntu 18.04). Since installing, I've not been able to follow links from Firefox to Zoom (zoommtg links don't open the app). However, they still work from Epiphany.

The slight confounding factor is that I realised that I've been updated to FF 104 overnight, so that might be an issue.

I've been looking at network.protocol-handler.... settings in about:config, based on this article: https://superuser.com/questions/1343020/how-to-configure-firefox-open-zoom-urls-using-zoom-application#1351073

I've also been looking at xdg-settings (based on this article) https://www.reddit.com/r/kde/comments/i83m8i/zoom_desktop_client_isnt_launching_from_browser/ which suggests the problems might be to do with xdg-settings calling /usr/share/applications/zoom.desktop when the available file is /usr/share/applications/Zoom.desktop However, I have not been able to alter the xdg-settings parameter - when I try: $ xdg-settings set default-url-scheme-handler zoommtg zoom.desktop it does not change the setting - it remains as Zoom.desktop

I should mention that the version of FF I'm running is delivered as a snap - but this was not a problem before 104 / my latest Zoom installation. Also, this version of FF has no problem opening up MS Teams meetings or Slack groups. handlers.json includes : ... "slack":{"action":4},"snap":{"action":4},"zoommtg":{"action":4},"msteams":{"action":4}}, .... so I am thinking the problem must lie somewhee else.

Any suggestions would be gratefully received.

thanks Andy

Asked by Andy Dearden 1 unyaka odlule

Last reply by jscher2000 - Support Volunteer 1 unyaka odlule

  • Okugcinwe kunqolobane

Firefox on Windows 10 crashes every time it is closed (last 6 months or so).

In making this post I am following instructions found at https://support.mozilla.org/en-US/kb/troubleshoot-firefox-crashes-closing-or-quitting, which include the statemen… (funda kabanzi)

In making this post I am following instructions found at https://support.mozilla.org/en-US/kb/troubleshoot-firefox-crashes-closing-or-quitting, which include the statement "Fill out the Details section of the next page..." which seems to refer to THIS page, but I see no Details section here, so I'll just put the details where they seem to apply.

Firefox Version 102, installed today, shows the same symptom I've been seeing for several weeks, perhaps months: whenever Firefox is closed, a crash report popup appears on the screen (after a minute or two). I've been submitting these on a regular basis and hoped that Version 102 would contain a fix, but the issue continues.

So today I've created some minimum-to-reproduce examples, in each case using the same setup, but closing Firefox in a different manner:

Setup: Firefox for Windows V 102 installed today. Windows 10 is up to date. I open Firefox in troubleshooting mode, which displays my home page, located on a shared server that I use for a website and other stuff I want to be able to access from anywhere. Nothing exotic, just a list of links. That works.

Then, without doing anything else (for purposes of these tests), I close Firefox via one of the following (with associated report ID):

  • Click on large X in the upper right corner of the window.
   bp-e31ef7d6-8d17-41c8-a204-0e53c0220630e
  • In the window menu, select File > Exit.
  bp-d15f97c8-267f-4550-9d42-69eb70220630
  • On the task bar, RMB on Firefox, then select 'Close window'.
 bp-39756c12-ccb7-4f83-998a-ec8030220630

My system is an HP laptop with AMD Vision A6 processor. My wife uses a Dell all-in-one on the same wired network and does not experience the crash-on-close symptom. This makes me suspect my hardware, but just tested with other browsers:

Chrome - Blocked my home page (never saw that before, but I use Firefox...) until I removed the block from Settings. Closed without crashing. Edge - Updated itself, then gave me the same "Not secure" warning as Chrome, but displayed the home page anyway. Closed without crashing.

In all cases, the link to my home page is specified as http://, not https:// My wife's system is set up the same way.

My question: How can I get Firefox to close gracefully, without spitting out a crash report 1-2 minutes later? Note that I can OPEN Firefox and use it for hours without incident, but if I close it and do something else, when I close THAT, there's the Firefox crash report window underneath.

I just ran the w3.org validator on my home page and I see that a few errors have crept in,. mostly unencoded ampersands. I'll fix those, but if that caused a problem for Firefox, would it wait until much later to crash? And why only on my system, not my wife's?

Suggestions?

Asked by Chris Beall 1 unyaka odlule

Last reply by jscher2000 - Support Volunteer 1 unyaka odlule