Hiển thị các câu hỏi được đánh dấu:

Firefox isn't allowing me to upload images almost anywhere

I am on endeavourOS (linux). Whenever I try to upload images for a profile picture to sites like youtube or X, the image becomes corrupted and doesn't upload correctly. I… (xem thêm)

I am on endeavourOS (linux). Whenever I try to upload images for a profile picture to sites like youtube or X, the image becomes corrupted and doesn't upload correctly. It did this with whatsapp too and I had to use a separate app for it. Other posts said that disabling "privacy.resistFingerprinting" would fix it, but it's already disabled.

Attached below are an example of this bug and the contents of this image when viewed on a text editor.

Solved Đã lưu trữ 6 357

Deleting Search History

I have searches from a year (or more) ago that are still popping up and I don't know why. I have done multiple clears of my entire history and individually removed old se… (xem thêm)

I have searches from a year (or more) ago that are still popping up and I don't know why. I have done multiple clears of my entire history and individually removed old searches when they pop up - they still keep coming back.

Solved Locked Đã lưu trữ 2 255

Drag and Drop stopped working in Firefox v129.0.1 for Linux

I upgraded my version of Firefox from an ESR version to v129.0.1 on Debian 12. Drag and drop of files from the desktop or the file manager (PCManFM-Qt) into the browser … (xem thêm)

I upgraded my version of Firefox from an ESR version to v129.0.1 on Debian 12. Drag and drop of files from the desktop or the file manager (PCManFM-Qt) into the browser stopped working. It is still working properly in Chrome.

This occurs with several web apps but, as an example, it occurs when trying to drag a jpeg into Roundcube Webmail while composing a message.

No browser console errors are genrated when trying to do this. It occurs in Troubleshooting (safe) mode as well. In apps that pop-up a "Drag files here" target, that target still appears but dropping the file on it does nothing.

Solved Đã lưu trữ 17 624

"Video can’t be played because the file is corrupt" but video can be played using Chromium, MPV, and VLC.

Media resource could not be decoded, error: Error Code: NS_ERROR_DOM_MEDIA_DECODE_ERR (0x806e0004) Details: virtual mozilla::MediaResult mozilla::FFmpegVideoDecoder<62… (xem thêm)

Media resource could not be decoded, error: Error Code: NS_ERROR_DOM_MEDIA_DECODE_ERR (0x806e0004) Details: virtual mozilla::MediaResult mozilla::FFmpegVideoDecoder<62>::DoDecode(mozilla::MediaRawData*, uint8_t*, int, bool*, mozilla::MediaDataDecoder::DecodedData&): avcodec_send_packet error: Unknown error occurred

Solved 2 20

address bar remembers keyword search

I actively use keywords to search from the address bar, mainly g for google, gs for google scholar and w for wikipedia. Until a recent update (until last week, I think), … (xem thêm)

I actively use keywords to search from the address bar, mainly g for google, gs for google scholar and w for wikipedia. Until a recent update (until last week, I think), pressing ctrl + L to go to the address bar would select all the text in the address bar, including the keyword, such that if I had made a google search by typing g and some query, I could immediately do a wikipedia search by typing w and some query.

Now, with an updated firefox (141.0.3, on xubuntu 24.04), the search engine from the previous search remains when I press ctrl + L, so I have to type backspace(s) to remove the search engine keyword, before typing a new keyword.

Is it possible to get the old behaviour back?

Solved Đã lưu trữ 4 464

The translator is not working (AI)

Good afternoon! Translation (AI) is not working. There is no pop-up window, no icon in the address bar. I made the settings according to the instructions, reinstalled Fi… (xem thêm)

Good afternoon!

Translation (AI) is not working. There is no pop-up window, no icon in the address bar. I made the settings according to the instructions, reinstalled Firefox (152.0.4 (64-bit)).

Can you tell me how to fix the situation?

PS: I have attached screenshots.

Solved 5

how to stop address bar search "terrible idea "

bold text how to stop address bar search. its very wrong you have a fake search bar in the screen i want to search from a search bar not the address bar … (xem thêm)

bold text how to stop address bar search. its very wrong you have a fake search bar in the screen i want to search from a search bar not the address bar

Solved 5 196

Firefox crashing on launch after updates

As title: after running updates, Firefox consistently crashes when launching. To give more concrete details: -Running on Linux, specifically KDE Fedora 42. Firefox was up… (xem thêm)

As title: after running updates, Firefox consistently crashes when launching.

To give more concrete details:

