Recieving 403 errors in firefox but nowhere else

I often receive a 403 error when using Firefox Every time, before this happens, I get the unsafe website warning and then the 403 error when I continue anyway I am usi… (kàsi)

I often receive a 403 error when using Firefox Every time, before this happens, I get the unsafe website warning and then the 403 error when I continue anyway


I am using the latest version at the time of writing These errors only occur on my desktop PC I have tried to replicate this issue on both my phone (Android) and another laptop(Windows 11) but all the websites work normally on there.

I have tried the following, none of which have any effect:

  • Clearing cookies
  • using Troubleshoot mode
  • Restarting
  • Changing Useragent
  • Using "Forget about this site"

The following do fix the issue

  • Using a VPN
  • Using Google Chrome
  • Running Firefox in another profile

Going through the privacy and security tab and reseting all the settings sometimes works but only temporarily

The following are a few websites where the issue occurs

  1. https://kdice.com/
  2. https://latinitium.com/
  3. https://theysaidso.com/
  4. https://opensource.org/
  5. httpe://obsidian.rocks/

Asked by Thomas Harris 7 àwọn ìṣẹjú ṣẹ́hìn

Tabs on bottom

Well looks like they did it to us again. My tabs are back on top again and need to put them below where I am a lot of other users like our tabs! Below is my current c… (kàsi)

Well looks like they did it to us again. My tabs are back on top again and need to put them below where I am a lot of other users like our tabs!

Below is my current coding if anyone knows how to adjust it to force the tabs to the bottom again would be much appreciated!!

Current version I am running of FF is 133.0

/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tabs_on_bottom.css made available under Mozilla Public License v. 2.0 See the above repository for updates as well as full license text. */

/* IMPORTANT Get window_control_placeholder_support.css Window controls will be all wrong without it. Additionally on Linux, you may need to get: linux_gtk_window_control_patch.css Use tabs_on_bottom_menubar_on_top_patch.css if you have menubar permanently enabled and want it on top

  • /
  1. toolbar-menubar[autohide="true"] > .titlebar-buttonbox-container,
  2. TabsToolbar > .titlebar-buttonbox-container{
 position: fixed;
 display: block;
 top: 0px;
 right:0;
 height: 40px;

} @media (-moz-gtk-csd-reversed-placement),

      (-moz-platform: macos){
 .titlebar-buttonbox-container{ left:0; right: unset !important; }

} @supports -moz-bool-pref("userchrome.force-window-controls-on-left.enabled"){

 .titlebar-buttonbox-container{ left:0; right: unset !important; }

}

root[uidensity="compact"] #TabsToolbar > .titlebar-buttonbox-container{ height: 32px }
  1. toolbar-menubar[inactive] > .titlebar-buttonbox-container{ opacity: 0 }

.titlebar-buttonbox-container > .titlebar-buttonbox{ height: 100%; }

  1. titlebar{
 -moz-box-ordinal-group: 2; /* Fx <112 compatibility */
 order: 2;
 -moz-appearance: none !important;
 --tabs-navbar-shadow-size: 0px;
 --uc-menubar-vertical-overlap: 19px; /* for hide_tabs_with_one_tab_w_window_controls.css compatibility */

} /* Re-order window and tab notification boxes */

  1. navigator-toolbox > div{ display: contents }

.global-notificationbox,

  1. tab-notification-deck{
 -moz-box-ordinal-group: 2; /* Fx <112 compatibility */
 order: 2;

}

  1. TabsToolbar .titlebar-spacer{ display: none; }

/* Also hide the toolbox bottom border which isn't at bottom with this setup */

  1. navigator-toolbox::after{ display: none !important; }

@media (-moz-gtk-csd-close-button){

 .titlebar-button{
   -moz-box-orient: vertical; /* Fx <112 compatibility */
   flex-direction: column;
 }

}

/* At Activated Menubar */

