Firefox sends GET request twice to server for a dynamically-generated small PNG image
Categories
(Core :: Graphics: ImageLib, defect)
Tracking
()
People
(Reporter: gbegen, Unassigned)
References
(Blocks 1 open bug)
Details
Comment 1•15 years ago
|
||
Reporter | ||
Comment 2•15 years ago
|
||
Comment 3•15 years ago
|
||
Reporter | ||
Comment 4•15 years ago
|
||
Updated•14 years ago
|
Comment 5•14 years ago
|
||
Comment 6•14 years ago
|
||
Comment 7•14 years ago
|
||
Comment 8•14 years ago
|
||
Comment 9•13 years ago
|
||
Comment 10•13 years ago
|
||
Comment 11•13 years ago
|
||
Comment 12•13 years ago
|
||
Comment 13•13 years ago
|
||
Comment 14•13 years ago
|
||
Comment 15•13 years ago
|
||
Comment 17•12 years ago
|
||
Comment 18•11 years ago
|
||
Comment 19•11 years ago
|
||
Comment 20•11 years ago
|
||
Comment 21•11 years ago
|
||
Comment 22•11 years ago
|
||
Comment 23•11 years ago
|
||
Comment 24•11 years ago
|
||
Comment 25•11 years ago
|
||
Comment 26•11 years ago
|
||
Comment 27•11 years ago
|
||
Comment 28•11 years ago
|
||
Comment 29•11 years ago
|
||
Comment 30•11 years ago
|
||
Comment 31•11 years ago
|
||
Comment 32•11 years ago
|
||
Comment 33•11 years ago
|
||
Comment 34•11 years ago
|
||
Comment 35•11 years ago
|
||
Comment 36•11 years ago
|
||
Comment 37•10 years ago
|
||
Comment 39•10 years ago
|
||
Comment 40•10 years ago
|
||
Comment 41•9 years ago
|
||
Comment 42•9 years ago
|
||
Comment 43•9 years ago
|
||
Comment 44•7 years ago
|
||
Comment 45•2 years ago
|
||
This appears to be affecting me also.
I'm returning to Firefox after a long absence. Using latest stable (104.0 x64) on Windows 11.
Using a perl plack script I wrote myself that receives GET commands and acts upon them is receiving duplicate queries whenever a single GET query is required. This has always worked fine with Chrome, but appears to have this longstanding issue with Firefox.
There may be a link to a favicon request in that the favicon is not displayed in Firefox
However, looking at the F12 console in Firefox, this rather interesting error is displayed that may shed some light. I'll check my script is providing this.
The character encoding of the document was not declared, and the encoding was guessable from content only late. This caused the document to be reloaded. The character encoding needs to be declared in the Content-Type HTTP header, using a meta tag, or using a byte order mark.
Comment 46•2 years ago
|
||
For my duplicate GET issue, this was indeed the problem.
Adding <meta charset="utf-8">
to the html eliminated that error message and, more importantly, stopped each GET query being sent twice.
I'm not sure this is a bug in Firefox, but it probably qualifies as unexpected behavior.
Hopefully this is of use to someone.
Updated•2 years ago
|
Description
•