Re: [PHP] getting download resume to work

2003-09-12 Thread Scott Dotson
got it to work using fseek, feel like a bozo posting this when it was my lack of thinking in the first place as to why it didn't work. thanks all for the help... Scott "Chris Shiflett" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Can you help explain this code? It looks like you'r

Re: [PHP] getting download resume to work

2003-09-12 Thread Scott Dotson
- From: Chris Shiflett [mailto:[EMAIL PROTECTED] Sent: Thursday, September 11, 2003 8:21 PM To: Raditha Dissanayake; Scott Dotson; [EMAIL PROTECTED] Subject: Re: [PHP] getting download resume to work Can you help explain this code? It looks like you're on the right track but have a few flaw

RE: RE: [PHP] getting download resume to work

2003-09-12 Thread Scott Dotson
- From: Chris Shiflett [mailto:[EMAIL PROTECTED] Sent: Thursday, September 11, 2003 8:21 PM To: Raditha Dissanayake; Scott Dotson; [EMAIL PROTECTED] Subject: Re: [PHP] getting download resume to work Can you help explain this code? It looks like you're on the right track but have a few flaw

Re: [PHP] getting download resume to work

2003-09-11 Thread Chris Shiflett
Can you help explain this code? It looks like you're on the right track but have a few flaws (at first glance). > session_cache_limiter('public'); > session_start(); Is there a reason to be using sessions here? > set_time_limit(0); > $file=$_REQUEST['file']; > $extstart=strpos($file, "."); Wha

Re: [PHP] getting download resume to work

2003-09-11 Thread Raditha Dissanayake
hi, AFAIK this is not something that you need to bother with in your php scripts. this is a web server level issue Scott Dotson wrote: I am trying to get the ability to resume broken downloads with a client (such as FlashGet, GetRight, etc...) I am able to download the complete file without

[PHP] getting download resume to work

2003-09-11 Thread Scott Dotson
I am trying to get the ability to resume broken downloads with a client (such as FlashGet, GetRight, etc...) I am able to download the complete file without resume and everything works properly, but, when using a download manager, if I break the download then continue, the byte count never matches