Economist article links fail

Some months back when I get gmail from the Economist and try to go to an article the gmail links to I get this: Our apologies. An error seems to have occurred. The art… (lire la suite)

Some months back when I get gmail from the Economist and try to go to an article the gmail links to I get this: Our apologies. An error seems to have occurred. The article actually appears very briefly but then gets overwritten by this error message. I am using an up to date Windows 10 PC.

When I go to Microsoft Edge this behavior does not occur. In Firefox I have tried clearing the data and cache but to no avail.

Any thoughts on dealing with this? I do not want to go through many heroic steps to fix this.

Demandé par Les il y a 20 minutes

Firefox updated to 127 even though I indicated not to

I first mentioned this in r/Firefox, and was asked to re-post here. My FF just updated to 127.0.1 even though I have "Check for updates but let you choose to install the… (lire la suite)

I first mentioned this in r/Firefox, and was asked to re-post here.

My FF just updated to 127.0.1 even though I have "Check for updates but let you choose to install them" and told it to wait. This was on a Windows 11 box. Everything seemed fine, but then one of my tabs crashed. I selected the reload tab option, at which point it informed me it could not load the tab because a background update had happened and I was now required to restart Firefox.

I'm not certain what version of FF I was on, I believe it was either 126 or 126.0.1.

Now, to be completely fair, I cannot with 100% certainty say that I clicked on the update later option. That said, as I _did not want to update then_, and I have put off the update before, it seems unlikely I would have made the mistake, but I wasn't recording everything I did so I can't play it back and prove it. My initial reaction was to associate it with the tab crashing somehow, as everything was working as expected right up until that moment.

Thanks

Demandé par pobox3 il y a 3 semaines

Dernière réponse par pobox3 il y a 4 heures

Is allowing firefox notifications itself a security threat?

