Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

How can I make "network.http.redirection-limit" higher than 255 ?

  • 2 replies
  • 1 has this problem
  • 7 views
  • Last reply by cor-el

more options

Hi. I am trying to change "network.http.redirection-limit" value in "about:config".

I tried 10000, and it shows now "network.http.redirection-limit = 10000", but when I try to run my script, it stops in 255.

It's not working for 10000 times, it just stops in 255.

Any way to make this value higher than 255 ?

Hi. I am trying to change "network.http.redirection-limit" value in "about:config". I tried 10000, and it shows now "network.http.redirection-limit = 10000", but when I try to run my script, it stops in 255. It's not working for 10000 times, it just stops in 255. Any way to make this value higher than 255 ?

All Replies (2)

more options

Hi, try to lock the preference to see if works that way, 255 is a protection to not crash the browser.

http://kb.mozillazine.org/Locking_preferences


thank you

more options

You can't. Some prefs are clamped that this pref is clamped to 0xff.

958     if (PREF_CHANGED(HTTP_PREF("redirection-limit"))) {
959         rv = prefs->GetIntPref(HTTP_PREF("redirection-limit"), &val);
960         if (NS_SUCCEEDED(rv))
961             mRedirectionLimit = (uint8_t) clamped(val, 0, 0xff);