Re: [PHP] Unzipping file through PHP

2008-05-22 Thread TG
a" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Cc: php-general@lists.php.net Date: Thu, 22 May 2008 10:46:01 -0300 Subject: Re: [PHP] Unzipping file through PHP > try using something like > > http://www.theserverpages.com/php/manual/en/ref.zip.php > > > > > http://

Re: [PHP] Unzipping file through PHP

2008-05-22 Thread Wolf
Suamya Srivastava <[EMAIL PROTECTED]> wrote: > Hi, > > I am writing a code to upload multiple files on the server using PHP. I > zipped the folder containing these files, uploaded the zipped file through > my application on the server. Now,I am trying to unzip the .zip file using > PHP. I t

Re: [PHP] Unzipping file through PHP

2008-05-22 Thread Gabriel Sosa
try using something like http://www.theserverpages.com/php/manual/en/ref.zip.php http://www.theserverpages.com/php/manual/en/ref.zip.php On Thu, May 22, 2008 at 9:56 AM, Suamya Srivastava <[EMAIL PROTECTED]> wrote: > Hi, > > I am writing a code to upload multiple files on the server using PHP

Re: [PHP] unzipping

2004-09-07 Thread raditha dissanayake
Mag wrote: Hi, Anybody know of a good class, tutorial or something easy to let me unzip a file on my server? well you could just use `unzip filename` but make sure you update your zip installation because some older versions had some vulnerabilities. -- Raditha Dissanayake. ---

Re: [PHP] unzipping

2004-09-07 Thread zareef ahmed
HI Mag ! look at it http://www.phpclasses.org/browse/package/945.html zareef ahmed --- Mag <[EMAIL PROTECTED]> wrote: > Hi, > Anybody know of a good class, tutorial or something > easy to let me unzip a file on my server? > > E.g: > I have 3 uploaded zip files named a,b,c > I want to unzip t

RE: [PHP] Unzipping Files

2003-08-14 Thread Matt Palermo
ECTED] Subject: Re: [PHP] Unzipping Files Try the zziplib library, http://www.php.net/manual/en/ref.zip.php -- Adam Alkins http://www.rasadam.com Quoting Matt Palermo <[EMAIL PROTECTED]>: > Anyone know where I can find tutorials or examples on how to use the > gunzip, gzip, and oth

Re: [PHP] Unzipping Files

2003-08-14 Thread Jason Wong
On Wednesday 06 August 2003 10:19, Matt Palermo wrote: > Yeah, I know someone mentioned using the exec for this, but I was > wondering if anyone knew where I could find the command-line code for > this to use in PHP... Anyone know? Do you not read the replies that you receive? I believe this ques

Re: [PHP] Unzipping Files

2003-08-14 Thread Jason Wong
On Wednesday 06 August 2003 11:53, Matt Palermo wrote: > Yes, I do read the replies. Nice to know :) > I'm looking to get MORE information. Such as? > This topic is very new to me, and I am just trying to find out all I can. Such as? > So far people on the mailing list have been very genero

RE: [PHP] Unzipping Files

2003-08-14 Thread Matt Palermo
very familiar with this subject. Matt -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 11:45 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Unzipping Files On Wednesday 06 August 2003 10:19, Matt Palermo wrote: > Yeah, I know someone mentioned u

RE: [PHP] Unzipping Files

2003-08-10 Thread Matt Palermo
PM To: Matt Palermo Cc: 'Adam Alkins'; [EMAIL PROTECTED] Subject: RE: [PHP] Unzipping Files >I am doing this for a client, and he doesn't have the ZZIPlib installed, >and would like to avoid it if possible. Any other ideas? It has been mentioned before: use exec, or the backt

Re: [PHP] Unzipping Files

2003-08-07 Thread Adam Alkins
Try the zziplib library, http://www.php.net/manual/en/ref.zip.php -- Adam Alkins http://www.rasadam.com Quoting Matt Palermo <[EMAIL PROTECTED]>: > Anyone know where I can find tutorials or examples on how to use the > gunzip, gzip, and other commands using PHP to work with compressed > files?

RE: [PHP] Unzipping Files

2003-08-05 Thread Mike Migurski
>I am doing this for a client, and he doesn't have the ZZIPlib installed, >and would like to avoid it if possible. Any other ideas? It has been mentioned before: use exec, or the backtick operator, and the command-line tools: unzip, bunzip, gunzip, etc. --