Showing questions tagged: Show all questions
  • Archyvinta

Google maps malfunction after 100th release

Since the last two updates, google maps opens, but it is impossible to MOVE the map. Zoom works ok. Navigation pane also stopped working, impossible to enter addresses f… (read more)

Since the last two updates, google maps opens, but it is impossible to MOVE the map. Zoom works ok. Navigation pane also stopped working, impossible to enter addresses for navigation.

Asked by starwashzg Prieš 2 metus

Last reply by starwashzg Prieš 2 metus

  • Archyvinta

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… (read more)

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 Prieš 2 metus

Last reply by cor-el Prieš 2 metus

  • Archyvinta

Wrong colors when uploading photo to Facebook (via FB wall)

Hi! I am not sure, if Mozilla is the reason, or Facebook is the reason. But since I can't get any help from FB, I'd like to check also here. At first, I thought that … (read more)

Hi!

I am not sure, if Mozilla is the reason, or Facebook is the reason. But since I can't get any help from FB, I'd like to check also here.

At first, I thought that the problem is on my side, since I am using ICC profiles and maybe I did something wrong. But It is not the problem on my side. I tried with an original jpg file, directly from my camera.

So, when I upload JPG to the Facebook, color of the image changes. This happens only if I publish it directly to my FB wall. If I go to FB "publishing tools" (on FB pages), everything works normal. If I upload the same photo via for example Chrome or Vivaldi, everything works, even if I upload directly to the FB wall.

So the problem occurs only If I upload from Mozilla (I have latest version 100) to the FB wall. Not via "publishing tools" on FB page. But problem is the same if I publish on my FB business page wall. So I assume that the problem is on FB side, that somehow renders files differently then via their Publishing tools. But I am allowing that Mozilla does something to them via the interface.

There must be some problem with Mozilla too, since all images work OK with Chrome or Vivaldi. So, something in relation of Mozilla - Facebook wall.

Currently I just use Chrome for uploading to FB, but I don't want that.

Not sure what to do now. FB does not reply, maybe Mozilla can help or check? I attached a sample photos, to see difference. Here is my Mozilla gfx.color profile too: https://i.ibb.co/CWRHWnh/6.jpg

Asked by S. Prieš 2 metus

Last reply by S. Prieš 2 metus

  • Archyvinta

Gmail "open message in new window" redirect fails since updating to FF 100.0.1

I have two Gmail Workspace accounts logged in to two different tabs in one FF browser window. Have used this set-up for years. However, ever since updating to FF 100.0… (read more)

I have two Gmail Workspace accounts logged in to two different tabs in one FF browser window. Have used this set-up for years. However, ever since updating to FF 100.0.1, when I try to open an email thread in a new window (pops out the message into a separate window), there is a "cannot properly re-direct error" that appears.

Only way to resolve this appears to be clearing the cache for mail.google.com and signing in again to both accounts. However, this solution only appears to work for a day or two before the "redirect error in a new window" occurs again.

This error does not occur in Private Browsing mode, and Google Workspace support has confirmed it is not an issue with Gmail/ Workspace.

Any thoughts on how this can be fixed? I have disable all "enhanced tracking protection"

Thank you for your time and help,

Asked by muzzle Prieš 2 metus

Last reply by jonzn4SUSE Prieš 2 metus

  • Archyvinta

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… (read more)

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 Prieš 2 metus

Last reply by cor-el Prieš 2 metus

  • Archyvinta

How to stop Firefox from downlading htm files?

How to stop firefox from downloading x.htm files? I have checked "Always ask me where to save files" in the Downloads menu, for every file type available there, and it st… (read more)

How to stop firefox from downloading x.htm files? I have checked "Always ask me where to save files" in the Downloads menu, for every file type available there, and it still will download x.htm without asking.

Asked by Leszek Prieš 2 metus

Last reply by Leszek Prieš 2 metus

  • Archyvinta

Diffulty paying my bills

I could not pay my bills at handelsbanken.se today... so they adviced me to try another browser and I had to use Edge for the first time ever... and that worked. Why coud… (read more)

I could not pay my bills at handelsbanken.se today... so they adviced me to try another browser and I had to use Edge for the first time ever... and that worked. Why coud I not pay my bills with firefox as usual?

Wondering Pirjo

Asked by PirjoSundqvist Prieš 2 metus

Last reply by PirjoSundqvist Prieš 2 metus

  • Archyvinta

Open tabs from last session but with specific tab active