root:not([chromehidden~="menubar"], [sizemode="fullscreen"]) #toolbar-menubar:not([autohide="true"]) + #TabsToolbar > .titlebar-buttonbox-container {
 display: block !important;

}

  1. toolbar-menubar:not([autohide="true"]) > .titlebar-buttonbox-container {
 visibility: hidden;

}

/* These exist only for compatibility with autohide-tabstoolbar.css */ toolbox#navigator-toolbox > toolbar#nav-bar.browser-toolbar{ animation: none; }

  1. navigator-toolbox:hover #TabsToolbar{ animation: slidein ease-out 48ms 1 }
  2. TabsToolbar > .titlebar-buttonbox-container{ visibility: visible }
  3. navigator-toolbox:not(:-moz-lwtheme){ background-color: -moz-dialog }

/* Uncomment the following if you want bookmarks toolbar to be below tabs */ /*

  1. PersonalToolbar{
 -moz-box-ordinal-group: 2;
 order: 2;

}

  • /



/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tabs_on_bottom_menubar_on_top_patch.css made available under Mozilla Public License v. 2.0 See the above repository for updates as well as full license text. */

/* Menubar on top patch - use with tabs_on_bottom.css */ /* Only really useful if menubar is ALWAYS visible */

root:not([sizemode="fullscreen"]){ --uc-window-control-width: 0px !important }
root{
  /* height if native titlebar is enabled, assumes empty menubar */
 --uc-menubar-height: 20px;

}

root[tabsintitlebar]{
 /* height when native titlebar is disabled, more roomy so can fit buttons etc. */
 --uc-menubar-height: 29px;

}

root:is([sizemode="fullscreen"],[chromehidden~="menubar"]){
 --uc-menubar-height: 0px;

} /* Since menubar is statically at top, remove fake drag-space that might be set by window_control_placeholder_support.css */

root:not([sizemode="fullscreen"]) #nav-bar{ border-inline-width: 0 }
  1. navigator-toolbox{
 -moz-window-dragging: drag;
 padding-top: var(--uc-menubar-height) !important;

}

/* Remove window dragging from notification boxes */

  1. tab-notification-deck,

.global-notificationbox{

 -moz-window-dragging: no-drag;

}

  1. toolbar-menubar{
 position: fixed;
 display: flex;
 top: 0px;
 height: var(--uc-menubar-height);
 width: 100%;
 overflow: hidden;

}

  1. toolbar-menubar > .titlebar-buttonbox-container{ height: 100%; order: 100; }
  1. toolbar-menubar > [flex]{ flex-grow: 100; }
  2. toolbar-menubar > spacer[flex]{
 order: 99;
 flex-grow: 1;
 min-width: var(--uc-window-drag-space-post,20px);

}

  1. toolbar-menubar .toolbarbutton-1 { --toolbarbutton-inner-padding: 3px }
root:not([sizemode="fullscreen"]) #toolbar-menubar.browser-toolbar > .titlebar-buttonbox-container{
 visibility: visible;

}

root:not([chromehidden~="menubar"], [sizemode="fullscreen"]) #TabsToolbar#TabsToolbar#TabsToolbar > .titlebar-buttonbox-container {
 display: none !important;

}

Asked by scottish2 42 àwọn ìṣẹjú ṣẹ́hìn

Emails disappear on their own.

I've recently been experiencing a new problem with Thunderbird. As soon as I click on a subfolder in the left column that is bolded to indicate the presence of an unread … (kàsi)

I've recently been experiencing a new problem with Thunderbird. As soon as I click on a subfolder in the left column that is bolded to indicate the presence of an unread email, the unread email immediately disappears. I can usually find it in either the Junk folder or in Trash. Is this possibly a bug in the latest update?

Asked by doggit 26 àwọn ìṣẹjú ṣẹ́hìn

When the latest version is released, why does the process become slow or freeze until I press the update button and restart the device?

