Apache and Content-Range












0















I am trying to implement support for Content-Range in PHP-generated files. When a browser sends Range request my script gives correct bytes and it works well.
But while testing how Content-Range looks when downloading a PDF from Apache server I realized the first request from a web browser to my server does not contain Range header but somehow server still doesn't return full file and only 32 kB.



On this screenshot you can see that Firefox sends 5 requests to Apache for my_pdf.pdf and Apache each time responds with 32-192 kB. The whole PDF is 28 MB. Requests 2-5 do contain Range request. But the first request- highlighted does not. You can see on the right that Content-Length is 28 MB but that Apache returned only 32 kB.



So my question is- how did Apache know to return only 32 kB and not the whole 28 MB PDF file?



enter image description here










share|improve this question



























    0















    I am trying to implement support for Content-Range in PHP-generated files. When a browser sends Range request my script gives correct bytes and it works well.
    But while testing how Content-Range looks when downloading a PDF from Apache server I realized the first request from a web browser to my server does not contain Range header but somehow server still doesn't return full file and only 32 kB.



    On this screenshot you can see that Firefox sends 5 requests to Apache for my_pdf.pdf and Apache each time responds with 32-192 kB. The whole PDF is 28 MB. Requests 2-5 do contain Range request. But the first request- highlighted does not. You can see on the right that Content-Length is 28 MB but that Apache returned only 32 kB.



    So my question is- how did Apache know to return only 32 kB and not the whole 28 MB PDF file?



    enter image description here










    share|improve this question

























      0












      0








      0








      I am trying to implement support for Content-Range in PHP-generated files. When a browser sends Range request my script gives correct bytes and it works well.
      But while testing how Content-Range looks when downloading a PDF from Apache server I realized the first request from a web browser to my server does not contain Range header but somehow server still doesn't return full file and only 32 kB.



      On this screenshot you can see that Firefox sends 5 requests to Apache for my_pdf.pdf and Apache each time responds with 32-192 kB. The whole PDF is 28 MB. Requests 2-5 do contain Range request. But the first request- highlighted does not. You can see on the right that Content-Length is 28 MB but that Apache returned only 32 kB.



      So my question is- how did Apache know to return only 32 kB and not the whole 28 MB PDF file?



      enter image description here










      share|improve this question














      I am trying to implement support for Content-Range in PHP-generated files. When a browser sends Range request my script gives correct bytes and it works well.
      But while testing how Content-Range looks when downloading a PDF from Apache server I realized the first request from a web browser to my server does not contain Range header but somehow server still doesn't return full file and only 32 kB.



      On this screenshot you can see that Firefox sends 5 requests to Apache for my_pdf.pdf and Apache each time responds with 32-192 kB. The whole PDF is 28 MB. Requests 2-5 do contain Range request. But the first request- highlighted does not. You can see on the right that Content-Length is 28 MB but that Apache returned only 32 kB.



      So my question is- how did Apache know to return only 32 kB and not the whole 28 MB PDF file?



      enter image description here







      php apache http http-headers






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 21 '18 at 0:14









      TomTom

      1,43011938




      1,43011938
























          2 Answers
          2






          active

          oldest

          votes


















          1















          So my question is- how did Apache know to return only 32 kB and not the whole 28 MB PDF file?




          It didn't. If you look at the Content-Length header in the response, it shows the full file size of 29.3 million bytes.



          The client probably closed the connection without reading the entire response.






          share|improve this answer































            0














            Answer posted by @duskwuff is correct- Firefox terminates the transfer of the first requests once it gets enough to process the PDF.



            Below is just a few details I discovered.
            Firefox will terminate if your scripts returns these headers:



            Accept-Ranges: bytes
            Content-Length: 29293315


            You can (but don't have to) also return this header:



            header("Content-Range: bytes 0-29293314/29293315");   


            However by default Apache tries to compress whatever PHP returns and then adds this header:



            Transfer-Encoding: chunked


            And when Firefox (and Chrome) see this they won't close the connection. So I just disabled Apache compression and everything works. Now Firefox just does a few requests, get bits of PDF instead of the whole file and renders first page just fine (because it didn't need whole PDF to render just the first page).






            share|improve this answer























              Your Answer






              StackExchange.ifUsing("editor", function () {
              StackExchange.using("externalEditor", function () {
              StackExchange.using("snippets", function () {
              StackExchange.snippets.init();
              });
              });
              }, "code-snippets");

              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "1"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53403529%2fapache-and-content-range%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              1















              So my question is- how did Apache know to return only 32 kB and not the whole 28 MB PDF file?




              It didn't. If you look at the Content-Length header in the response, it shows the full file size of 29.3 million bytes.



              The client probably closed the connection without reading the entire response.






              share|improve this answer




























                1















                So my question is- how did Apache know to return only 32 kB and not the whole 28 MB PDF file?




                It didn't. If you look at the Content-Length header in the response, it shows the full file size of 29.3 million bytes.



                The client probably closed the connection without reading the entire response.






                share|improve this answer


























                  1












                  1








                  1








                  So my question is- how did Apache know to return only 32 kB and not the whole 28 MB PDF file?




                  It didn't. If you look at the Content-Length header in the response, it shows the full file size of 29.3 million bytes.



                  The client probably closed the connection without reading the entire response.






                  share|improve this answer














                  So my question is- how did Apache know to return only 32 kB and not the whole 28 MB PDF file?




                  It didn't. If you look at the Content-Length header in the response, it shows the full file size of 29.3 million bytes.



                  The client probably closed the connection without reading the entire response.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 21 '18 at 0:45









                  duskwuffduskwuff

                  147k19177233




                  147k19177233

























                      0














                      Answer posted by @duskwuff is correct- Firefox terminates the transfer of the first requests once it gets enough to process the PDF.



                      Below is just a few details I discovered.
                      Firefox will terminate if your scripts returns these headers:



                      Accept-Ranges: bytes
                      Content-Length: 29293315


                      You can (but don't have to) also return this header:



                      header("Content-Range: bytes 0-29293314/29293315");   


                      However by default Apache tries to compress whatever PHP returns and then adds this header:



                      Transfer-Encoding: chunked


                      And when Firefox (and Chrome) see this they won't close the connection. So I just disabled Apache compression and everything works. Now Firefox just does a few requests, get bits of PDF instead of the whole file and renders first page just fine (because it didn't need whole PDF to render just the first page).






                      share|improve this answer




























                        0














                        Answer posted by @duskwuff is correct- Firefox terminates the transfer of the first requests once it gets enough to process the PDF.



                        Below is just a few details I discovered.
                        Firefox will terminate if your scripts returns these headers:



                        Accept-Ranges: bytes
                        Content-Length: 29293315


                        You can (but don't have to) also return this header:



                        header("Content-Range: bytes 0-29293314/29293315");   


                        However by default Apache tries to compress whatever PHP returns and then adds this header:



                        Transfer-Encoding: chunked


                        And when Firefox (and Chrome) see this they won't close the connection. So I just disabled Apache compression and everything works. Now Firefox just does a few requests, get bits of PDF instead of the whole file and renders first page just fine (because it didn't need whole PDF to render just the first page).






                        share|improve this answer


























                          0












                          0








                          0







                          Answer posted by @duskwuff is correct- Firefox terminates the transfer of the first requests once it gets enough to process the PDF.



                          Below is just a few details I discovered.
                          Firefox will terminate if your scripts returns these headers:



                          Accept-Ranges: bytes
                          Content-Length: 29293315


                          You can (but don't have to) also return this header:



                          header("Content-Range: bytes 0-29293314/29293315");   


                          However by default Apache tries to compress whatever PHP returns and then adds this header:



                          Transfer-Encoding: chunked


                          And when Firefox (and Chrome) see this they won't close the connection. So I just disabled Apache compression and everything works. Now Firefox just does a few requests, get bits of PDF instead of the whole file and renders first page just fine (because it didn't need whole PDF to render just the first page).






                          share|improve this answer













                          Answer posted by @duskwuff is correct- Firefox terminates the transfer of the first requests once it gets enough to process the PDF.



                          Below is just a few details I discovered.
                          Firefox will terminate if your scripts returns these headers:



                          Accept-Ranges: bytes
                          Content-Length: 29293315


                          You can (but don't have to) also return this header:



                          header("Content-Range: bytes 0-29293314/29293315");   


                          However by default Apache tries to compress whatever PHP returns and then adds this header:



                          Transfer-Encoding: chunked


                          And when Firefox (and Chrome) see this they won't close the connection. So I just disabled Apache compression and everything works. Now Firefox just does a few requests, get bits of PDF instead of the whole file and renders first page just fine (because it didn't need whole PDF to render just the first page).







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Nov 21 '18 at 1:23









                          TomTom

                          1,43011938




                          1,43011938






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53403529%2fapache-and-content-range%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              MongoDB - Not Authorized To Execute Command

                              in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

                              How to fix TextFormField cause rebuild widget in Flutter