Εμφάνιση ερωτήσεων με ετικέτες: Εμφάνιση όλων των ερωτήσεων

I want back the toolbsr icon for "History" Please do not suggest a three stroke keyboard alternative.

A recent Firefox upgrade eliminated my toolbar "History" Icon. I want it back. Please do not suggest a three stroke keyboard alternative. Thank you. Alan Morrissey … (διαβάστε περισσότερα)

A recent Firefox upgrade eliminated my toolbar "History" Icon. I want it back. Please do not suggest a three stroke keyboard alternative. Thank you.

Alan Morrissey

Ερώτηση από amorriss46 1 εβδομάδα πριν

Τελευταία απάντηση από cor-el 1 εβδομάδα πριν

McAfee malware added several days ago

McAfee malware has entered the firefox browser a couple of days ago claiming viruses have been detected & requires me to click on their popup to remove it. Additiona… (διαβάστε περισσότερα)

McAfee malware has entered the firefox browser a couple of days ago claiming viruses have been detected & requires me to click on their popup to remove it. Additional warning follow and reoccur every couple of minutes. I don’t have McAfee Anti-virus software on my computer & have not installed any new software for some time. The anti-software I have works fine (Spybot & Microsoft Security Essentials) and detects no problems. The first application I initiate upon boot-up each morning is Firefox and that’s when the problem begins. It is somehow related to Firefox. I cannot find any processes in play.