-Running on Linux, specifically KDE Fedora 42. Firefox was updated to 142 from 141, alongside various other updates. -When launching Firefox from any source (directly, through a link, through the terminal etc.), the only window that appears is the crash reporter. -This issue occurs when launching in safe mode. Removing and reinstalling Firefox, including deleting the entire .mozilla folder in Home at the same time does not resolve the issue. I am unable to test rolling Firefox back to 141. -When attempting to launch from the terminal (safe mode or otherwise), the following is output (personal info redacted):


restorecon: SELinux: Could not get canonical path for /home/[username]/.mozilla/firefox/*/gmp-widevinecdm/* restorecon: No such file or directory.

/usr/include/c++/15/array:210: constexpr std::array<_Tp, _Nm>::value_type& std::array<_Tp, _Nm>::operator[](size_type) [with _Tp = HeaderBarButtonType; long unsigned int _Nm = 3; reference = HeaderBarButtonType&; size_type = long unsigned int]: Assertion '__n < this->size()' failed.

Redirecting call to abort() to mozalloc_abort

[ExceptionHandler generates a minidump etc.]

Gtk-Message: [timestamp]: Failed to load module "appmenu-gtk-module"


(I would note that to the best of my knowledge I had not included a plugin for decoding widevine in my Firefox setup, and certainly the Firefox 141 instance on the device being used to write this post (same OS) does not include it) -The crash files in the .mozilla folder, meanwhile, consistently list a segfault at address 0x0.

Any advice on diagnosing/solving this issue would be greatly appreciated. Let me know if there's any other information that would be helpful.

If it would be more appropriate, I could report this through Mozilla's bugzilla instance, but given the issue seems to be very niche (Fedora's ABRT shows a total of 5 unique affected users in the last few days) I am unsure whether flagging this there would be appropriate.

Solved Đã lưu trữ 1 485

Images from canvas black or transparent: img.src = canvas.toDataURL(); // FF: 'image/jpeg'=black. Png,webp,default=transparent.

I don't know if this ever worked in FF, since I've been on Chrome a while. I tried canvas.toBlob() in FF without a solution. The behavior is the same whether the served i… (xem thêm)

I don't know if this ever worked in FF, since I've been on Chrome a while. I tried canvas.toBlob() in FF without a solution.

The behavior is the same whether the served image is jpg or webp. A Servlet delivers the image data, here in webp:

          response.setHeader("Content-Type", "image/webp");

On page, I use a canvas thus => see '// FIREFOX'

     var canvas = document.createElement( 'canvas' );
     canvas.width = width;
     canvas.height = avail_height;
     var context = canvas.getContext( '2d' );
     context.drawImage( imgsrc, 0, 0, width, avail_height);
     context.lineWidth = 150;
     // FIREFOX: canvas.toDataURL('image/jpeg')=black, png,webp,default=transparent
     img.src = canvas.toDataURL('image/jpeg');
     img.onmousedown = disableDragging; // for FF
     img.style.opacity = "1.0";
     console.log('setImg ok');

Inspecting a black jpeg:

        data:image/jpeg;base64,...

Thanks!

Solved Đã lưu trữ 7 661

Frequent crashing on Chromebook

Hi, At some point in the last couple of weeks, I've started running into very frequent crashes running Firefox in the Linux container on my Chromebook. It previously work… (xem thêm)

Hi,

At some point in the last couple of weeks, I've started running into very frequent crashes running Firefox in the Linux container on my Chromebook. It previously worked well, but is now unusable. I'm now running Firefox version 147.0.3 on Chrome version 144.0.7559.167. This is after I did a clean reinstall of Firefox using flatpak, which didn't help. It seems like it often happens when my mouse hovers over a browser tab or icon (eg account, extensions, hamburger). Other quirky display behaviour, which mayor may not related, is that videos are often not working (eg Youtube, BBC), and various browser windows (eg when selecting Manage Bookmarks, or restarting in safe mode), open a small size-reduced window. Latest crash reports below -

bp-79d9b303-4402-455b-b49b-bbc1e0260209 bp-58276587-1315-4431-beba-4d9230260209 bp-0f499a5f-34e7-4a1d-8789-e8dc80260209 bp-a2ccec4c-087d-4e39-8af6-cbb740260209 bp-59770723-c637-4689-ae2f-a203f0260209

Thanks for any suggestions.

Solved 4 194

System tray icon, Linux

After latest update 136.0, a TB icon showed up in the 'system tray'. I'd like to hide it, I have no use for it. Browsing the settings including the advanced preferences y… (xem thêm)

After latest update 136.0, a TB icon showed up in the 'system tray'. I'd like to hide it, I have no use for it. Browsing the settings including the advanced preferences yields nothing useful.

Solved Đã lưu trữ 2 138

extra mouse buttons causing trouble

hi, I recently purchased a new wireless mouse and keyboard... and my only problem is that there are a couple extra buttons on my new mouse... roughly thumb position... an… (xem thêm)

hi, I recently purchased a new wireless mouse and keyboard... and my only problem is that there are a couple extra buttons on my new mouse... roughly thumb position... and are by default set to navigate backward and forward.... I'm running ubuntu linux... which results in accidentally clicking back midway through a video or podcast and losing my position more often than you'd expect... any idea how I might either reassign or disable them entirely on the software side of things? thanks. -dan

Solved Đã lưu trữ 2 224

how to transsfer a profile

hello, I want to transfer my profile from an old laptop to a new one. i am not comfortable with uploading my passwords to the cloud as i do not understand how this is saf… (xem thêm)

hello,

I want to transfer my profile from an old laptop to a new one. i am not comfortable with uploading my passwords to the cloud as i do not understand how this is safe. i made tar.gz file with the entire profile, almost 1gb and put that on the new laptop. edited the profiles.ini and install.ini and expected the profile will load, but firefox simply does not work in that profile. it cannot browse and clicking the menu button in top right does nothing. Please, help. If I share data below that is the working profile, not the one that fails.

Solved 3 225

Disable Picture-in-Picture icon in address bar

For some reason my install of FireFox on Linux refuses to hide the picture-in-picture button in the address bar on video sites. See included images; all relevant settings… (xem thêm)

For some reason my install of FireFox on Linux refuses to hide the picture-in-picture button in the address bar on video sites.

See included images; all relevant settings are disabled.

Solved Đã lưu trữ 1 245

My browser (latest nightly) thinks its a word processor. Enter key in Google search drops to a new line

My Firefox browser (nightly snap 154.0a1 on Ubuntu 24.04) has been misbehaving lately (~2 weeks now) and I'm at a loss why. First, when I scroll using the mouse wheel, th… (xem thêm)

My Firefox browser (nightly snap 154.0a1 on Ubuntu 24.04) has been misbehaving lately (~2 weeks now) and I'm at a loss why.

First, when I scroll using the mouse wheel, the scrollbar continuously shoots back to the top constantly during scrolling.

Second, when I type text in a Google box and hit enter key, it drops to the next line - like one would expect in a text processing application.

Third, when on YouTube, trying to rewind/forward video instead starts navigating to clickable links. Of particular note (see the attached screenshots) is the appearance of text (such as "Skip navigation" and "Volume" to name a few) - something I've never seen before.

This happens with a new profile as well.

Now, I know that nightly will sometimes have broken items but this is a weird one. I at one time thought the batteries on my wireless keyboard could be responsible but new batteries (confirmed new with a digital multimeter) did not change that.

I'm on Ubuntu 24.04 LTS fully patched. Anyone here with ideas on what it might be?

Solved 4

Passwords not Syncing

Hello, After performing a clean install of the OS, I logged in to my firefox account. But it is not syncing the passwords. I tried installing firefox to my phone, also no… (xem thêm)

Hello, After performing a clean install of the OS, I logged in to my firefox account. But it is not syncing the passwords. I tried installing firefox to my phone, also not syninc. I think btw, it is syncing but my passwords are not there. Here is the log: https://pastebin.com/DH0wuERM Any help appreciated, because there were more than 200 passwords there. Thank you

Solved Đã lưu trữ 3 313

Videos not playing

I am using Pop OS. Videos are not playing in firefox. In youtube it shows loading infinitly. In reddit all videos become green. I tried playing a downloaded video it also… (xem thêm)

I am using Pop OS. Videos are not playing in firefox. In youtube it shows loading infinitly. In reddit all videos become green. I tried playing a downloaded video it also become green. These are only happening in integrated mode. If I use hybrid graphics mode all works good. I attached the about:support page and about:config page.

about:config page link about:support page

These files are taken in integrated graphics mode.

Solved Đã lưu trữ 3 148

Why is Google Search pinned to Firefox Suggest?

Google Search is pinned at the top of my Firefox Suggest list. (see the attached image) Google Search is NOT my default search engine. Where is this controlled/specified… (xem thêm)

Google Search is pinned at the top of my Firefox Suggest list. (see the attached image)

Google Search is NOT my default search engine.

Where is this controlled/specified?

FF 145.0 Mint Linux/Cinnamon FF installed as system package not flatpack

Solved Đã lưu trữ 3 110