Resuming of downloads in Apache 2.2.29

Resuming of downloads in Apache 2.2.29

am 04.12.2008 17:13:22 von Shibi NS

------=_Part_25860_8826176.1228407202478
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

My application has a download link which was allowing pause/resume of
download in mp1 , but after migration mp 2 it stooped working . The resuming
of download is computed based on the headers 'Content-Range',
'Content-Length' etc. But after ap2 migration it's stopped working . The
main issue I can see the header no longer contains 'Content-Range',
'Content-Length' etc. But I already have 'PerlOptions +ParseHeaders
+GlobalRequest' in my request handler . Am I missing something my in
configuration ?, why is this headers missing in my handler


Shibi Ns

------=_Part_25860_8826176.1228407202478
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Content-Disposition: inline


My application has a download link which was allowing pause/resume of download in mp1 , but after migration mp 2 it stooped working . The resuming of download is computed based on the headers 'Content-Range', 'Content-Length'  etc. But after ap2 migration it's stopped working . The main issue I can see the header no longer contains 'Content-Range', 'Content-Length'  etc. But I already have 'PerlOptions  +ParseHeaders +GlobalRequest' in my request handler . Am I missing something my in configuration ?, why is this headers missing in my handler

 

Shibi Ns


------=_Part_25860_8826176.1228407202478--

Re: Resuming of downloads in Apache 2.2.29

am 09.12.2008 20:59:12 von Perrin Harkins

On Thu, Dec 4, 2008 at 11:13 AM, Shibi NS wrote:
> The
> main issue I can see the header no longer contains 'Content-Range',
> 'Content-Length' etc. But I already have 'PerlOptions +ParseHeaders
> +GlobalRequest' in my request handler.

Are you saying the request no longer has these headers? ParseHeaders
is about outgoing headers, not incoming ones. Can you see which
headers are being sent with a packet sniffer?

- Perrin