Showing questions tagged:

Connexion impossible à ma boite mail Zimbra de Free

Bonjour, lorsque je veux me connecter à ma boite mail Zimbra de Free un message indiquant "chargement en cours" s'affiche après avoir rentré mon identifiant et mot de pas… (read more)

Bonjour, lorsque je veux me connecter à ma boite mail Zimbra de Free un message indiquant "chargement en cours" s'affiche après avoir rentré mon identifiant et mot de passe mais rien ne se passe, la page indiquant se message reste fixe. Pour info je ne rencontre pas se problème lorsque je me connecte avec Google Chrome. Merci de bien vouloir m'indiquer ce qu'il y a lieu de faire pour solutionner ce problème. Cordialement,

Open 16

When i click share in firefox nothing happens

When I'm on websites and there is a share or actually any button or link to click on to share to Facebook, Insagram, etc... Nothing happens on the page. It just sits idle… (read more)

When I'm on websites and there is a share or actually any button or link to click on to share to Facebook, Insagram, etc... Nothing happens on the page. It just sits idle. I can go to Chrome or Edge and I'm able to share from those browsers.

Open 1 10

Why i cant access instagram in this browser?

I tried checking Instagram today but it got stuck in the loading screen and i cant check my friends' DMS, when i try Microsoft edge, it works what's goin on and how can i… (read more)

I tried checking Instagram today but it got stuck in the loading screen and i cant check my friends' DMS, when i try Microsoft edge, it works what's goin on and how can i fix that? i tried clearing cache and it didnt work

Open 1 12

Roblox Page issuies

So, If anyone knows about what i am talking about is that. When loading an Roblox Item from the Martketplace or your invetory or any other page it just not appearing now… (read more)

So, If anyone knows about what i am talking about is that. When loading an Roblox Item from the Martketplace or your invetory or any other page it just not appearing now i do have some adblockers but even if i disable them nothing works I will Also attach an Photo now.

Open 3 101

Blank Tabs - But only once

I am using Firefox 149.0 (64-bit) with Yahoo.Com as my home page. All of a sudden, when I use the search bar at the top of the Yahoo Home Page, Firefox opens up a blank … (read more)

I am using Firefox 149.0 (64-bit) with Yahoo.Com as my home page. All of a sudden, when I use the search bar at the top of the Yahoo Home Page, Firefox opens up a blank tab in response. Doesn't matter what I search for, same thing happens. Then, if I close that blank/empty tab and reattempt the same exact search again, it works fine.

This has been happening only for the past few days - was fine before. Is this Firefox? Or is this Yahoo? And how can I resolve the issue?

Thanks in advance.

Open 1 1 51

Webpages are extremely large/zoomed in but page zoom is at typical 100%.

Certain webpages are now enlarged to the point of being unusable. I have not changed any settings in Firefox. Zoom is at the typical 100% and zooming out does not fix the… (read more)

Certain webpages are now enlarged to the point of being unusable. I have not changed any settings in Firefox. Zoom is at the typical 100% and zooming out does not fix the issue. I have attached a screenshot of what this page looks like so you can see. I have tried searching ways to fix this and cannot figure it out. Help is greatly appreciated.

Open 2 25

Google search not fully working in Firefox but works in Edge.

All of a sudden I Google search in Firefox isn't fully working. I only use Firefox but I tried the same thing in Edge and that works. I can search simple things in Firefo… (read more)

All of a sudden I Google search in Firefox isn't fully working. I only use Firefox but I tried the same thing in Edge and that works. I can search simple things in Firefox e.g. recipe for beef stew but when I ask for natural recipe for stain remover on clothes for example it just comes up with the word "thinking" and nothing else happens. I have NOT changed any settings. Thank you. Oriel

Open 1 73

Intermittent failure to load local resources

I've got an Angular project running locally on my machine (https://localhost:4300 using NodeJS 24.11.1 and Angular 20.3.0) and I can't get it to consistently load files f… (read more)

I've got an Angular project running locally on my machine (https://localhost:4300 using NodeJS 24.11.1 and Angular 20.3.0) and I can't get it to consistently load files for me when I refresh the page.

The network call shows the response coming back, but I'm getting a red ban icon in the Status column instead of 200. Sometimes it's styles.css and nothing looks right. Sometimes it's polyfills.js and I get an error in the console about "In this configuration Angular requires Zone.js". Sometimes, it's one or many chunk-*.js files. Sometimes, it goes back and forth about which it doesn't want to load. And then sometimes, everything is fine. When it fails, it takes between 1 and 20-some-odd refreshes of the page to get it to load properly. The passage of time doesn't seem to make a difference, as sometimes I can recompile the project and jump right into Firefox and it loads fine. Other times, it will only load after I've refreshed multiple times. If it's a JS file that fails, I also see a warning in the console window about "Loading failed for the script with source [filename]".

I've added an exception for the SSL certificate. CTRL+F5 doesn't make a difference in the behavior. The only extensions I have running are LastPass and Bitwarden. The only plugins I have in place are "OpenH264 Video Codec provided by Cisco Systems, Inc." and "Widevine Content Decryption Module provided by Google Inc." I've disabled Enhanced Tracking Protection for the site. I've rebooted and restarted everything.

Any ideas what might cause this? The other developers on the team don't have this issue. I'm using "ng serve --host 0.0.0.0 --ssl xxx-app-name-xxx --live-reload false" to run my environment. What should I be looking for on my machine that might cause this type of intermittent failure?

Open 43

Firefox locks up on You Tube on random pages. Firefox is becoming unreliable daily. Idon't seeany updates or information.

Pages stop on Youtube. Videos won't start or stop after a few seconds. My first choice in browsers has become so unreliable I may be forced to stop suing it after all… (read more)

Pages stop on Youtube. Videos won't start or stop after a few seconds. My first choice in browsers has become so unreliable I may be forced to stop suing it after all these years.

Open 47

Template literal not resolving as expected

I have a directory structure C: Gustafson Website ⋮ scripts global.js ⋮ ⋮ TestDirector… (read more)

I have a directory structure

C:

   Gustafson
       Website
           ⋮
           scripts
               global.js
               ⋮
           ⋮
           TestDirectory
               baseUrl_test.html
           ⋮

In the <head> of a webpage, I determine a baseUrl for the page using the following:

 <script>
   // assumes website topmost directory is "Website""
   ( async ( ) => {
     const segments = document.documentURI.split ( "/");
     const index = segments.findIndex ( element => 
                                        element == "Website" );
     if ( index < 0 )
       {
       throw new TypeError ( 
                 "Website structure not constructed correctly" );
       }
     segments.length = index + 1;
     let path = segments.join ( "/" );
     path += "/";
     window.baseUrl = path;
     console.log(`${baseUrl}`);
     } ) ( );
 </script>

The console log displays

file:///C:/Gustafson/Website/

In the body is

 <script>
   console.log ( `${baseUrl}scripts/global.js` );
 </script>
 <script src=`${baseUrl}scripts/global.js`></script>
 <script>
 window.onload = 
   function ( )
     {
     Global.initialize_globals ( );
     };
 </script>

The console log displays

file:///C:/Gustafson/Website/scripts/global.js Loading failed for the <script> with source “file:///C:/Gustafson/Website/TestDirectory/%60$%7BbaseUrl%7Dscripts/global.js%60”. Uncaught ReferenceError: Global is not defined

   onload file:///C:/Gustafson/Website/TestDirectory/baseUrl_test.html:37
   EventHandlerNonNull* file:///C:/Gustafson/Website/TestDirectory/baseUrl_test.html:34

The problem is the console.log displays what is expected but the src= is using something totally different.

Open 47