When the latest version is released, if I continue browsing without pressing the update button, the process suddenly becomes slow or freezes until I restart the device. W… (kàsi)

When the latest version is released, if I continue browsing without pressing the update button, the process suddenly becomes slow or freezes until I restart the device. Why is this? There are no problems until the update arrives, but as soon as the update arrives, the device becomes unstable, and after the update, it works as if nothing happened.

 I am using Google Translate, so the nuances may be different.

Asked by kudo4wd 35 àwọn ìṣẹjú ṣẹ́hìn

Last reply by kudo4wd 33 àwọn ìṣẹjú ṣẹ́hìn

Errors setting up an email account

I am trying to setup an email account through Spectrum. My user name and password are correct, so I think the problem is in the server settings. Thunderbird has the setti… (kàsi)

I am trying to setup an email account through Spectrum. My user name and password are correct, so I think the problem is in the server settings. Thunderbird has the settings as "mobile.charter.net". I have checked with Spectrum and this is correct. But Thunderbird says that something is still incorrect. Any advice on what I should do?

Asked by Norm Hoffman 36 àwọn ìṣẹjú ṣẹ́hìn

Slow loading speed for my local uTorrent GUI

I've noticed since a few upgraded of Firefox tat I am having an issue loading my local uTorrent GUI at: https://192.168.0.xxx:36724/gui/index.html. I am currently using 1… (kàsi)

I've noticed since a few upgraded of Firefox tat I am having an issue loading my local uTorrent GUI at: https://192.168.0.xxx:36724/gui/index.html. I am currently using 132.0.2 x64 and it eventually loads after 3-4 minutes. There are absolutely zero add-ons at the moment, and it does not matter if it is a portable version or standard installed version. I do not seem to have this issue while using Firefox (latest) ESR portable version.

Is there something I'm missing here? I am not sure if it is the port that's the issue with Firefox, because I have a local website using port 9090 and 8080 without any issues on loading. Also, it is happening with the nightly version of FF as well. All other browsers load quickly.

Kind regards,

Shedrock

Asked by Shedrock 1 ọjọ́ tó kọjá

Last reply by jscher2000 - Support Volunteer 46 àwọn ìṣẹjú ṣẹ́hìn

How to disable permanent sidebar in the browser?

Hi, I have a sidebar that appears to be permanent and I cannot make it go away. I opened firefox, went to reopen the previous session tab with control + shift + t, and … (kàsi)

Hi,

I have a sidebar that appears to be permanent and I cannot make it go away.

I opened firefox, went to reopen the previous session tab with control + shift + t, and my fingers slipped and hit the wrong combo of buttons.

Then this thing appeared. This sidebar. I looked for similar questions on the topic, but it is not the history or bookmarks sidebar that pops up from control + h or control + b. I love hotkeys.

So my question is, how do I disable the dang thing?? I tried going into custom tools, I tried looking into settings, but I really cannot find this. And it seems that other issues are usually to due with bookmarks/history sidebars - which I don't believe to be the issue here..

Any help is greatly appreciated!

It's the sidebar on the left in my image if that provides any further info!

Thanks :)

Asked by max 1 wákàtí sẹ́hìn

Last reply by TyDraniu 1 wákàtí sẹ́hìn

  • Ti yanjú

Sent folder missing in 128.5.0esr

Hi everyone, I've been using Thunderbird for a few months now and never had any problems until today when I've updated to 128.5.0esr. I'm using iCloud email and suddenly… (kàsi)

Hi everyone,

I've been using Thunderbird for a few months now and never had any problems until today when I've updated to 128.5.0esr. I'm using iCloud email and suddenly my Sent folder disappeared. When I started TB it showed up and disappeared after 2-3 seconds. It happened few times when I tried to restart TB however now it's permanently gone. I didn't change any settings and the folder is visible in Apple Mail or Spark, however it's gone from TB. Any idea what's going on? Please help.

