[PHP] Need "Working..." pop up dialog (repost)

2001-08-20 Thread Ray Clouse
I'm trying to get a "working..." informational dialog or window going with my PHP page but I'm not getting anywhere. Here's the situation: When the user clicks on a link that has to gunzip a very large file, I want a popup to say "Working..." while the file is uncompressing. Then, when the file

Re: [PHP] Need "Working..." pop up dialog (repost)

2001-08-20 Thread Justin French
Ray Clouse wrote: > When the user clicks on a link that has to gunzip a very large file, I > want a popup to say "Working..." while the file is uncompressing. > Then, when the file is uncompressed, I want the "Working..." popup to > close itself and then the parent window to load a new URL (where

Re: [PHP] Need "Working..." pop up dialog (repost)

2001-08-21 Thread Ray Clouse
It's due to space restrictions on the server. We have 300GB available on the server, but the compressed data takes up 200GB, and we're adding new data (several GB) every month or so. So we need to keep as much compressed as possible, but we have to uncompress the data for the webpages to use

Re: [PHP] Need "Working..." pop up dialog (repost)

2001-08-21 Thread Christian Reiniger
On Tuesday 21 August 2001 17:10, Ray Clouse wrote: > So we need to keep as much compressed as possible, but we have to > uncompress the data for the webpages to use it. The PHP webpages on > the server use the uncompressed data to generate plots. The data is > never sent to the user, just the pl

Re: [PHP] Need "Working..." pop up dialog (repost)

2001-08-21 Thread Ray Clouse
Another part of this is an external program on the server that can't read from the gzipped file. The file has to be uncompressed, unfortunately. The resulting uncompressed file is recompressed through a cron job after 30 days if it hasn't been used for 30 days. I came up with something that

Re: [PHP] Need "Working..." pop up dialog (repost)

2001-08-21 Thread Richard Lynch
uesday, August 21, 2001 10:10 AM Subject: Re: [PHP] Need "Working..." pop up dialog (repost) > It's due to space restrictions on the server. We have 300GB available > on the server, but the compressed data takes up 200GB, and we're adding > new data (several GB) every

Re: [PHP] Need "Working..." pop up dialog (repost)

2001-08-22 Thread Ray Clouse
>Newsgroups: php.general >To: <[EMAIL PROTECTED]> >Cc: php <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> >Sent: Tuesday, August 21, 2001 10:10 AM >Subject: Re: [PHP] Need "Working..." pop up dialog (repost) > > >>It's due to space restrictions o