Trying to install and use J2SE plug-in

I am trying to access Oracle eBS instance but when I login to the page, I get a notification as shown in the image. After installing the plug-in and restarting the brow… (மேலும் படிக்க)

I am trying to access Oracle eBS instance but when I login to the page, I get a notification as shown in the image.

After installing the plug-in and restarting the browser, when I try to run the application, I get the same notification.

Asked by Vatsala.Saxena 2 நாட்கள் முன்பு

Last reply by James 2 நாட்கள் முன்பு

extensions.json key

Hello I want to use extension xpi's from a shared external folder over multiple Linux profiles. So i examined the profile folder and found extensions.json. Though i can'… (மேலும் படிக்க)

Hello

I want to use extension xpi's from a shared external folder over multiple Linux profiles. So i examined the profile folder and found extensions.json. Though i can't find any documentation to it's keys online.

There's "rootURI:" with a "jar:file://path/to/extension.xpi!/", so i tried just replacing the path with the shared one. Though i observed that just makes firefox replace the path with the current one. So i examined further and found the "location:" key with the default value "app-profile". So my guess is, there's other values for other usecases, right?

So, in summary, what i need is:

  • documentation to extensions.json keys or possible values to "location" key.
  • if that isn't intended/doesn't work, how i can achieve my goal otherwise.

And please don't suggest the sync feature, that doesn't work for my usecase.

Asked by dani.priv+moz 2 நாட்கள் முன்பு

Last reply by cor-el 2 நாட்கள் முன்பு

Firefox extremely slow to load pages or connect to Web sites after startup - Follow-Up

I see my original question is now archived at https://support.mozilla.org/en-US/questions/1380948#question-reply I never closed it because I didn't know if my last proc… (மேலும் படிக்க)

I see my original question is now archived at https://support.mozilla.org/en-US/questions/1380948#question-reply I never closed it because I didn't know if my last process could really fix the issue. It didn't, not always. Over the years, there have been times when the issue would still pop up, but not as often as before (2022 and earlier).

I have a feeling that during an issue, FF is having difficulty setting up shop after starting up. Consequently, it is spending more time before it could become prepared to connect to the Net. I've come up with another "solution," which is deleting (or moving out) xulstore.json in the profile folder after exiting or before starting FF. You can create a batch command or script to execute the process.

So far, FF is connecting immediately after startup.

Asked by mobilesuit 23 மணி நேரத்திற்கு முன்பு

Last reply by cor-el 3 மணி நேரத்திற்கு முன்பு

Incorrect file format

It has been observed that when a user uses the Firefox browser and tries to download a DDD file, the file format is .pdf instead of .ddd. In the devtools, it was observed… (மேலும் படிக்க)

It has been observed that when a user uses the Firefox browser and tries to download a DDD file, the file format is .pdf instead of .ddd. In the devtools, it was observed that the content-type is text/plain in the response to the request. I changed the content-type to application/octet-stream, but the error still persists

Asked by Borys Krasko 1 நாள் முன்பு

Last reply by jscher2000 - Support Volunteer 3 மணி நேரத்திற்கு முன்பு

Unable to update Firefox browser

I have Firefox 124.0.2 running on Windows 11. For some reason, I can't update Firefox. When I manually download the update file, it appears to run Ok, but the version do… (மேலும் படிக்க)

I have Firefox 124.0.2 running on Windows 11. For some reason, I can't update Firefox. When I manually download the update file, it appears to run Ok, but the version doesn't change. If I go to settings and click on "Check for Updates" is comes back and says Failed to Check for Updates. How do I fix this?

Originally reported on April 11th /questions/1444593: I have Windows 11 and the Firefox 124.0.2 browser. I cannot update to the latest version of Firefox. I receive an error message "Failed to update". I've uninstalled and reinstalled the browser, ran the install utility selecting update, nothing seems to work. Please help

Asked by rpm3110 3 நாட்கள் முன்பு

Last reply by NoahSUMO 1 நாள் முன்பு

Download files (pdf, xml) don't open in application (acrobat, firefox) since 125.0.1 Firefox

