Changes between Initial Version and Version 1 of Ticket #28786, comment 3


Ignore:
Timestamp:
Nov 8, 2017, 7:32:18 AM (6 years ago)
Author:
spudnica

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28786, comment 3

    initial v1  
    441. I guess the issue is related to way that content-length is calculated. If I manually set content-length to match particular page I request for, I am able to open this in Chrome. It seems that str(len(response.content)) is not returning proper reponse length i CommonMiddleware for me and firefox was just ignoring it.
    552. If I order CommonMiddleware at first place in my middlewares list, site is working properly, though it is against reccommendations in Django docs guide Middleware ordering.
    6 
     63. If i disable all middlewares that are added to site by myself, and place CommonMiddleware in right order, the error doesnt occur, so its realted to way how the length size calculated.
Back to Top