I use a ThinkPadNotebook with Windows. While surfing with Firefox, in a careless moment I clicked "allow" at a notification request of a suspicious website (qltuh.check… (lire la suite)

I use a ThinkPadNotebook with Windows. While surfing with Firefox, in a careless moment I clicked "allow" at a notification request of a suspicious website (qltuh.check-tl-ver-116-1.com). After this a few other websites opened up rapidly and soon after notification at the bottom right corner of the screen appeared. I immediately went offline and deactivated the corresponding permission for notifications in firefox. In particular, I did not follow any link displayed on the bottom right notifications.

My question is: Did simply granting permission of notification to this webiste create a security risk on my desktop? Or can I rest assured, since I revoked the permission and in the meantime did not follow any links displayed by the notification?

Thanks for help and clarification!

Demandé par johannes.baptist.froehlich il y a 4 heures

Dernière réponse par johannes.baptist.froehlich il y a 1 heure

Pinned tabs disappear when window is closed when other firefox windows are open

https://bugzilla.mozilla.org/show_bug.cgi?id=1909997 This is an annoying issue because I frequently have multiple windows opened on multiple monitors. If I close the wi… (lire la suite)

https://bugzilla.mozilla.org/show_bug.cgi?id=1909997

This is an annoying issue because I frequently have multiple windows opened on multiple monitors. If I close the window that has all the tabs and open a new instance of firefox, the pinned tabs disappear. Such an awfull design. The pinned tabs should replicate to all other opened windows and stay pinned until the user manually unpins them.

Demandé par matt581780 il y a 3 heures

Dernière réponse par matt581780 il y a 1 heure

Restoring Data From Accidently Removed Extension

I mistakenly removed an important extension (LinkLocker, which I wrote, actually) from my synced work computer, not realizing it would be removed from my home laptop as w… (lire la suite)

I mistakenly removed an important extension (LinkLocker, which I wrote, actually) from my synced work computer, not realizing it would be removed from my home laptop as well.

Unfortunately, I saved a significant amount of data in that extension's storage and, after reinstalling it, can't seem to recover it.

Is this data lost forever or is there some place I can look to find it?

Demandé par dougpowers9061 il y a 1 heure

Firefox Logo

Other software I use show a logo in the upper left window corner or program name in the title bar or both. Firefox and MS Edge show neither. When both are open I can't te… (lire la suite)

Other software I use show a logo in the upper left window corner or program name in the title bar or both. Firefox and MS Edge show neither. When both are open I can't tell from a glance which is which. If I remember correctly, in days gone by Firefox showed its logo in the title bar. Is there any setting to turn this on?

Demandé par mahung il y a 2 heures

"This Page isn't Redirecting Properly" Error

I have attached several screen shots to describe the problem I have been experiencing with FireFox and E-trade (only). The problem started 2 days ago. Window 11 - curre… (lire la suite)

I have attached several screen shots to describe the problem I have been experiencing with FireFox and E-trade (only). The problem started 2 days ago.

Window 11 - current Firefox - current 128.0.3 (64-bit)

The screen error that I am getting for the last two days is shown in attch #1

Looking at attch #2, the error occurs when I select any of the optional links starting with "Chart" and all other links that follow; the 1st two links are:

"Charts" link is https://us.etrade.com/e/t/invest/wsoddirect?wsod_page=/v1/stocks/charts/charts.asp?symbol=MS "News" link is https://us.etrade.com/e/t/invest/wsoddirect?wsod_page=/v1/stocks/news/search_results.asp?symbol=MS

All other equity stock main screens have the same problem.

Googling the error presented these suggestions (but nothing fixed the problem>) In Firefox Settings I have - cleared Cookies with "All Data" - HTTPS-only Mode is"disabled"; - "Enable DNS over HTTPS" is default Protection

Not sure what else to try. No problems occur with Chrome.

Suggestions? Bob

Demandé par LVTguy il y a 2 heures

Update to beta prompt

Fx 124.0 Why am I getting these notifications? I have the latest version, but this prompt not only asks me to update, but there's no mention that it will install the bet… (lire la suite)

Fx 124.0

Why am I getting these notifications? I have the latest version, but this prompt not only asks me to update, but there's no mention that it will install the beta 125.0 beta 1

Demandé par noel_envode il y a 4 mois

Dernière réponse par noel_envode il y a 4 heures

Here's working C# source code to open and arrange 3 Firefox browsers on a 4K monitor wtih Windows

modify to suit your tastes or improve it? working now without any known issues. using System.Diagnostics; using System.Runtime.InteropServices; using System.Text; name… (lire la suite)

modify to suit your tastes or improve it? working now without any known issues.

using System.Diagnostics; using System.Runtime.InteropServices; using System.Text;

namespace FirefoxWindowPositioner {

   class Program {
       [DllImport("user32.dll", SetLastError = true)]
       private static extern bool MoveWindow(IntPtr hWnd, int X, int Y, int nWidth, int nHeight, bool bRepaint);
       [DllImport("user32.dll", SetLastError = true)]
       private static extern bool EnumWindows(EnumWindowsProc lpEnumFunc, IntPtr lParam);
       [DllImport("user32.dll", SetLastError = true)]
       private static extern uint GetWindowThreadProcessId(IntPtr hWnd, out uint lpdwProcessId);
       [DllImport("user32.dll")]
       [return: MarshalAs(UnmanagedType.Bool)]
       private static extern bool IsWindowVisible(IntPtr hWnd);
       [DllImport("user32.dll", SetLastError = true)]
       private static extern IntPtr GetWindow(IntPtr hWnd, uint uCmd);
       [DllImport("user32.dll", SetLastError = true)]
       private static extern int GetWindowText(IntPtr hWnd, StringBuilder lpString, int nMaxCount);
       [DllImport("user32.dll", SetLastError = true)]
       private static extern int GetClassName(IntPtr hWnd, StringBuilder lpClassName, int nMaxCount);
       private const uint GW_OWNER = 4;
       private const int MaxRetries = 100;
       private const int SleepTime = 200;
       private const string ClassNameToFind = "MozillaWindowClass";
       private delegate bool EnumWindowsProc(IntPtr hWnd, IntPtr lParam);
       private static IntPtr foundWindowHandle = IntPtr.Zero;
       private static bool EnumWindowsCallback(IntPtr hWnd, IntPtr lParam) {
           uint processId;
           GetWindowThreadProcessId(hWnd, out processId);
           if (IsWindowVisible(hWnd) && GetWindow(hWnd, GW_OWNER) == IntPtr.Zero) {
               StringBuilder className = new StringBuilder(256);
               GetClassName(hWnd, className, className.Capacity);
               if (className.ToString() == ClassNameToFind) {
                   foundWindowHandle = hWnd;
                   Console.WriteLine($"Found window handle {hWnd} for process ID {processId}");
                   return false; // Stop enumerating windows once the desired window is found
               }
           }
           return true; // Continue enumerating windows
       }
       static void Main(string[] args) {
           string path = @"C:\Program Files\Mozilla Firefox\firefox.exe";
           // Define positions and sizes
           int[,] positions = new int[,]
           {
               {0, 0, 1284, 2120},
               {1280, 0, 1284, 2120},
               {2560, 0, 1284, 2120}
           };
           int initialDelay = 750; // Initial delay in milliseconds, 1000 worked
           int retryDelay = 200; // Delay between retries in milliseconds
           // Start three Firefox processes sequentially and move them to specified positions
           for (int i = 0; i < 3; i++) {
               Process firefoxProcess = Process.Start(path);
               Thread.Sleep(initialDelay); // Wait for the process to initialize
               foundWindowHandle = IntPtr.Zero;
               int retries = 0;
               while (foundWindowHandle == IntPtr.Zero && retries < MaxRetries) {
                   EnumWindows(EnumWindowsCallback, IntPtr.Zero);
                   if (foundWindowHandle == IntPtr.Zero) {
                       Thread.Sleep(retryDelay); // Wait before retrying
                       retries++;
                   }
               }
               if (foundWindowHandle != IntPtr.Zero) {
                   bool success = MoveWindow(foundWindowHandle, positions[i, 0], positions[i, 1], positions[i, 2], positions[i, 3], true);
                   if (success) {
                       Console.WriteLine($"Moved window {i + 1} to X: {positions[i, 0]}, Y: {positions[i, 1]}, Width: {positions[i, 2]}, Height: {positions[i, 3]}");
                   } else {
                       Console.WriteLine($"Failed to move window {i + 1}");
                   }
               } else {
                   Console.WriteLine($"Failed to get handle for Firefox process {i + 1}");
               }
           }
       }
   }

}

Demandé par FireFoxCustomWannabe il y a 2 heures

Sync: failure

I was forced to do issues with my windows to reinstall, not having the ability to backup anymore due to the errors. So after reinstalling windows I install firefox, I lo… (lire la suite)

I was forced to do issues with my windows to reinstall, not having the ability to backup anymore due to the errors.

So after reinstalling windows I install firefox, I log in and it doesn't sync. Searching for a solution I found one that stated, if you have a backup of your files restore those into the new firefox profile. I do that and it shows a syncing animation shortly. Nothing happens though.

I start searching for other solutions, there they state just make a new profile via about:profiles and log in. I do so and it works, it starts syncing, but the problem now is it synced what synced in that other profile. So that other profile never really synced as in it did not grab from the cloud but rather it only upped and with that I guess overwrote everything what I had there? None of my later bookmarks are there, I only have what I had as a physical backup now. Why does sync work so? Not my first fight with sync, but I never lost data like this.

Kinda wish the sync interface was user-friendlier, where I can see what is overwritten or at least that I can choose to upload or download from sync when I log in. Instead of it choosing for me to just upload...

Demandé par FROG il y a 3 heures

Recovering bookmarks from a crashed internal drive windows 7 into a new drive

My windows 7 hard drive crashed and I was able to recover most of the data but I am not able to find my old bookmarks from the old crashed drive into the new working driv… (lire la suite)

My windows 7 hard drive crashed and I was able to recover most of the data but I am not able to find my old bookmarks from the old crashed drive into the new working drive. I currently have the crashed drive as a slave drive and can access folders but how do I transfer the old bookmarks to the newly installed hard drive?

Demandé par frank951s il y a 3 heures

How to add new options to the taskbar context menu?

Currently the taskbar icon only offers a few tasks in the context menu, such as open new tab, new window or private new window. I understand that accessing about:config… (lire la suite)

Currently the taskbar icon only offers a few tasks in the context menu, such as open new tab, new window or private new window.

I understand that accessing about:config would allow me some other options, such as recently visited pages. And also allows me to remove those tasks.

I want to add the option to select which profile I open from that menu, instead of opening the default one, then selecting the correct profile in about:profiles that, in turn opens yet another window.

I tried adding a value "browser.taskbar.lists.profiles.enable" and several variations of that command. None worked.

Is there a way to add that option, so when I right-click the icon in the taskbar I can directly select the profile I want to launch?

Demandé par luizobe il y a 10 heures

Dernière réponse par luizobe il y a 3 heures

PasswordBoss

It has been four weeks now that you have disabled PasswordBoss I have been using firefox for about 15 years now. I under stand that PasswordBoss has sent you the informat… (lire la suite)

It has been four weeks now that you have disabled PasswordBoss I have been using firefox for about 15 years now. I under stand that PasswordBoss has sent you the information you requested and you have done nothing for three weeks now please fix this or i will uninstall Firefox and never use it again. I am sure you really don't care but i have quite a few clients that use Firefox and PassordBoss as well i will also recommend removal of firefox as well This is ridicules that is is taking this long.

Demandé par rstevens2024 il y a 3 heures

Usernames and Passwords

My firefox recently stopped auto populating my usernames and passwords. I have double and triple checked all my settings. I have updated to latest release of Firefox. I h… (lire la suite)

My firefox recently stopped auto populating my usernames and passwords. I have double and triple checked all my settings. I have updated to latest release of Firefox. I have rebooted my computer. Please help

Demandé par angieroyal il y a 4 heures

Autocomplete disabled at Chase.com

Recently, Chase seems to have disabled autocomplete on their login pages (www.chase.com and secure.chase.com). Saved usernames and passwords no longer auto-populate. Ye… (lire la suite)

Recently, Chase seems to have disabled autocomplete on their login pages (www.chase.com and secure.chase.com). Saved usernames and passwords no longer auto-populate. Yet, Chrome and Edge have been unaffected. Can anyone at Mozilla address this?

Demandé par TIKD il y a 5 heures