Thanks, Szymon.

Asked by Szymon 3 àwọn wákàtí sẹ́hìn

Answered by Szymon 1 wákàtí sẹ́hìn

Spam Filtering

I just installed Android V 8.1 and the anti-spam function isn't working. Spam mail is not being automatically filtered as it is supposed to do, and does on the desktop ve… (kàsi)

I just installed Android V 8.1 and the anti-spam function isn't working. Spam mail is not being automatically filtered as it is supposed to do, and does on the desktop version. In addition the junk/spam mail settings that are supposed to be in the Accounts area are not there and the Swipe to Spam function also doesn't work nor does the "long press" to get to the spam marking option.

Any estimate as to when this functionality will be brought online?

Asked by BK 2 àwọn ọjọ́ tó kọjá

Last reply by Paul 1 wákàtí sẹ́hìn

absurd error messages

I will have to stop using Mozilla after many years - sad. But I am getting links blocked by stupid error messages about security when the sources are well known and prot… (kàsi)

I will have to stop using Mozilla after many years - sad. But I am getting links blocked by stupid error messages about security when the sources are well known and protected. Today it was the Journal of the American Medical Association. I have no time to deal with this nonsense.

Asked by modalities2013 1 ọjọ́ tó kọjá

Last reply by Paul 1 wákàtí sẹ́hìn

email

email page very delayed and always "not responding' message popping up. won't let me send everytime. generally not working for me.

Asked by treesr 1 wákàtí sẹ́hìn

Tabs on bottom - Firefox V133

Another update, another repeat of the same question: How do I return tabs on bottom in Firefox V133? I switch between tabs a lot so it is far more efficient for me to ha… (kàsi)

Another update, another repeat of the same question: How do I return tabs on bottom in Firefox V133?

I switch between tabs a lot so it is far more efficient for me to have them closest to the browsing window

Thanks

Asked by craig.hemingway 1 wákàtí sẹ́hìn

Last reply by Paul 1 wákàtí sẹ́hìn

Firefox took space for a new lateral bar that I do not want

I need help making disappear the lateral bar but looks imposible, I have tried deleting this from customize toolbar but I still see it, I do not want it because it takes … (kàsi)

I need help making disappear the lateral bar but looks imposible, I have tried deleting this from customize toolbar but I still see it, I do not want it because it takes space from my really small laptop screen.

This problem started when I updated the laptop and I guess firefox also

Asked by Eliezer David Gutierrez Hinojosa 5 àwọn wákàtí sẹ́hìn

Last reply by Paul 1 wákàtí sẹ́hìn

Sidebar

A sidebar has appeared out of nowhere. I removed all extension on that sidebar and it still doesn't go away. I already have a bookmark bar and extensions at the top bar. … (kàsi)

A sidebar has appeared out of nowhere. I removed all extension on that sidebar and it still doesn't go away. I already have a bookmark bar and extensions at the top bar. I don't want another sidebar at every firefox window. How do I remove the sidebar, please.

Asked by Always Hungry 4 àwọn wákàtí sẹ́hìn

Last reply by Paul 1 wákàtí sẹ́hìn

search from location bar takes over existing (new, blank) tab instead of opening new one

I have the setting browser.search.openinnewtab and also browser.urlbar.openintab both set to true, but when I type a search into either the address bar or the search bar … (kàsi)

I have the setting browser.search.openinnewtab and also browser.urlbar.openintab both set to true, but when I type a search into either the address bar or the search bar next to it, instead of opening a new tab, it puts that search into an already-open blank tab, if one is already open.

I often use blank tabs to separate my currently open tabs into groups by topic and whatnot, so it's incredibly annoying when the search bar takes over one of my adhoc 'separators' instead of opening a new tab like I want it to.

Is there a setting to force the search bar to always open a brand new tab, even if 'new tabs' are already open??

Asked by drysdan 1 wákàtí sẹ́hìn