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… (xem thêm)
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,… (xem thêm)
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… (xem thêm)
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:… (xem thêm)
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
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… (xem thêm)
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?
BroadcastChannel.onmessage not working in firefox
I need to share some information between 2 tabs of the same browser pointing at the same site. I'm using the BroadcastChannel.onmessage event handler as detailed here: ht… (xem thêm)
I need to share some information between 2 tabs of the same browser pointing at the same site. I'm using the BroadcastChannel.onmessage event handler as detailed here: https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel/onmessage
In the sender tab javascript code I defined:
var bc = new BroadcastChannel('my_bc_channel');
bc.postMessage(i); //where i is simply the line number i want to share
And in the receiving tab:
var bc = new BroadcastChannel('my_bc_channel');
//then use this to receive the incoming messages:
bc.onmessage = function (ev) {
last_line = ev.data
}
My code works fine in Chrome, but it does not do anything in Firefox (latest version 70 freshly installed under windows). The compatibility chart in the link I gave above says it should be working from Firefox version 38.
The thing is, I'm not sure how to debug this. I don't have any error messages in the console. I don't know if it's the sender code that does not send anything. But clearly the receiving code is not triggered so I guess the .onmessage event is not detected. Where can I see in the javascript console if the message is sent ?
Iolo System Mechanic erases all my saved passwords from Firefox, how do you fix this?
With every update of System Mechanic or anytime I wish do get rid of junk files, all my saved passwords from Firefox are permanently erased. What is the fix, thanks … (xem thêm)
With every update of System Mechanic or anytime I wish do get rid of junk files, all my saved passwords from Firefox are permanently erased. What is the fix, thanks
This website always loads at bottom of page, why? https://www.theguardian.com
tried safe mode same issue, other sites not affected
Firefox wants a Admin to approve a helper installation
dupe of https://support.mozilla.org/en-US/questions/1274001 Firefox works on 3 user accounts, on the 4th on launch a dialog box opens and asks for the Administrator to si… (xem thêm)
dupe of https://support.mozilla.org/en-US/questions/1274001
Firefox works on 3 user accounts, on the 4th on launch a dialog box opens and asks for the Administrator to sign in to approve the installation of a helper. The helper is not named. If you close the box, Firefox locks up. The Administrator signing in closed the box, but Firefox locks up, force quit and the box comes back. Tips, hints or advice welcome.
Can't log on to my online banking with United Community Bank Inc.
I can get into the main site but not into checkfreeweb.com. It keeps telling me Problem loading page. I have contacted bank they say its browser. I tried three browser… (xem thêm)
I can get into the main site but not into checkfreeweb.com. It keeps telling me Problem loading page.
I have contacted bank they say its browser. I tried three browsers none are working.
Terminology question
What does KB mean in a discussion group?
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… (xem thêm)
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… (xem thêm)
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 … (xem thêm)
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… (xem thêm)
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.
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… (xem thêm)
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.
Im seeing about:blank in my address bar for a second or two before going to a web page,it does not happen every time so i don't know what to think of this ,is it a virus?
About:Blank showing up sometimes for a few seconds in address bar,have scanned computer with Zone Alarm Anti Virus - Spy Bot - Super Anti Spyware all have found nothing. … (xem thêm)
About:Blank showing up sometimes for a few seconds in address bar,have scanned computer with Zone Alarm Anti Virus - Spy Bot - Super Anti Spyware all have found nothing. Sometimes the Browser hesitates for 5-10 seconds before going to a page, i wonder if its related to the About:Blank
How do I know if avast is working with Foxfire 6.0? It says it won't work with it even tho it looks like it is working?
If is is a known problem, how do I get back to my previous Foxfire?