Download files (pdf, xml) don't open in application (acrobat, firefox) since 125.0.1 Firefox version from IBM Power server with Ubuntu : The message is "Fichier non… (மேலும் படிக்க)

Download files (pdf, xml) don't open in application (acrobat, firefox) since 125.0.1 Firefox version from IBM Power server with Ubuntu :

The message is "Fichier non téléchargé - Risque de sécurité potentiel" that is "No downloaded file, potential security risk" :

When we download a pdf file from the server, the "choice box" allow to . open in the browser or . open in Acrobat or . download on my PC. The opening fails with this message. This is the problem. The download on my PC works and when I open the file from my PC it works also.

We need this function of opening a pdf or xml directly from a server IBM Power with Ubuntu. It was OK for several years until 125.0.1 Firefox version. We had no change on the IBM server.

Can you repair this problem quickly. My PC uses Windows 10

Thank you Patrice Castejon [removed phone#]

Asked by patrice.castejon 12 மணி நேரத்திற்கு முன்பு

Last reply by jscher2000 - Support Volunteer 6 மணி நேரத்திற்கு முன்பு

Firefox does not display background color in option tags

I am trying to use a <select> tag to display a color selector. So each <option> has a background color to match its displayed text: ```<select id="stroke… (மேலும் படிக்க)

I am trying to use a <select> tag to display a color selector. So each <option> has a background color to match its displayed text:

```<select id="strokeColor" name="strokeColor" style="width: 10em;">

             <option value="black" style="background: #000000; text: #FFFFFF">
                     black
             </option>

<option value="aqua" style="background: #00FFFF">

                     aqua
             </option>

<option value="blue" style="background: #0000FF">

                     blue
             </option>

<option value="brown" style="background: #A52A2A">

                     brown
             </option>

<option value="gray" style="background: #808080">

                     gray
             </option>

<option value="green" style="background: #00FF00">

                     green
             </option>

<option value="magenta" style="background: #FF00FF">

                     magenta
             </option>

<option value="orange" style="background: #FFA500">

                     orange
             </option>

<option value="purple" style="background: #800080">

                     purple
             </option>

<option value="red" style="background: #FF0000">

                     red
             </option>

<option value="white" style="background: #FFFFFF">

                     white
             </option>

<option value="yellow" style="background: #FFFF00">

                     yellow
             </option>

<option value="#000000" selected="" style="background: #000000">

                     #000000
             </option>
         </select>```

On Chrome this displays as expected:

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-04-18-22-02-25-eebbd5.png

But on Firefox the background colors are ignored:

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-04-18-22-02-35-bd90ee.png

How can I get Firefox to display the background colors?

Asked by jamescobban 17 மணி நேரத்திற்கு முன்பு

Last reply by cor-el 4 மணி நேரத்திற்கு முன்பு

Proton Emails Don't Show Attached Inline Pictures

Windows 11 Firefox browser 125.0.1 In Proton Mail, when I receive an email with an picture attached inline, I get the following error message: "Your browser could not ve… (மேலும் படிக்க)

Windows 11 Firefox browser 125.0.1

In Proton Mail, when I receive an email with an picture attached inline, I get the following error message: "Your browser could not verify the remote server's identity. The image might be hosted using the http protocol." Is this issue with settings in Proton or Firefox? How do I fix this? See image below. Thank you.

Asked by 2doxiedad 1 நாள் முன்பு

Last reply by cor-el 4 மணி நேரத்திற்கு முன்பு

Can Not Play Some Videos on Twitter

All Add-ons are disabled and Firefox still can not play SOME of the videos on twitter. All I can see is a spinning circle on the center of the frame and the video will n… (மேலும் படிக்க)

All Add-ons are disabled and Firefox still can not play SOME of the videos on twitter. All I can see is a spinning circle on the center of the frame and the video will never be played. I tried other browsers and they all works well. It seems this issue has nothing to do with my network connection.

I searched this forum and find out some thread reporting issues of not playing All videos on youtube/twitter. Replies to these thread provided some solutions ,like update ffmpeg , set media related options in about:config. I tried them all and neither of them work for me.

Asked by chicane 2 நாட்கள் முன்பு

Last reply by cor-el 5 மணி நேரத்திற்கு முன்பு

Picture-in-picture since recent YouTube update keeps closing.

Picture-in-picture since recent YouTube update keeps closing. Is there way i could configure in about:config to never close and always stay open even if page refreshes an… (மேலும் படிக்க)

Picture-in-picture since recent YouTube update keeps closing. Is there way i could configure in about:config to never close and always stay open even if page refreshes and have it move the video play back always to the Picture-in-picture window ? If not could this be made a feature in a future update ?

YouTube especially been annoying to Firefox users, cos it keeps refreshing the whole page breaking stuff every time it plays the video, as well have issues with looping videos even tho they are already fully buffered, making entire YouTube experience as frustrating as possible as encouragement to switch to chrome, which i refuse for obvious reasons.

Anything i can do on my end ? If tested if this happens in incognito mode as well with all extensions disabled in private windows, no change of behavior.

Btw this happens on the new YouTube interface with no way to get back to the old interface, cos it keeps the annoying features of the old interface even if you try to re position stuff using hacky ways like extensions that do so, which of course break stuff even further. I just want Picture-in-picture to remain open, and to play current video in picture-in-picture that is playing automatically.

Btw the Picture-in-picture experience with chrome or chrome based browsers is absolutely horrible, giving me even more reasons to stay on Firefox besides privacy related issues and other issues.

Asked by Muppet 7 மணி நேரத்திற்கு முன்பு

Last reply by zeroknight 6 மணி நேரத்திற்கு முன்பு

Firefox suddenly goes slow, then speeds back up

So I'll be typing like normal (I type 100 WPM), and all of a sudden, I'll type a sentence, but each individual letter starts taking about 3 seconds to show up on the scre… (மேலும் படிக்க)

So I'll be typing like normal (I type 100 WPM), and all of a sudden, I'll type a sentence, but each individual letter starts taking about 3 seconds to show up on the screen. I have to sit and wait a super long time for everything I typed to finally show up. Other times, I move my mouse over something I should be able to click on, and have to wait a long time for the arrow to turn into a hand, letting me click on it. These periods of slowness will last a few minutes, then disappear.

What's really interesting is that when the slowness starts, I can type just fine up in the URL bar. I might type my entire message there, then copy paste it down to where ever I was wanting to post it. However, when I do that, if I have another tab open and that tab is playing music, the music will start to break up and lag as I type. Again, after a while, the slowness disappears and we're back to normal.

Can anyone tell me what's going on?

Asked by Trenton Knight 19 மணி நேரத்திற்கு முன்பு

Last reply by zeroknight 6 மணி நேரத்திற்கு முன்பு

I have lost all my data

Please me to recover passwords and data of my firefox, call me at [removed phone# from public support forum] please

Asked by Sumati Gupta 15 மணி நேரத்திற்கு முன்பு

Last reply by jscher2000 - Support Volunteer 6 மணி நேரத்திற்கு முன்பு

You've compromised the passwords yourself

Hi Every single one of my passwords is compromised according to you. Therefore I think the data breach is with Firefox . I have set up several unique passwords recently -… (மேலும் படிக்க)

Hi Every single one of my passwords is compromised according to you. Therefore I think the data breach is with Firefox . I have set up several unique passwords recently - how are they breached so soon? And why every single one. It is very suspicious. Regards Caroline

Asked by cazzyguy 13 மணி நேரத்திற்கு முன்பு

Last reply by jscher2000 - Support Volunteer 6 மணி நேரத்திற்கு முன்பு

Firefox page flickers

I recently got a new computer. Installed firefox onto it. Brought over my profile with all my data and bookmarks. But for the life of me, the page would just sporadically… (மேலும் படிக்க)

I recently got a new computer. Installed firefox onto it. Brought over my profile with all my data and bookmarks. But for the life of me, the page would just sporadically flicker. I tried messing with the settings; performance settings; hardware acceleration. I tried refreshing firefox. But nothing.

Asked by anger01 18 மணி நேரத்திற்கு முன்பு

Last reply by zeroknight 7 மணி நேரத்திற்கு முன்பு