-
-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Infinite redirect loops #138
Comments
yea i am also having this problem with aliexpress as well, a whitelist would be great |
same problem. |
I have a similar problem but with local JetBrains YouTrack instance. The extension decodes %-encoded parts, but the browser (Firefox) seems to encode them back. |
Same issue with YouTrack. Managed to track it down to this extension. |
Related to ClearURLs/Addon#308 |
This has only been happening for me with escaped characters for a long time but now many sites like DuckDuckGo seem to have infinite redirect loops too due to the plugin completely stripping away all url params. I've also had firefox crash a few times due to this for bad memory allocation |
We’re aware of the issue, and an update has already been submitted to Mozilla for review. It should be approved within the next few days, resolving the problem. Should be fixed by ClearURLs/Addon#415. You're currently using the version 1.27.1? |
Hello,
I think the essence of the problem is the same as ClearURLs/Addon#318 and ClearURLs/Addon#295
I use Firefox (Developer edition) and ClearURLs 1.26.1.
I noticed that in some circumstances, on some sites, an infinte redirect loop will happen.
When I turn off the extension, the page loads fine.
Examples
Aliexpress
The first example is this Aliexpress link (you must have cookies cleared or open it in an anonymous window).
https://www.aliexpress.us/item/3256804772697909.html?gatewayAdapt=glo2usa4itemAdapt
With the extension enabled, it loops like this:
This will end with a browser NS_ERROR_REDIRECT_LOOP error.
With the extension disabled, it loads the page fine, like this:
The difference I see is the
_ga
parameter. Without it, it seems like Aliexpress is not redirecting properly.Google Trends
The next example is Google Trends.
When I search for a term and I try to select the country or time span, the URL in the URL bar will start changing back and forth rapidly.
It loops between these two URLs:
The difference is that it is not a full redirect, but it only changes the URL in the URL bar. It also looks like it changes between a space or a plus symbol instead of a space.
So it does not end with NS_ERROR_REDIRECT_LOOP, but it will loop infinitely.
When I disable the extension, the loop stops.
Solution?
I think the solution is not to manually whitelist sites with the problem, but to make the extension detect the redirect loop and whitelist the whole site automatically.
It looks like Firefox shows an NS_ERROR_REDIRECT_LOOP error after 16 redirects.
So maybye try to count the redirects and on 13 redirects, for example, add the site to the whitelist?
Or try to detect the NS_ERROR_REDIRECT_LOOP error, add the site to the whitelist, and refresh the page automatically?
With the Google Trends problem, count changes to the url instead of redirects?
Thank you.
The text was updated successfully, but these errors were encountered: