-
Notifications
You must be signed in to change notification settings - Fork 253
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
strange experience with very large URL parameters #238
Comments
What is the full error message? It looks like Varnish may be truncating the URL passed to the backend. |
I think I found it: |
It may be, can you copy & paste the full error message from the log? |
yep:
|
Ok, it seems there's two parts to this:
|
@aheadley I'm also seeing this bug. Can you recommend any quick patches? All in all I appreciate the timet that went into this extension. Thank you so much. |
Hi, |
Same issue. Did any one find any solution ? |
This appears to be happening to us to. Was there ever a fix? Error:
|
Hi studio2f : We didnt find any solution for this, but surely found the reason why this error was getting generated. We closely checked, and found that the url parameters which were getting generated had spaces. For eg www.example.com?color=Light Blue. Generally chrome and mozilla appends %20 to the urls, but IE browser didnt appended it. Once we manually started passing the %20 value to spaces for IE browser, we stopped getting the above error. New Url : www.example.com?color=Light%20Blue Though we still are getting few such errors in log reports every day, but our main problem area was solved with this little fix. Hope this might help. |
For us, I have magento-turpentine/app/code/community/Nexcessnet/Turpentine/Model/Dummy/Request.php Lines 40 to 46 in c670a49
|
Hi,
In MailChimp campaign newsletters the URL parameters are very long, like this one:
?utm_source=THIS+TEST+NEWSLETTER&utm_campaign=256b7777e7a-newsletter201313&utm_medium=email&utm_term=0_80b5c23cde-256b711e7a-%5BLIST_EMAIL_ID%5D&gooal=eyJjaWQiOiIyNTZiNzExZTdhIiwidGFnIjoibmV3c2xldHRlcjIwMTMwNiIsInVpZCI6IjQ1MTRlYjQxNDg5NGExODczNmMzMDQ2YWQifQ%3D%3D%7CY3Npa29zLmFrb3NAcHJldHR5bGl0dGxlL777&mc_cid=256b711777&mc_eid=%5BUNIQID%5D
I recently updated turpentine in my live system to 0.5.4 so I haven't got enough time to test it fully so I run into these errors in the landing page with the above URL parameters today morning after the newsletter was sent to every subscriber:
Invalid URI supplied /srv/www/www.example.com/magento/lib/Zend/Uri.php(143): Zend_Uri_Http->__construct('http', '//www.example
So I stop varnish and bring nginx to front (port 80) to disable turpentine.
Then I tried this URL parameters on my development environment and in the first few times I can reproduce the error. I have found out that the gooal parameter cause the problem. URLs without the very long gooal parameter works, with gooal parameters doesn't. But after a few attempts the URLs with gooal parameters suddenly start working and I don't know why.
Can somebody confirm this weird issue?
The text was updated successfully, but these errors were encountered: