Zobrazenie otázok označených: Zobraziť všetky otázky

Copying text on some websites some lines get lost

This data some of the lines with underscore gets lost if I try to copy them in Firefox but works in Chrome https://app.arkivdigital.se/register-collections/register-posts… (ďalšie informácie)

This data some of the lines with underscore gets lost if I try to copy them in Firefox but works in Chrome https://app.arkivdigital.se/register-collections/register-posts/r12.p122825682?query=Ulrika%20Eleonora%20%20%201754-11-29%20%C3%84lghult&register_collection=12

FörnamnUlrika Eleonora EfternamnFalström Titel/YrkeFriherrinnan Dödsdatum1754-11-29 DödsförsamlingÄlghult DödslänKronoberg Ålder60 år Könf Källor Källa: Älghult C:2 (1717-1760) Bild 216 / Sida 423 Genväg r12.p122825682

Skapad av Kronobergs Genealogiska Förening

Otázku položil(a) Per Olof Johansson Pred 6 hodinami

Textdarstellung auf immer mehr Webseiten in Firefox falsch!!!

Auf immer mehr Webseiten erhalten wir mit Firefox (jeweils aktuellste Version) zunehmend falsche Textdarstellung! Es herrscht Durcheinander im Text, Worte fehlen, falsche… (ďalšie informácie)

Auf immer mehr Webseiten erhalten wir mit Firefox (jeweils aktuellste Version) zunehmend falsche Textdarstellung! Es herrscht Durcheinander im Text, Worte fehlen, falsche Worte erscheinen (vermischte)

Dies ist ein reines Firefox-Problem. EDGE oder CHROME zeigen die entsprechenden Seiten fehlerfrei an. Insofern kann auch die Rechner-/Betriebssystem-Konfiguration nicht die Ursachen sein.

Es liegt auch offenbar nicht an den Sicherheitseinstellungen von Firefox, die wurden bereits aktiviert/deaktiviert wie in allen Hilfstexten vorgeschlagen.

Otázku položil(a) Jens Pittasch Pred 7 hodinami

Posledná odpoveď od Jens Pittasch Pred 6 hodinami

"Sign In" Screen of "https://torontosun.com/sign-in/" does not Load in Virtual Box VM

