• Vyriešené

Blue Squares on my Browser

Hi! I seem to be having an issue with my browser. Every now and then, blue squares will partially or completely replace the icons on my toolbar an search bar, and disappe… (ďalšie informácie)

Hi! I seem to be having an issue with my browser. Every now and then, blue squares will partially or completely replace the icons on my toolbar an search bar, and disappear on its own after a while.

For reference, I currently have several tabs open (13) on a split screen, but only the icons on de left window are affected by this. This started happening this month, prior to this I was able to have multiple tabs open on a split screen without issue.

I'll attach 2 images so you can see what I mean.

I appreciate any advice I get to fix this.

Otázku položil(a) Alex Pred 1 týždňom

Na otázku odpovedal(a) cor-el Pred 6 dňami

Recover Thunderbird email using old profile; current profile was lost.

I had to reformat a hard drive. Unfortunately, my current Thunderbird profile was erased. I have a 7-month earlier profile backed up, and my current emails are still avai… (ďalšie informácie)

I had to reformat a hard drive. Unfortunately, my current Thunderbird profile was erased. I have a 7-month earlier profile backed up, and my current emails are still available from Spectrum webmail. Can I re-install the old profile, and download the newer emails from Spectrum to create a new profile? What is the safest way to proceed and not lose emails? Thanks!

Otázku položil(a) jojotom01 Pred 3 hodinami

Firefox Desktop failed last night 7/24/24 after 8:00 PM PDT the Windows 10 failure message is; XLU runner Error platform version 128.0.2 is not compatible with 128.0 Min or 128.0 Max:

Firefox Desktop failed last night 7/24/24 after 8:00 PM PDT the Windows 10 failure message is; XLU runner Error platform version 128.0.2 is not compatible with 128.0 Min … (ďalšie informácie)

Firefox Desktop failed last night 7/24/24 after 8:00 PM PDT the Windows 10 failure message is; XLU runner Error platform version 128.0.2 is not compatible with 128.0 Min or 128.0 Max:

I need Firefox to run, I can run Google Chrome but want to return to Firefox that failed last night.

Otázku položil(a) Rich. Pred 1 dňom

Posledná odpoveď od Grams Haley Pred 3 hodinami

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… (ďalšie informácie)

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?

Otázku položil(a) mahung Pred 3 hodinami

Using Thunderbird 115.13.0 Not able to send emails. Can receive.

Using Thunderbird 115.13.0 Not able to send emails. Can receive. I am in Canada. Get incoming email from Mail System (NOT MY ISP) Login from Country: US United States P… (ďalšie informácie)

Using Thunderbird 115.13.0 Not able to send emails. Can receive. I am in Canada. Get incoming email from Mail System (NOT MY ISP)

Login from Country: US United States
Please use this url to enable SMTP sending for the new ip address

If you were not sending from this address then change your password IMMEDIATELY as it is known to a hacker g_safe_smtp: Login attempt from unknown address (23.227.149.3) user=wsilvera@uniserve.com. Open this link in your browser to enable logins: http://mx0.uniserve.com/vfy?f=87c21422

My ISP says this is a Thunderbird issue, and they cannot help. Warren

Otázku položil(a) wsilvera Pred 3 hodinami

"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… (ďalšie informácie)

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

Otázku položil(a) LVTguy Pred 3 hodinami

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… (ďalšie informácie)

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

Otázku položil(a) noel_envode Pred 4 mesiacmi

Posledná odpoveď od noel_envode Pred 5 hodinami

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… (ďalšie informácie)

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}");
               }
           }
       }
   }

}

Otázku položil(a) FireFoxCustomWannabe Pred 3 hodinami

Allowed Popups: enter a list of allowed sites?

I save a list of >20 sites on which I allow popups. What is the most efficient way to enter those sites? ==> I would like to avoid entering each one individual… (ďalšie informácie)

I save a list of >20 sites on which I allow popups. What is the most efficient way to enter those sites?

==> I would like to avoid entering each one individually.

TYVM.

Otázku položil(a) ezameht Pred 4 hodinami

Posledná odpoveď od cor-el Pred 3 hodinami

Email List Design: Boxed vs. List

Hi, I recently setup a second computer and installed Thunderbird (Built 115.13.0 (64-bit)) again. I transferred all my preferences, but have this strange problem, that t… (ďalšie informácie)

Hi,

I recently setup a second computer and installed Thunderbird (Built 115.13.0 (64-bit)) again. I transferred all my preferences, but have this strange problem, that the appearance of the email list looks different. In the previously installed version it is a simple list with separators and in the new installed version every email is in a separate box. I included the screenshots as a reference.

I googled and searched the settings to align this, but unfortunately without success. Does anyone know how to change this?

Thank you!

Otázku položil(a) Groot Pred 10 hodinami

Posledná odpoveď od Groot Pred 3 hodinami

Ticket # 158963

Here is the message response from you all?? However, I cannot seem to find the answer to my question?? Please Help Me. Please let me know if I need to go again in detail … (ďalšie informácie)

Here is the message response from you all?? However, I cannot seem to find the answer to my question?? Please Help Me. Please let me know if I need to go again in detail of my problem??

Mozilla Support <product-help@firefox.com>

    1. - Please type your reply above this line -## Hello, Thank you for reaching out to us. We’ve received your support request and opened a ticket (158963). We are processing your request. We appreciate our subscribers and will make every effort to get back to you within 2 business days.

Otázku položil(a) heartattackla Pred 15 hodinami

Posledná odpoveď od James Pred 4 hodinami

When I try to access one of several email accounts, Thunderbird goes to Not Responding

I have had 5 email accounts set up with Thunderbird for several years. Just recently Thunderbird freezes when I try to access that email account. If I click on that email… (ďalšie informácie)

I have had 5 email accounts set up with Thunderbird for several years. Just recently Thunderbird freezes when I try to access that email account. If I click on that email account a second time, I get a Not Responding error at the top of the screen.

I upgraded to 128.0.1esr, but no change.

Ideas?

Thanks, Tom

Otázku položil(a) tom427 Pred 4 hodinami