I can open Chrome with no problems (however, Chrome no longer supports Windows 7. I’m using Windows 7 Pro. I tried all the free malware scanning programs suggested but nothing found.

I cannot find any link to Firefox Desktop Support as you suggested. Can you please forward this email to that support team.

Sincerely, [removed email and phone# from public support forum], Florida

Ερώτηση από roribe 1 εβδομάδα πριν

Τελευταία απάντηση από James 1 εβδομάδα πριν

Background processes

Hello Firefox community and thank you for your time and effort. Let me begin by saying I used to have this same issue with MS operating systems until I said goodbye to M… (διαβάστε περισσότερα)

Hello Firefox community and thank you for your time and effort. Let me begin by saying I used to have this same issue with MS operating systems until I said goodbye to MS and went to Linux on one laptop and got a Mac for streaming and graphics. Here is the issue: MS had so many background processes running constantly, regardless of what I was using the machine for, that I regularly experienced crashes, warnings and slowed responses on my Windows machines. No matter how vigilant I was about settings and stopping processes and keeping system clean, I would regularly have to replace the fan on my machines as the constant overheating would eventually kill the fans. That has not been a problem since I made that switch away from MS. Until now. I keep clean machines and keep them updated religiously. But with the latest few Firefox updates the problem is now back on both my Linux built Lenovo and my MacBook Pro, especially the Mac. That regularly shuts down after an hour of streaming use. When I hear the fan constantly struggling and feel the machines heating up I check the background processes and find that Firefox has at least four running processes eating up resources. Force stop does not fix the resource hogging; by the time it is apparent and I respond the machine is already overheated and shuts itself down. Last night I started searching and found a (very) recent thread about this same issue. Most of the participants were attributing it to recent updates. If this is the case is there any effort to fix this? I would hate to have this issue completely destroy my older (but still heavily relied upon) MacBook with this constant mechanical challenge since I cannot afford to replace it. Please can you fix this problem. It is an old and exhausting struggle I thought I would not have to deal with again. If my assumption of the source of the problem is inaccurate do you have any suggestions? Thanks again, Jerri

Ερώτηση από jerri.lynn007 1 εβδομάδα πριν

Τελευταία απάντηση από TyDraniu 1 εβδομάδα πριν

not able to find JAVA PLUGIN "JAVA TM PLATFORM SE8 U341 for running digital key

Dear Sir, we are unable to get plugin JAVA TM PLATFORM SE8U341 for running digital key. i have requisite software installed in my system. Please guide. I have attached sc… (διαβάστε περισσότερα)

Dear Sir, we are unable to get plugin JAVA TM PLATFORM SE8U341 for running digital key. i have requisite software installed in my system. Please guide. I have attached screenshot regarding the same.

Ερώτηση από jayant kumar 1 εβδομάδα πριν

Τελευταία απάντηση από James 1 εβδομάδα πριν

Can't access Lowes web site

All of a sudden I can't access Lowe's or Home Depot web sited from my browser. I get the following message- You don't have permission to access "http://www.lowes.com/" o… (διαβάστε περισσότερα)

All of a sudden I can't access Lowe's or Home Depot web sited from my browser. I get the following message-

You don't have permission to access "http://www.lowes.com/" on this server.

Reference #18.c159c817.1717595309.c95b81

https://errors.edgesuite.net/18.c159c817.1717595309.c95b81

Never had this problem before. I get the same message when attempting tp access Home Depot.

Please help if you can

Ερώτηση από bpittner18 1 εβδομάδα πριν

Τελευταία απάντηση από Agent virtuel 1 εβδομάδα πριν

Firefox 126.0.1

Every half hour the browser freezes and turns off, this did not happen in previous versions of the browser, some bug was made during the development of the update, it is … (διαβάστε περισσότερα)

Every half hour the browser freezes and turns off, this did not happen in previous versions of the browser, some bug was made during the development of the update, it is necessary to fix the bug and release the update

Ερώτηση από mackarov.o 1 εβδομάδα πριν

Τελευταία απάντηση από TyDraniu 1 εβδομάδα πριν

Obscure canvas rendering issue

Hello, I have created a webpage with a canvas element that allows the user to draw an irregular path by pressing down the mouse, similar to the free drawing of a paint … (διαβάστε περισσότερα)

Hello,

I have created a webpage with a canvas element that allows the user to draw an irregular path by pressing down the mouse, similar to the free drawing of a paint application. The issue is that the very first time that the user presses the mouse, the line stops abruptly, while the next times the lines are drawn correctly. The events seem to fire correctly and the page works fine at Chromium, so it seems to be a Firefox issue. You can find the html page below. I am curious, what could be the problem?

<!DOCTYPE html>
<html lang="el">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Canvas</title>
  <style>
    #canvas {
      background-color: whitesmoke;
      border: solid 2px brown;
    }
  </style>
</head>

<body>
  <canvas id="canvas"></canvas>

  <script>
    function startDrawing(e) {
      isDrawing = true;
      context.beginPath();
      context.moveTo(e.offsetX, e.offsetY);
    }

    function draw(e) {
      if (isDrawing) {
        context.lineTo(e.offsetX, e.offsetY);
        context.stroke();
      }
    }

    function stopDrawing(e) {
      console.log("stopped drawing")
      isDrawing = false;
    }

    const canvas = document.getElementById('canvas');
    const context = canvas.getContext('2d');
    var isDrawing = false;
    canvas.width = 1000;
    canvas.height = 1000;
    context.strokeStyle = "#913d88";
    context.lineWidth = 2;
    canvas.onmousedown = startDrawing;
    canvas.onmouseup = stopDrawing;
    canvas.onmousemove = draw;
  </script>
</body>

</html>

Ερώτηση από ngiatsog 1 εβδομάδα πριν

Τελευταία απάντηση από jscher2000 - Support Volunteer 1 εβδομάδα πριν

firefox ate my history

after downloading and installing v.126 of firefox, my history has disappeared. the browser is not generating new history from web site visits. the history is fixed perman… (διαβάστε περισσότερα)

after downloading and installing v.126 of firefox, my history has disappeared. the browser is not generating new history from web site visits. the history is fixed permanently on a single web address. this is the web address of a site that is in my toolbar. this site cannot be deleted from the history. this site cannot be deleted through the preferences menu. the same site shows in the history file as the only site visited in the past several months, even though i have not visited that site in the past several months. the browser does not show my browsing history. the browser does not create a browsing history. my history function is permanently broken.

help?

Ερώτηση από drollere 1 εβδομάδα πριν

Τελευταία απάντηση από jscher2000 - Support Volunteer 1 εβδομάδα πριν

Firefox’s Enhanced Tracking Protection (Strict Mode) is known to cause issues on x.com

https://x.com/ (Formaly Twitter) Firefox’s Enhanced Tracking Protection (Strict Mode) is known to cause issues on x.com Not only me: https://www.reddit.com/r/firefox/co… (διαβάστε περισσότερα)

https://x.com/ (Formaly Twitter) Firefox’s Enhanced Tracking Protection (Strict Mode) is known to cause issues on x.com


Not only me: https://www.reddit.com/r/firefox/comments/1ctx1bm/twitter_not_working_on_private_browsing/ https://connect.mozilla.org/t5/discussions/firefox-s-enhanced-tracking-protection-strict-mode-is-known-to/td-p/57432 https://lemmy.world/post/15496431

https://news.ycombinator.com/item?id=40386418 Dunno if entirely accurate but regarding the Firefox error: “Twitter switched their top level domain to X, but didn't change any of their other domains, so they're still pulling assets from Twimg. Which makes Firefox (correctly) block the page if you have Tracking Protect enabled because it sees X trying to involve 3rd parties.“ Slow clap.

Ερώτηση από hokagegaara 2 εβδομάδες πριν

Τελευταία απάντηση από Paul 1 εβδομάδα πριν

Sky ID on my iPhone

I have received two emails from Sky regarding updating my Sky ID on my iPhone to enable continuing use of Yahoo emails. However, when I click on the link given there is a… (διαβάστε περισσότερα)

I have received two emails from Sky regarding updating my Sky ID on my iPhone to enable continuing use of Yahoo emails. However, when I click on the link given there is a Google error message denying access owing to a violation of Terms of Service. This means I am unable to update and could have future problems with access to Yahoo emails on my iPhone. Can you help? Alan Warburton.

Ερώτηση από warburton-alan 1 εβδομάδα πριν

Τελευταία απάντηση από cor-el 1 εβδομάδα πριν

Apostrophe is not showing up correctly ( )

Somehow I cannot type an apostrophe, whenever I do it just shows whats between the brackets ( ). What I do: 1. Press the apostrophe button 2. Press space Expected res… (διαβάστε περισσότερα)

Somehow I cannot type an apostrophe, whenever I do it just shows whats between the brackets ( ).

What I do: 1. Press the apostrophe button 2. Press space

Expected result: '

Actual result:


I m on Firefox Linux and my keybord is set on INTL

Ερώτηση από Jonezz 1 εβδομάδα πριν

Τελευταία απάντηση από cor-el 1 εβδομάδα πριν

Printing emails

I have used Firefox for Windows for many years and have had no problems until recently. I have been unable to print my emails: when I click on the printer icon in the upp… (διαβάστε περισσότερα)

I have used Firefox for Windows for many years and have had no problems until recently. I have been unable to print my emails: when I click on the printer icon in the upper right corner of an email nothing happens. I was wondering if there was something in the settings that was causing this problem. Thank you!

Ερώτηση από javajiving 1 εβδομάδα πριν

Τελευταία απάντηση από jscher2000 - Support Volunteer 1 εβδομάδα πριν

At some point browser back button stopped returning you to the same exact results page (order etc.)

I cannot begin to express how frustrating this change is... and I struggle to comprehend why anyone would introduce this by writing it into software, but I'm sure it has … (διαβάστε περισσότερα)

I cannot begin to express how frustrating this change is... and I struggle to comprehend why anyone would introduce this by writing it into software, but I'm sure it has something to do with money and profits.

There was a time when you could do a search and get a list of results, and then view a specific listing, and then return to your search page and view another listing. however, those days are evidently gone, as now when you return to your search page, it's slightly different results in a different order. Most are there, but some are missing entirely, and the ones that remain are varied slightly. Whaaaat for!? It is truly a form of torture.

Now in fairness I can't tell if it's the browser (Firefox), or the search engine (Duck Duck Go), because I am unfortunately not a developer. However, whatever is causing it should be fixed out of a sense of social responsibility to the greater good.

If anyone knows why this happens and knows how to fix it, I would be sincerely grateful if you shared the solution.

E

Ερώτηση από obhke4e3 1 εβδομάδα πριν

Τελευταία απάντηση από jscher2000 - Support Volunteer 1 εβδομάδα πριν

credit card window

I am experiencing no window to enter my credit card number in. There is the window for the expiry date and CCC code. Just not the card number. I have tried numerous websi… (διαβάστε περισσότερα)

I am experiencing no window to enter my credit card number in. There is the window for the expiry date and CCC code. Just not the card number. I have tried numerous websites that I would never buy anything from just to test the failure and it repeats on all the sites I have tried including government payment site.

Ερώτηση από jjnowayhosa 1 εβδομάδα πριν

Τελευταία απάντηση από jonzn4SUSE 1 εβδομάδα πριν