My Environment: Host Machine - Intel Core i7-4771 @3.50GHz, 16GB RAM NVIDIA GeForce 210 Display Adapter, Intel Gigabit Network Connection (ISP connection is around 700MBp… (ďalšie informácie)

My Environment: Host Machine - Intel Core i7-4771 @3.50GHz, 16GB RAM NVIDIA GeForce 210 Display Adapter, Intel Gigabit Network Connection (ISP connection is around 700MBps).

OS - Windows 7 Pro V.22H2 Browser = Firefox ver.128.0.3 64bit.

Virtual Machine (VM) - Oracle Virtual Box Ver. 7.0.20 r163906, RAM = 4GB, Network = Bridged Adapter.

OS = Windows 7 Pro V. 22H2 Browser = Firefox ver. 128.0.3 64bit.

The Problem (In my VM only because I never browse sites on my Host PC): Toronto Sun website "Sign In" Screen never loads. A quarter circle just goes round and round. The website in question is - https://torontosun.com/sign-in/ The website itself does load fine and I can browse the site and all articles. But I cannot log into the site because the "Sign in" screen never loads. Also, Firefox tabs crash very frequently on this whole website.

Firefox is the only browser that I have on both my Host and VM (I have deleted MS Edge since it cannot be uninstalled).

On my VM, I tried installing Google Chrome and it works fine. The Toronto Sun Sign In page loads fine and I can log in.

On my Host PC, Firefox actually works. I tried it to see if the "Sign In" screen appears and it does and I can log in. It is only on my VM that it does not load.

What has Changed:

The Oracle Virtual Box software was just updated from ver. VirtualBox-7.0.18-162988-Win to ver. VirtualBox-7.0.20-163906-Win.

What I have tried: I have already done the following: Cleared - "Everything" including History, cookies, Temporary Cached files and pages and Site Settings.

I do not have any add-ons or themes installed.

I have cleared all Windows and User Temp Folders and files. I have rebooted several times in the past couple of days.

I tried increasing the VM RAM from 4GB to 6GB - did not help.


I would appreciate a solution.

Thanks very much. Kenneth

Otázku položil(a) klml Pred 1 dňom

Posledná odpoveď od klml Pred 16 hodinami

Firefox shows wrong layout with Shiny for Python 1.0.0

The new Shiny for Python 1.0.0 seems to be incompatible with Firefox. I made this dummy app: Start of code *** from shiny import App, render, ui, reactive fro… (ďalšie informácie)

The new Shiny for Python 1.0.0 seems to be incompatible with Firefox. I made this dummy app:

      • Start of code ***

from shiny import App, render, ui, reactive from pathlib import Path


app_ui = ui.page_fillable(

   ui.panel_title(
       ui.row(
       ui.column(6, ui.h1("title1")),
       ui.column(6, ui.h1("title2"))
       )
   ),
   ui.layout_sidebar(
       ui.sidebar(
           ui.input_text("input_text1", "input_text1", value=""),
           ui.input_text("input_text2", "input_text2", value=""),
           ui.input_text("input_text3", "input_text3", value=""),
           ui.input_text("input_text4", "input_text4", value=""),
           ui.input_text("input_text5", "input_text5", value=""),
           ui.input_selectize("input_selectize1", "input_selectize1", choices=["1", "2"]),
           ui.input_numeric("input_numeric1", "input_numeric1", value=4),
           ui.input_numeric("input_numeric2", "input_numeric2", value=8),
           ui.input_numeric("input_numeric3", "input_numeric3", value=20),
           ui.input_selectize("input_selectize2", "input_selectize2", choices=["3", "4", "5"]),
           ui.input_numeric("input_numeric4", "input_numeric4", value=1),
           ui.input_numeric("input_numeric5", "input_numeric5", value=1),
           ui.input_switch("input_switch1", "input_switch1", value=False),
           ui.input_switch("input_switch2", "input_switch2", value=False),
           ui.input_switch("input_switch3", "input_switch3", value=False),
           ui.input_action_button("input_action_button1", "input_action_button1"),
           ui.input_action_button("input_action_button2", "input_action_button2", disabled=True),
           width="350px"
       ),
       ui.layout_columns(
           ui.card(
               ui.card_header("card_header1"),
               ui.output_data_frame("card1"),
               full_screen=True
           ),
           ui.card(
               ui.card_header("card_header2"),
               ui.output_data_frame("card2"),
               full_screen=True
           ),
           col_widths=[12, 12]
       )
   )

)


def server(input, output, session):

   @reactive.event(input.input_action_button1)
   def reactive_function1():
       pass
   @output
   @render.data_frame
   def card1():
       return reactive_function1()
   @output
   @render.data_frame
   def card2():
       pass
   @reactive.effect
   @reactive.event(input.write_guides)
   def reactive_function2():
       return reactive_function1()

src_dir = Path(__file__).parent / "src" app = App(app_ui, server, static_assets=src_dir)

      • End of code ***

Then I started it and opened it with Safari (left) and Firefox (right).

With Shiny for Python 0.10.2 both browsers seem fine (click the link for a screenshot): https://github.com/user-attachments/assets/c1a40577-6341-40c5-b952-7fb99cb3330e

But as soon as I switch to Shiny for Python 1.0.0, Firefox fails, but Safari is still able to display: https://github.com/user-attachments/assets/6fbc60a6-2487-4195-a7c3-a326bdfc7373

Not sure, if this is of any use, but I can "expand" the sidebar in Firefox leading to this: https://github.com/user-attachments/assets/4f2d318f-809b-463d-9c99-7c2a8670397d

Any ideas, what's wrong? Can I fix this in my code or does this need to be fixed by the devs?

Otázku položil(a) philipp-schneider Pred 1 dňom

Autocomplete disabled at Chase.com

Recently, Chase seems to have disabled autocomplete on their login pages (www.chase.com and secure.chase.com). Saved usernames and passwords no longer auto-populate. Ye… (ďalšie informácie)

Recently, Chase seems to have disabled autocomplete on their login pages (www.chase.com and secure.chase.com). Saved usernames and passwords no longer auto-populate. Yet, Chrome and Edge have been unaffected. Can anyone at Mozilla address this?

Otázku položil(a) TIKD Pred 2 dňami

Youtube constantly buffering

youtube /shorts take forever to buffer. its been like this for a while I dont know whats wrong. It will work for seconds to minutes then buffer for many minutes and repea… (ďalšie informácie)

youtube /shorts take forever to buffer. its been like this for a while I dont know whats wrong. It will work for seconds to minutes then buffer for many minutes and repeats

Otázku položil(a) DragonsREpic Pred 2 dňami

Minor glitch on Chase.com

When I visit chase.com on the current version of Firefox, the saved usernames do not come up when I click on the username field, but the saved passwords come up when I cl… (ďalšie informácie)

When I visit chase.com on the current version of Firefox, the saved usernames do not come up when I click on the username field, but the saved passwords come up when I click on the password field. I believe the issue is likely from Chase's website, but it could also be a problem with, or at least involving, Firefox, so I decided to inform you of the issue, too.

My system info Processor 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz 2.42 GHz Installed RAM 32.0 GB (31.6 GB usable) System type 64-bit operating system, x64-based processor

Edition Windows 11 Home Version 23H2 Installed on ‎11/‎10/‎2022 OS build 22631.3880 Experience Windows Feature Experience Pack 1000.22700.1020.0

Otázku položil(a) bms.jsalazar Pred 2 dňami

How to Fix Slow Video Download Speeds in Firefox?

Hi everyone, I've noticed slow download speeds when using video downloaders on Firefox, especially for Pinterest videos. My site, PinVideoDownloader, has many users repo… (ďalšie informácie)

Hi everyone,

I've noticed slow download speeds when using video downloaders on Firefox, especially for Pinterest videos. My site, PinVideoDownloader, has many users reporting this issue. Other browsers like Chrome and Edge don't seem to have this problem. Any tips to improve download speeds on Firefox?

Thanks!

Otázku položil(a) ahsan qureshi Pred 3 dňami

Can't sign into eBay

A week or so ago (About the 18th July) I found that I could no longer log into eBay with Firefox. When I try to log in it comes up with a big read banner with the words … (ďalšie informácie)

A week or so ago (About the 18th July) I found that I could no longer log into eBay with Firefox.

When I try to log in it comes up with a big read banner with the words "We ran into a problem. Please try again later." inside it.

Using any other browser works.

I am just assuming an update, either Firefox or Windows has broken something.

I disabled my Firewall to see if that had any effect... no, it didn't.

I am not running any ad blockers.

I have also found others who have suffered the same issue on another forum.

Any idea's?

Cheers, Glenn

Otázku položil(a) gat58 Pred 4 dňami

Failure to connect to sites that have worked OK for years

There are two websites that I have been connecting to for years using Firefox in Windows 11. Recently, Firefox has not been able to connect. With one (https://www.medica… (ďalšie informácie)

There are two websites that I have been connecting to for years using Firefox in Windows 11. Recently, Firefox has not been able to connect. With one (https://www.medicare.uhc.com/aarp), I can see it trying to connect but it just never happens. Another (auth2.care360.com) gives the message "An error occurred during a connection to auth2.care360.com. PR_CONNECT_RESET_ERROR". Firefox is my primary browser. When I use Edge there is no issue connecting to either of these sites. I have not installed any new security software since the issues started and have always taken standard software updates.

Otázku položil(a) tdaccbus2 Pred 4 dňami

Double sentences in Boston Globe articles that have links in them.

I subscribe to the Boston Globe and I use a Windows 11 laptop. I get double sentences when a link is included in the sentence. I opened the Boston Globe in Google Chrome,… (ďalšie informácie)

I subscribe to the Boston Globe and I use a Windows 11 laptop. I get double sentences when a link is included in the sentence. I opened the Boston Globe in Google Chrome, and it does not happen there. How can I fix this?

Otázku položil(a) Jim and Mary Ellen Hesselbacher Pred 4 dňami

Firefox doesn't want to negotiate HTTPS with sites that have wildcarded site certificates.

My school library has a proxy server for connecting to subscriptions at various content providers. The site certificate is wildcarded, because the proxy server's name be… (ďalšie informácie)

My school library has a proxy server for connecting to subscriptions at various content providers. The site certificate is wildcarded, because the proxy server's name becomes the domain for the particular site to which the authenticated user is connecting. This has been the recommended way for libraries to connect institutionally with commercial content providers since at least 2000. The attachment shows the response that I get when I connect to my library with Firefox. You aren't allowed the opportunity to tell Firefox to accept the certificate as legit and connect anyway, which is extremely annoying.

Otázku položil(a) junk.ads9z Pred 6 dňami