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… (čitajće wjace)

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/

Prašany wot Thomas Harris před 3 mjeńšinami

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… (čitajće wjace)

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;

}

Prašany wot scottish2 před 38 mjeńšinami

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… (čitajće wjace)

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.

Prašany wot kudo4wd před 31 mjeńšinami

Poslednja wotmołwa by kudo4wd před 29 mjeńšinami

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… (čitajće wjace)

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

Prašany wot Shedrock před 1 dnjom

Poslednja wotmołwa by jscher2000 - Support Volunteer před 43 mjeńšinami

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 … (čitajće wjace)

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 :)

Prašany wot max před 1 hodźinu

Poslednja wotmołwa by TyDraniu před 1 hodźinu

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… (čitajće wjace)

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

Prašany wot craig.hemingway před 1 hodźinu

Poslednja wotmołwa by Paul před 1 hodźinu

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 … (čitajće wjace)

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

Prašany wot Eliezer David Gutierrez Hinojosa před 5 hodźinami

Poslednja wotmołwa by Paul před 1 hodźinu

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. … (čitajće wjace)

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.

Prašany wot Always Hungry před 4 hodźinami

Poslednja wotmołwa by Paul před 1 hodźinu

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 … (čitajće wjace)

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??

Prašany wot drysdan před 1 hodźinu

Search bar taking up entire screen

My search bar is taking up the entire screen when I try to interact with it. When I go to search stuff, then it returns to the normal style. Then, when I try to interact … (čitajće wjace)

My search bar is taking up the entire screen when I try to interact with it. When I go to search stuff, then it returns to the normal style. Then, when I try to interact with the page I'm on, it absorbs the screen.

Prašany wot Eddie Lampert před 1 hodźinu

Webpage Scaling

I never feel like webpages scale properly when I visit them. There is always content left off screen or I have to zoom out so much that the text is too small to read. Is … (čitajće wjace)

I never feel like webpages scale properly when I visit them. There is always content left off screen or I have to zoom out so much that the text is too small to read. Is there a setting I can change to affect this?

This webpage is particularly egregious: https://www.desktopmetal.com/products/shop

My Firefox Nightly version is: 135.0a1 (2024-11-26) (aarch64). My computer is a: MacBook Air (15-inch, M2, 2023) running macOS Sequoia (Version 15.1). I have been having these issues for a long time regardless of computer.

I have attached a picture of the labs settings I have enabled but I cannot see why any of them would affect this.

Prašany wot realCrowman před 1 hodźinu

Review Checker

The latest update to Firefox includes a new Review Checker. It is activated by pressing the price tag in the address bar when on a specific product page in Amazon, etc. … (čitajće wjace)

The latest update to Firefox includes a new Review Checker. It is activated by pressing the price tag in the address bar when on a specific product page in Amazon, etc. This price tag does not appear on my laptop when I am on a product page. Is there an activation method I am not using? How do I get the price tag to appear?

Prašany wot Tim Weidman před 2 hodźinomaj

Firefox and Chrome crash eachother

I've asked about this before but got no help Firefox is my browser of choice. Occasionally, I find in necessary to use Chrome. The vast majority of time, when are bo… (čitajće wjace)

I've asked about this before but got no help Firefox is my browser of choice. Occasionally, I find in necessary to use Chrome.

The vast majority of time, when are both are active at the same time, one or both crash, like today. Firefox closed abruptly, then the crash report appeared. I have the crash report. Chrome froze up, and had to be shut down in Task Manager.

It only occurs in this scenario. Rarely does Firefox crash otherwise.

Can someone please advise where to go to get help?

Prašany wot noel_envode před 1 tydźenjom

Poslednja wotmołwa by noel_envode před 3 hodźinami

  • Rozrisany

Extensions Require Disable/Re-Enabling on every restart

I am currently running Firefox on desktop (128.4.0esr) version. The last few addons that I have installed are not working properly. Or rather, they work just fine, but w… (čitajće wjace)

I am currently running Firefox on desktop (128.4.0esr) version.

The last few addons that I have installed are not working properly. Or rather, they work just fine, but when I close Firefox and re-open it later, they seem to fail to actually enable. I must go to the about:addons page, disable the addon, and then re-enable it for it to actually work. If I do not do this, it will not be on my toolbar, and the Extensions sidebar button does not show the addon in the list. It's as if it isn't properly installed.

After reading this post: https://support.mozilla.org/en-US/que.../1420017 I thought maybe my extensions db got corrupted somehow, so I followed their instructions and deleted the extensions.databaseSchema config. And wouldn't you know it, it worked! Once I restarted Firefox, I saw some notifications in the main sidebar menu and was greeted with this: Notifications Once I clicked through them and enabled, everything seemed fine.

However after closing firefox again, the problem comes back. Those exact extensions that I manually approved upon restarting are the ones that are giving me troubles and not enabling properly. An interesting thing I noticed is that these all seem to be extensions that require additional permissions. I enabled the addon and gave them the permissions they requested, so I don't know why they are failing to enable properly on startup.

I want to permanently fix the problem

Prašany wot Delfofthebla před 6 dnjemi

Wotmołwa wot Delfofthebla před 2 hodźinomaj

  • Rozrisany

Disappearing Bookmarks Sidebar

Everytime I load Firefox the bookmarks sidebar is not shown. Navigating thus View => Sidebar => Bookmarks I can bring it up. It will stay visible for … (čitajće wjace)

Everytime I load Firefox the bookmarks sidebar is not shown.

Navigating thus View => Sidebar => Bookmarks I can bring it up. It will stay visible for the whole of my browser session. However, after I've closed this session and started another. the bookmark sidebar is missing again.

How can I make the bookmarks sidr be available all the time?

FF 127.0.2 OS Windows 11 Pro v 24H2 Build(26100.994).

Prašany wot IanM před 5 měsacami

Wotmołwa wot IanM před 1 měsacom

Unable to Connect

Hello, I have uninstalled and reinstalled firefox twice using two different ways found on the community/mozilla website through chrome and I am still having trouble. It s… (čitajće wjace)

Hello, I have uninstalled and reinstalled firefox twice using two different ways found on the community/mozilla website through chrome and I am still having trouble. It started a couple weeks ago when I received a notice at the top right hand of my firefox page for an update. I tried and it shows as Unable to connect. I tried various ways to connect with mozilla with no luck. I uninstalled, restarted my computer and reinstalled twice and still having the same issue. I lost all my plug ins and add ons after the reinstall and now I can't not even get them and can no longer sign into my firefox account through firefox. Anything that has to do with mozilla I can not reach unless I use chrome which I don't like doing. I have searched the community and nothing seems to help and I even submitted a help question in help community but no responders. Anything which I found addressing Unable to Connect was years old anyway. I can only assume it had to do with the update pop up which I never got to do and assumed a refresh or a reinstall would take care of it but it hasn't. What can I do? Thank You, Charyl

Prašany wot Charyl před 2 hodźinomaj