Advertisement
Guest User

.giff rendering IE 11

a guest
Nov 12th, 2015
1,203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.81 KB | None | 0 0
  1. // internal SharePoint 2010 - correctly renders the .giff
  2. // response headers
  3. HTTP/1.1 304 NOT MODIFIED
  4. Cache-Control: private,max-age=0
  5. Content-Length: 0
  6. Expires: Wed, 28 Oct 2015 19:29:18 GMT
  7. Server: Microsoft-IIS/7.5
  8. X-Powered-By: ASP.NET
  9. MicrosoftSharePointTeamServices: 14.0.0.4762
  10. Date: Thu, 12 Nov 2015 19:29:18 GMT
  11. // certain headers removed for brevity
  12.  
  13. // SharePoint O365 - will not render the .giff
  14. // response headers
  15. HTTP/1.1 304 Not Modified
  16. Cache-Control: public, max-age=86400
  17. Content-Length: 0
  18. Accept-Ranges: bytes
  19. Server: Microsoft-IIS/8.5
  20. Strict-Transport-Security: max-age=31536000
  21. X-FRAME-OPTIONS: SAMEORIGIN
  22. X-Powered-By: ASP.NET
  23. MicrosoftSharePointTeamServices: 16.0.0.4608
  24. X-Content-Type-Options: nosniff
  25. Date: Thu, 12 Nov 2015 19:26:47 GMT
  26. // certain headers removed for brevity
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement