Showing questions tagged: Show all questions

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… (read more)

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?

Asked by philipp-schneider Prieš 1 mėnesį

  • Išspręsta

Blue Squares on my Browser

Hi! I seem to be having an issue with my browser. Every now and then, blue squares will partially or completely replace the icons on my toolbar an search bar, and disappe… (read more)

Hi! I seem to be having an issue with my browser. Every now and then, blue squares will partially or completely replace the icons on my toolbar an search bar, and disappear on its own after a while.

For reference, I currently have several tabs open (13) on a split screen, but only the icons on de left window are affected by this. This started happening this month, prior to this I was able to have multiple tabs open on a split screen without issue.

I'll attach 2 images so you can see what I mean.

I appreciate any advice I get to fix this.

Asked by Alex Prieš 1 mėnesį

Answered by cor-el Prieš 1 mėnesį

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… (read more)

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

Asked by DragonsREpic Prieš 1 mėnesį

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… (read more)

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

Asked by bms.jsalazar Prieš 1 mėnesį

  • Išspręsta

Firefox resizes and pushes to the right the "Reply" text box when I enter the cursor to type my message.

Hi all 👋 I'm using the Universal Credit website - https://www.universal-credit.service.gov.uk When I receive a message, sometimes there's a radio button to "Reply", which… (read more)

Hi all 👋 I'm using the Universal Credit website - https://www.universal-credit.service.gov.uk When I receive a message, sometimes there's a radio button to "Reply", which initially opens in the center of the page as normal, but as soon as I place the cursor in the box, it shoves it off to the side and shrinks it. This has been going on for a while, but as I found work for the last 6 months, I haven't been interacting with the site. I had to reply this morning and had the same issue, so I thought to try opening it in Chrome and had no such issue.

Before I go down the Nuclear route with the "Refresh" option, as I have enough on my plate already, does anyone understand this issue and have any idea for a fix for me, please?

Firefox is set to auto-update and reports that it is up-to-date. 128.0 (64-bit) The same for the Windows install Edition Windows 10 Home Version 22H2 Installed on ‎22/‎03/‎2022 OS build 19045.4651 Experience Windows Feature Experience Pack 1000.19060.1000.0

Asked by The PolyGuy Prieš 1 mėnesį

Answered by The PolyGuy Prieš 1 mėnesį

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… (read more)

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!

Asked by ahsan qureshi Prieš 1 mėnesį

Firefox Crashes

Since the past 2 days whenever I try to upload a document on any website my FireFox crashes and stops responding. Upon Further investigation it turns out this is only hap… (read more)

Since the past 2 days whenever I try to upload a document on any website my FireFox crashes and stops responding. Upon Further investigation it turns out this is only happening on the Downloads folder. I havent changed anything in my computer. No new software, No windows updates. It just randomly stopped working last night .

Asked by Pranit Sehgal Prieš 1 mėnesį

Last reply by Paul Prieš 1 mėnesį

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 … (read more)

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

Asked by gat58 Prieš 1 mėnesį

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… (read more)

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.

Asked by tdaccbus2 Prieš 1 mėnesį

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,… (read more)

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?

Asked by Jim and Mary Ellen Hesselbacher Prieš 1 mėnesį

KP.org site problems

I can log into KP.org ok. Often while clicking on an option the screen goes mostly blank. click refresh and I only get a flash of the Kaiser screen. If I use Chrome the … (read more)

I can log into KP.org ok. Often while clicking on an option the screen goes mostly blank. click refresh and I only get a flash of the Kaiser screen. If I use Chrome the site works as normal. Please see what you can do, Chrome is not my favorite

 Jerry Hirst

Asked by Jerry Hirst Prieš 1 mėnesį

Last reply by cor-el Prieš 1 mėnesį

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… (read more)

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.

Asked by junk.ads9z Prieš 1 mėnesį