Re: [PHP] opening remote tar.gz files

2003-09-02 Thread John Ryan
it definately always only contains one file "Curt Zirzow" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > * Thus wrote John Ryan ([EMAIL PROTECTED]): > > is it possible with PHP to download and open a remote tar.gz file?? I read > > in the manual that it is, but it never seems to work

Re: [PHP] opening remote tar.gz files

2003-09-02 Thread Curt Zirzow
* Thus wrote John Ryan ([EMAIL PROTECTED]): > is it possible with PHP to download and open a remote tar.gz file?? I read > in the manual that it is, but it never seems to work for me. > > I tried opening the file with fopen > fopen("zlib://http://www.site.com/update.tar.gz";, "r"); > but it didnt

Re: [PHP] opening remote tar.gz files

2003-09-02 Thread Curt Zirzow
* Thus wrote Jay Blanchard ([EMAIL PROTECTED]): > [snip] > is it possible with PHP to download and open a remote tar.gz file?? I > read > in the manual that it is, but it never seems to work for me. > > I tried opening the file with fopen > fopen("zlib://http://www.site.com/update.tar.gz";, "r");

Re: [PHP] opening remote tar.gz files

2003-09-02 Thread Dan Anderson
There are a number of possible solutions. If i remember correctly some compressed file types need the ability to handle them compiled into PHP. Try different things. Sometimes the easiest way to do things is to FTP into the remote server and ftp into your server to transfer it. -Dan -- PHP Ge

RE: [PHP] opening remote tar.gz files

2003-09-02 Thread Jay Blanchard
[snip] is it possible with PHP to download and open a remote tar.gz file?? I read in the manual that it is, but it never seems to work for me. I tried opening the file with fopen fopen("zlib://http://www.site.com/update.tar.gz";, "r"); but it didnt work Then I tried using the zlib functions but t