Hello, I use FF with the setting on start to restore the tabs of the last session. Now I need a specific tab active/focused on start. (It is a WebRTC for our phone syst… (read more)

Hello,

I use FF with the setting on start to restore the tabs of the last session.

Now I need a specific tab active/focused on start. (It is a WebRTC for our phone system and if it not focused at start ring tone will not be played)

Is there a way to start with my last opened tabs restored but this specific tab active and in selected/focused.

Pinning this tab seems to load it but WILL not play a ringtone without clicked first. If I end FF with this tab active and therefore the tab is active on next start the ring tone will be played.

But knowing me I WILL forget to click on this tab either on start or before ending FF.

Regards

Asked by marco.mueller Prieš 2 metus

Last reply by marco.mueller Prieš 2 metus

  • Archyvinta

Since updating to Firefox 100.0.1 cannot print any web pages.

Since updating to Firefox 100.0.1 cannot print any web pages. Cannot print to a printer, or to FoxIt pdf printer. Printing in MS Edge works with no problems. I have cl… (read more)

Since updating to Firefox 100.0.1 cannot print any web pages. Cannot print to a printer, or to FoxIt pdf printer. Printing in MS Edge works with no problems. I have cleared saved print settings - did not fix problem. Please advise. Thank you.

Asked by fdispensiere1 Prieš 2 metus

Last reply by cor-el Prieš 2 metus

  • Archyvinta

Need Access to my website

Firefox keeps telling me that I need access to my account on my website http://www.playgroundforthesoulcenter.com. How do I remedy this? … (read more)

Firefox keeps telling me that I need access to my account on my website http://www.playgroundforthesoulcenter.com. How do I remedy this?

Asked by marianag6 Prieš 2 metus

Last reply by Terry Prieš 2 metus

  • Archyvinta

cycling error

I reported this error; however, I still do not have an answer. MS Edge works perfectly; why does Firefox get stuck in a "forever" loop during the Monrovia Website searc… (read more)

I reported this error; however, I still do not have an answer.

MS Edge works perfectly; why does Firefox get stuck in a "forever" loop during the Monrovia Website search? See the attached jpg.

Asked by kinnear333 Prieš 2 metus

Last reply by cor-el Prieš 2 metus

  • Archyvinta

stop navbar searching permanently

If I wanted to use the navbar for search I'd set it up that way. I don't, and I'm getting really sick of doing this... type in searchBar "about:config" Accept war… (read more)

If I wanted to use the navbar for search I'd set it up that way. I don't, and I'm getting really sick of doing this...

    type in searchBar "about:config"
   Accept warning
   Search "browser.urlbar.suggest.searches" and change it to false (Do this Only if you want to disable suggesions)
   Search "keyword.enabled" and change it to false
   Search "browser.fixup.alternate.enabled" and change it to false 

every time I open Firefox or a new tab in Firefox.

I'd like the option of not having it search in the navbar, ever. I search using Google. I like Google. I've been a big fan and supporter of Firefox for years, but this constantly having to deal with the search in the navbar thing, which I don't want it to do, is really turning me off of Firefox. I hate the Microsoft junk, Explorer and Edge, and I don't like Chrome either, but I'm getting really sick of Firefox trying to shove this Search via the navbar thing down my throat.

How do I disable navbar search permanently, or am I just stuck with redoing it every time I open Firefox or a new tab, at least until I get completely fed up and decide to give another browser a try at replacing Firefox?

Asked by deannag65 Prieš 2 metus

Last reply by Terry Prieš 2 metus

  • Išspręsta
  • Archyvinta

Anyone else lose Dashlane with every Firefox update?

Seems as if Firefox is updating every other day lately. I have Dashlane on my tool bar, and it seems to freeze/disable after every update. When I open Dashlane separate… (read more)

Seems as if Firefox is updating every other day lately. I have Dashlane on my tool bar, and it seems to freeze/disable after every update. When I open Dashlane separately in the browser and log in, it congratulates me on installing it on a new device. What is Firefox changing with its updates that makes my computer look different to Dashlane? I cannot find the Dashlane version running but I do have it on automatically update.

Asked by shubunkinarts Prieš 2 metus

Answered by shubunkinarts Prieš 2 metus

  • Archyvinta

Selectively allow websockets

Firefox supports Websockets, which allows servers to push arbitrary data to the client, instead of having to rely on polling methods via HTTP and JS. Whilst solving one p… (read more)

Firefox supports Websockets, which allows servers to push arbitrary data to the client, instead of having to rely on polling methods via HTTP and JS. Whilst solving one problem, it creates another. I do not like the idea that any website can just ask Firefox to make a persistent WS connection without my consent. The same is true for service workers, but (unlike websockets) i'm not at all interested in using those. Luckily there's a configuration option to disable support for websockets, network.websocket.enabled, wich is exactly what i've done.

Is there a way to selectively allow websockets, based on IP or domain? If not, why isn't there one? Am i really the lone outsider who's concerned about security?

Asked by BjornR1989 Prieš 2 metus

Last reply by cor-el Prieš 2 metus

  • Archyvinta

What happens if I uninstall and reinstall Firefox

Firefox is just not working for me. It's not reading the stylesheets on my website, tabs are disappearing but the websites are still open. It seems the installation may h… (read more)

Firefox is just not working for me. It's not reading the stylesheets on my website, tabs are disappearing but the websites are still open. It seems the installation may have become corrupt. If I uninstall and reinstall what data will I lose if any?

Asked by mrsyardbroom Prieš 2 metus

Last reply by mrsyardbroom Prieš 2 metus

  • Archyvinta

Página no segura. Imposible crear excepción

Buenos días Estoy utilizando una web cuya certeza de seguridad es absoluta, pero el navegador no lo cree así. Necesito crear una excepción para la misma. Me conecto a tr… (read more)

Buenos días Estoy utilizando una web cuya certeza de seguridad es absoluta, pero el navegador no lo cree así.

Necesito crear una excepción para la misma. Me conecto a través de una VPN en un navegador instalado en una VM. Todo funcionaba correctamente, hasta que hoy he actualizado el navegador.

Ahora aparece momentaneamente (entorno a medio segundo) la típica página que te alerta de que la web puede no ser segura, donde salen 2 botones, el que dice: "Retroceder (recomendado)" y el de: "Avanzado" para añadir una excepción. Pero automáticamente el navegador carga otra página que dice: "Uf. Tenemos problemas para encontrar ese sitio".

Este ordenador es seguro, está en una intranet (o más bien extranet) así que me sobra al seguridad. No la quiero desactivar al 100% por que hay veces que no uso la VPN, pero ecesito poder conectarme a esa web.

¿Alguna solución? Ya he intentado varias cosas buscando en google, y nada funciona.

Asked by JCVL Prieš 2 metus

Last reply by JCVL Prieš 2 metus

  • Archyvinta

Downloads seem to be blocked randomly, "allow download" button does nothing and downloads are continually blocked on certain sites

Certain sites (the latest being https://azgaar.github.io/Fantasy-Map-Generator/, which i've downloaded successfully from before) cannot be downloaded from - firefox gives… (read more)

Certain sites (the latest being https://azgaar.github.io/Fantasy-Map-Generator/, which i've downloaded successfully from before) cannot be downloaded from - firefox gives the error of "[site] attempted to automatically download multiple files. The site could be broken or trying to store spam files on your device."

I know these downloads aren't spam or malicious, but when I hit the "Allow" button to give permission, there's no change. The downloads remain blocked and new downloads are blocked.

I've turned off my antivirus shields to see if that was causing it, but to no results.

I sincerely thank you for your time and know that you're quite busy, and look forward to hearing back about this issue.

- Jae

Asked by engitainment Prieš 2 metus

Last reply by Terry Prieš 2 metus

  • Archyvinta

FireFox is schizophrenic

I am an a US citizen, living in Europe! How do I keep Mozilla from changing languages on me? I just connected my Laptop PC and everything is in the German language. Why… (read more)

I am an a US citizen, living in Europe! How do I keep Mozilla from changing languages on me? I just connected my Laptop PC and everything is in the German language. Why? I'm sorry, but I must insist that Mozilla stop doing this. My mother tongue is American English, and when I keep getting your communications in a foreign language, there is a good possibility that I might misinterpret what has been written by Mozilla to me. Or is the problem with me living in Europe?

Asked by warp4dennis Prieš 2 metus

Last reply by cor-el Prieš 2 metus

  • Archyvinta

My Amazon saved password changed to huge random letters numbers

My Amazon saved password in Firefox was changed to this, I did not change it... AYAAFIwbbsHulukAsp9nmonLDTYAAAABAAZzaTptZDUAIDU2ZDE0ZWRjZThlMmNiNmM2ODQyYzU5ZGRhZWU0MjZlA… (read more)

My Amazon saved password in Firefox was changed to this, I did not change it...

AYAAFIwbbsHulukAsp9nmonLDTYAAAABAAZzaTptZDUAIDU2ZDE0ZWRjZThlMmNiNmM2ODQyYzU5ZGRhZWU0MjZlAQALgvrCglB2+5Oqb4cGDqMH4GwkMnHYKkY0ybmrrevxTocnv1iLASU72HPYj+S8ikoYhVMWqzyI7nPTSoMdZG39mKXaEWdCfyyxor6T+o+GTb7FmQ+a3PWID3KzpDil0Dbuw8kcUj/61HZwKGItetIecQmN/OEYBeYnIMHR9LibLLGUEhfhl32NF73Sh5sumpCc5mdf5JL5yIyWSPtEbnnVX3iHDe6pgDaoiXWVeJp9TbRTo0ZLE1YUOuA5R14fCu+hgxrhK02AZG3Hb3OO/NppbKxsZJmRtvNw6IutUG/PzT4BoUQJqTHlY8Nhd4KNUiVuhRA46MJGlZ7ZL0K48rGFAgAAAAAMAAAAEAAAAAAAAAAAAAAAAHLNFSOU15TV00QmULsKw3X/////AAAAAQAAAAAAAAAAAAA

Asked by stan738 Prieš 2 metus

Last reply by stan738 Prieš 2 metus