Informed that my Mozilla was updated, I was asked to sign up for Firefox. Is there a chat with support so I can locate what it is that is involved?
When I opened up Mozilla this am, the screen went to notice that I was updated, and would I like to sign up for Firefox. I scanned the offerings, and assumed all the info… (Lesen Sie mehr)
When I opened up Mozilla this am, the screen went to notice that I was updated, and would I like to sign up for Firefox. I scanned the offerings, and assumed all the info would be there when I hit next. It went to signup right away, I confirmed my email, but what is available to me seems scattered in different place; in fact, I'm confused with being Mozilla signed up, and now Firefox. I was hoping you had a chat support so I could be directed to easier understanding.
Google Hangouts Stopped working with Firefox
Very suddenly, Google Hangouts no longer works with Firefox, as of the evening of June 11th. I tried Firefox add-ons but they don't work. I can open Google Hangouts page,… (Lesen Sie mehr)
Very suddenly, Google Hangouts no longer works with Firefox, as of the evening of June 11th. I tried Firefox add-ons but they don't work. I can open Google Hangouts page, but cannot use the messaging utility. I used it for years until last night. Apparently, a plug-in is missing or doesn't work.
Can’t open Firefox in Mac OS 10.15. Error message saying it is not supported.
My computer auto-upgraded to Mac OS Catalina 10.15. When I try to run Firefox, I receive an error message that the application is not supported by OS 10.15. I’ve downlo… (Lesen Sie mehr)
My computer auto-upgraded to Mac OS Catalina 10.15. When I try to run Firefox, I receive an error message that the application is not supported by OS 10.15. I’ve downloaded the latest version of Firefox. Any suggestions?
Why is my XSL file no longer being applied to my XML file?
This morning Firefox upgraded to version 68.0 and several XML files that each reference a corresponding XSL file stopped loading as they always have. One example follows:… (Lesen Sie mehr)
This morning Firefox upgraded to version 68.0 and several XML files that each reference a corresponding XSL file stopped loading as they always have. One example follows:
The file ASTest_Appl_Events..xml contains the following
<?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet type="text/xsl" href="ASTest_Appl_Events.xsl"?> <ASTestApplEvents> <Event xmlns='http://schemas.microsoft.com/win/2004/08/events/event'><System><Provider Name='Report Server Windows Service (MSSQLSERVER)'/><EventID Qualifiers='0'>107</EventID><Level>2</Level><Task>5</Task><Keywords>0x80000000000000</Keywords><TimeCreated SystemTime='2019-07-08T10:01:35.000000000Z'/><EventRecordID>270493</EventRecordID><Channel>Application</Channel><Computer>ASTest</Computer><Security/></System><EventData><Data>Report Server Windows Service (MSSQLSERVER)</Data></EventData></Event> <Event xmlns='http://schemas.microsoft.com/win/2004/08/events/event'><System><Provider Name='Microsoft-Windows-User Profiles Service' Guid='{89B1E9F0-5AFF-44A6-9B44-0A07A7CE5845}'/><EventID>1530</EventID><Version>0</Version><Level>3</Level><Task>0</Task><Opcode>0</Opcode><Keywords>0x8000000000000000</Keywords><TimeCreated SystemTime='2019-07-08T10:00:10.973301100Z'/><EventRecordID>270438</EventRecordID><Correlation/><Execution ProcessID='848' ThreadID='524'/><Channel>Application</Channel><Computer>ASTest</Computer><Security UserID='S-1-5-18'/></System><EventData Name='EVENT_HIVE_LEAK'><Data Name='Detail'>1 user registry handles leaked from \Registry\User\S-1-5-21-659900985-4002748794-950523200-1002: Process 300 (\Device\HarddiskVolume3\Windows\System32\conhost.exe) has opened key \REGISTRY\USER\S-1-5-21-659900985-4002748794-950523200-1002\Control Panel\International </Data></EventData></Event> </ASTestApplEvents>
The file ASTest_Appl_Events.xsl contains:
<?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:MSEvent="http://schemas.microsoft.com/win/2004/08/events/event"> <xsl:template match="/"> <html> <body> <title>ASTest Appl Events</title> <table><tr> <td><h3>ASTest Application Events</h3></td> <td width="100"> </td> </tr></table> <table border="1" style="border-collapse:collapse;font-size:14px;" cellpadding="4"> <tr bgcolor="black" style="color:white"> <td>Server</td> <td>Event Type</td> <td>Provider</td> <td>Event ID</td> <td>Time (Mar-Oct subtract 4 hours, Nov-Feb subract 5 hours)</td> <td>Level</td> <td>Event Data</td> <td>User Data</td> </tr> <xsl:for-each select="ASTestApplEvents/MSEvent:Event"> <xsl:sort select="MSEvent:System/MSEvent:TimeCreated/@SystemTime" order="descending" /> <tr bgcolor="lightgray"> <td><xsl:value-of select="MSEvent:System/MSEvent:Computer"/></td> <td><xsl:value-of select="MSEvent:System/MSEvent:Channel"/></td> <td><xsl:value-of select="MSEvent:System/MSEvent:Provider/@Name"/></td> <td><xsl:value-of select="MSEvent:System/MSEvent:EventID"/></td> <td><xsl:value-of select="MSEvent:System/MSEvent:TimeCreated/@SystemTime"/></td> <xsl:choose> <xsl:when test="MSEvent:System/MSEvent:Level=1"> <td style="color:orange;">CRITICAL<br></br>( <xsl:value-of select="MSEvent:System/MSEvent:Level"/>) </td> </xsl:when> <xsl:when test="MSEvent:System/MSEvent:Level=2"> <td style="color:red;">ERROR<br></br>( <xsl:value-of select="MSEvent:System/MSEvent:Level"/>) </td> </xsl:when> <xsl:when test="MSEvent:System/MSEvent:Level=3"> <td style="color:green;">WARNING<br></br>( <xsl:value-of select="MSEvent:System/MSEvent:Level"/>) </td> </xsl:when> <xsl:otherwise> <td>(<xsl:value-of select="MSEvent:System/MSEvent:Level"/>)</td> </xsl:otherwise> </xsl:choose> <td><xsl:for-each select="MSEvent:EventData/MSEvent:Data"> <img src="Blue_dot(sm).jpg"/> <strong><em><xsl:value-of select="./@Name"/>:</em></strong> <xsl:value-of select="."/><br></br> </xsl:for-each></td> <td><xsl:for-each select="MSEvent:UserData"> <img src="Blue_dot(sm).jpg"/> <strong><em><xsl:value-of select="./@Name"/>:</em></strong> <xsl:value-of select="."/> </xsl:for-each></td> </tr> </xsl:for-each> </table> </body> </html> </xsl:template> </xsl:stylesheet>
Screen shots of what I used to see (html generated by an Online XSL Transformer) and currently see are attached.
Any assistance would be appreciated.
Thanks, Kurt H
Firefox is making multiple processes again
Once again, Firefox is making multiple processes in the task manager. I've already set both browser.tabs.remote.autostart.2 and browser.tabs.remote.autostart to false, ye… (Lesen Sie mehr)
Once again, Firefox is making multiple processes in the task manager. I've already set both browser.tabs.remote.autostart.2 and browser.tabs.remote.autostart to false, yet I still have multiple processes anyway, and setting the content process limit to 1 doesn't seem to do anything. I'm using Firefox version 68.0 and running Window 7.
Adobe Flash settings
I am having a problem where suddenly Firefox won't remember that I told it to run flash on a website. There was previously the option to remember that decision and now t… (Lesen Sie mehr)
I am having a problem where suddenly Firefox won't remember that I told it to run flash on a website. There was previously the option to remember that decision and now that's gone today for no reason. Removing that option is why I quit using Chrome when the great corporate beast decided for me that I shouldn't be able to conveniently use flash any more because they didn't like it. Is this the same thing happening here or is this a bug?
After Quantum 69.0 upgrade it no longer lists my home network printer all other apps list it
I upgraded to Quantum 69.0 64 bit a day or two ago. Today I have discovered that when I go to print a web page from FF, it does not list my home network printer as a cho… (Lesen Sie mehr)
I upgraded to Quantum 69.0 64 bit a day or two ago. Today I have discovered that when I go to print a web page from FF, it does not list my home network printer as a choice. I tested other apps, e.g. Chrome and MS Word and Adobe Rdr, they all still show my home network printer in their printer list, and I was able to print to it from Chrome. I have powercycled my printer, and rebooted my WIN7 PC, no help. My home network printer lists as Canon MF4270 Daves Office. My email is daveryan.cincinnati@gmail.com
1Password extension inoperative with 72.0b1
Extension appears in toolbar and extensions detail window, but clicking on the icon does nothing. New since latest beta installed.
"Restore previous session" setting being ignored
In my preferences I have "Restore previous session" checkbox checked and "Warn you when quitting the browser" unchecked. However I get a warning when I quit the browser w… (Lesen Sie mehr)
In my preferences I have "Restore previous session" checkbox checked and "Warn you when quitting the browser" unchecked. However I get a warning when I quit the browser with multiple tabs open, and my old tabs don't reopen when reopening Firefox.
I think this has started happening since updating to Catalina. Any ideas what might be going wrong?
When will support end for Windows 7 ?
I do know Microsoft extended support ends on Jan. 14, 2020. I'd like to know if anyone knows if there has been a date set for Windows 7 support to end.
How will you stop Mozilla from destroying internet freedom? bring back anti-censorship "dissenter" addon
So we made the big mistake when we originally decided to ban the comment section of the internet, which gives users the ability to comment and promote free and open dialo… (Lesen Sie mehr)
So we made the big mistake when we originally decided to ban the comment section of the internet, which gives users the ability to comment and promote free and open dialogue. We removed it after claims it could be used, like Firefox, for posting hate speech (which does not exist according to the supreme court), however we see no banning of Mozilla's Firefox or Cisco's Webex web and video conferencing addon which can be used spread this non existent activity. Banning Dissenter is akin to banning the wheel because criminals might use it to escape from a crime scene, or banning socks because people wear them while saying hateful things. Censorship and control is the obvious agenda.
The censorship of dissenter by Mozilla is one of the greatest attacks against the internet and online freedom we have seen, one I will not stand by and let you get away with. Its time to bring dissenter back... the question is, what are you going to do about it?
More information: https://www.youtube.com/watch?v=rfXIjzGQx18
Wikipedia founder Larry Sanger explains why he is now a critic of the online encyclopedia he helped to create. Says Big Tech companies have centralized the Internet, and that must be reversed.
How do I get rid of the new bar in Firefox 71?
With FF71 there is a new horizontal bar occupying space on every page. It is the light green bar in the attached image; it changes colour, of course, if I revert to the … (Lesen Sie mehr)
With FF71 there is a new horizontal bar occupying space on every page. It is the light green bar in the attached image; it changes colour, of course, if I revert to the default theme. How do I get rid of it?
Menu disappears when Firefox is active and not full screen (MacOS Catalina)
Running latest version of Catalina and Firefox for MacOS. The only thing I can see is the black apple and the word Firefox in the upper left hand corner. Menu is active i… (Lesen Sie mehr)
Running latest version of Catalina and Firefox for MacOS. The only thing I can see is the black apple and the word Firefox in the upper left hand corner. Menu is active if I roll the cursor over it but I can only read a couple of dropdown items. Anyone else having this problem? Screenshot attached.
What caused profiles to torque two days ago?
The main reason I wrote this post is to ask the question that comes at the end of this note. If you scroll to the end, you can see it marked as MAIN PURPOSE OF THIS POST… (Lesen Sie mehr)
The main reason I wrote this post is to ask the question that comes at the end of this note. If you scroll to the end, you can see it marked as MAIN PURPOSE OF THIS POST IS TO ASK THE QUESTION BELOW.
As I was posting the question, I took advantage of the moment to reflect on the fact that FireFox's perseverance over its long history of ups and downs today has made FireFox one of the real hopes for humanity. Long Live FireFox!
Back in the dark ages, before the ascendance of Google's Chrome browser, I learned to recover FireFox's guts, to cope with its gastric spasms of projectile digital vomiting, which seemed to occur every few weeks. Most software in those days contributed full shares to the unusable stew, made the accumulation of digital barf that needed cleanup as often as I needed to clean up after hangovers from over drinking when I was a stupid youth. Those were the days when running a computer all day without being forced to restart taught me to weild Windows Task Manager as weapon, which usually provided a side step around enough of the binary vomit top cut restarts from 4 a day to only one or two.
Years later, while Microsoft was recovering from the largest, most expensive public mistake in software history (Windows 8), Google got a handle on Chrome. After that, around 2014, Google either found Popeye's spinach factory, or aliens joined them in their Mountain View offices, because no human force can account for the rate and quality of significant upgrades to all their systems since then, for Chrome browser, underlying Chromium technology now used by everyone, not just for browsers, but all manor of application software to run on all kinds of platforms, Android for phones and apps, YouTube video processing that spots copyrighted sound and images in every video that has it, the world-leading advertising systems and dashboards, and their search engine so much better than anyone else's our choice is to use Google Search or be stupid and slow, or use Google Maps or be lost. Google pumps out new and better software features one hundred times faster than any other organization. If you missed the media reports explaining this, that is because Google's super productivity has not been celebrated in anything like the degree warranted.
Unfortunately, Google also has become so evil it probably cannot be prevented from destroying the system of human checks and balances invented in the United States 240 years ago. As simple and feeble as those checks and balances are, without them it is hard to see how any substantial part of the human population ever could have experienced and lived with Liberty and the productivity it makes possible. For example, without the Liberty growing throughout the world after taking its initial root in the United States and our written Constitution, one of the most ingenious and consequential documents ever written, the normal result of military conflict would have been one murderous, tyrannical, wholly self-serving dictatorship or another forcing 99% of the human population to live as serfs or slaves in the involuntary service of people like you know who. Google and the rest of the power players in commercial media are destroying that, through political bias they lie about. The problem with their lies is they have the power of their media platform to perpetrate them. Google is evil and needs to be neutralized. The main thing I can do about this is to stop using their products. The other thing I can do is tell people about what is happening. I was raised to see things this way, but for until recently, I did not see this is the way we have to look at things because this is the way that works. Until recently, I did not know society cannot stop functioning, but now I know that the functioning we all take for granted, including the people fighting against it, is rare as diamonds when viewed in the context of human history, Some of the people attacking our country want to break it down, because they want the United States to become like the places people now leave in order to come here. The sickness is the same that has affected all gluttons for power. They have learned that force of military arms tends to galvanize people like you and me. Instead, they lie to us. pretending to harbor the same loves for life you and I have, when in truth they see us is idiot patsies, making us deserve their the damages wrought by their treachery.
Therefore, I stopped using Chrome, returning to the FireFox way of browsing. I was with Chrome so long, I forgot all about recovering browser profiles. FireFox is a lot more reliable today than it was before Chome blew everybody out of the water, but its profile system still ha regular bouts with projectile digital vomiting.
Today, my FireFox is not blasting bile all over the house, but is being rather brave holding the contagion within itself. I noticed passwords not filling into web forms that used to be there. I am not sure of the timing. I probably was a long time ago, but I kept getting messages from FireFox babbling about their new security system.
Today, I needed to identify active profile (i.e., the one I use) from the half dozen profiles piled into my FireFox installation. I don't know why there is more than one. Unfortunately, I just could not glean the one I need to look at from their names:
b2uzr27w.default-release-1/ n34593ht.default-release/ n6gdm7r8.default-release-1/ q412vz1p.default/ uiaqaxwu.default/
The online guide provided the usual waste of time. I asked the computer how to know which profile is the active one. I immediately found thousands of articles which each spell out the same eight or ten reasons why a person might wish to know which profile is active. The people writing these articles know their articles are filled mostly with spam (information we already have or don't need), but their editors are evaluated on word count, needed for diluting the concentration of ads in their publication. It's been years since the ANSWERS were easy to pick out of spam portions of the articles they appear with. From this agony-inducing swill I found information that looked like it might tell me how to spot the active profile. "Look for ".default" as part of the profile name. So I looked again,
b2uzr27w.default-release-1/ n34593ht.default-release/ n6gdm7r8.default-release-1/ q412vz1p.default/ uiaqaxwu.default/
All of the profile names contain ".default."
MAIN PURPOSE OF THIS POST IS TO ASK THE QUESTION BELOW.
Then I noticed the dates
Months ago b2uzr27w.default-release-1/ Months ago n34593ht.default-release/ Two days ago n6gdm7r8.default-release-1/ Today q412vz1p.default/
Evidently, two days ago, FireFox ditched my profile and gave me a new one. This leads to my question, my reason for posting this thread:
Why?
In other words,
Why did FireFox ditch my profile and give me a new two days ago?
I understand, you probably don't know why in my particular case. I am hoping for reasonable guesses or possibilities.
interface language mixed between german and english
i have had this issue for a year now, with no end in sight. my interface language on my entire computer is english. everything english. the keyboard is a german keyboard … (Lesen Sie mehr)
i have had this issue for a year now, with no end in sight. my interface language on my entire computer is english. everything english. the keyboard is a german keyboard because i bought my machine where i live, in austria. but my written language and all dictionaries are english. same with my preferences in firefox, english everywhere. but for some reason the language constantly switches back and forth between german and english. look at the video, it's insane. i've uninstalled and started over. i've wiped the entire computer and installed EVERYTHING fresh. no change. when i install and use firefox, it comes back. it only happens in firefox. argh. screen capture of the language switching: https://youtu.be/gq8hXs5pXm0
How do I open email attachements?
I use AOL Mail and now I cannot open ANY attachments on emails received. It used to be fine, but no longer. I have set the document types in Options -> General -> A… (Lesen Sie mehr)
I use AOL Mail and now I cannot open ANY attachments on emails received. It used to be fine, but no longer. I have set the document types in Options -> General -> Applications.
current update prevents firefox from starting
After applying the current update, Firefox will not launch. It was set to run as administrator. However, after clicking YES to the Windows10 pop-up prompt to allow Fire… (Lesen Sie mehr)
After applying the current update, Firefox will not launch. It was set to run as administrator. However, after clicking YES to the Windows10 pop-up prompt to allow Firefox to run as administrator, the Windows 10 pop-up prompt keeps coming up and Firefox will not launch. I cannot uncheck the RUN AS ADMIN from the PROPERTIES window. Help please … ASAP!!
Why can't omn.ja be deleted so the one-click search is disabled?
When I type an existing bookmark into the address line I no longer see it pop up immediately. Rather I see whatever the one-click search engine chooses. I want to be ab… (Lesen Sie mehr)
When I type an existing bookmark into the address line I no longer see it pop up immediately. Rather I see whatever the one-click search engine chooses. I want to be able to type a few characters and get my bookmark without having to select it from the options provided.
firefox screenshots roadmap
Is there a roadmap somewhere for Firefox Screenshots? I'd like to see how Mozilla intends to enhance this feature in future releases.
Thanks
Hacker using my browser on iMac -history full of searches and sites I did not go to. How to clean house?
The majority of the sites on today's history are attempts to log in to a past employer, attempted Gmail admin log ins, the employers ticketing platform, searches for flig… (Lesen Sie mehr)
The majority of the sites on today's history are attempts to log in to a past employer, attempted Gmail admin log ins, the employers ticketing platform, searches for flights, visits to graphic novel sites, etc..NONE OF WHICH ARE ME! I though this was supposed to be a secure browser on an iMac? WTF is going on and how can I stop it?