Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Perl > Zip file processing without recompiling PHP

Reply
Thread Tools

Zip file processing without recompiling PHP

 
 
Andy
Guest
Posts: n/a
 
      01-19-2004
I am trying to create an OsCommerce plugin that parses a number of
files and adds them to the catalog.
I need some method of transferring the files to be parsed to the
server with OsC.
Ideally, I would like to send these as a zip file, but in order to
keep the installation requirements and user knowledge requirements to
a minimum I would prefer not to have the client recompile PHP with zip
support.
Does anyone know of a module that will parse zip files without any
prerequisites?
I have searched google and usenet and not found anything useful.
Everything seems to point to the Zip module which requires ZZiplib and
recompilation of the PHP interpreter.
Also, is there any function that can be used to create a temp
directory with a unique name (equivalent of tempnam)? I would imagine
that there are security concerns involved in creating a tempnam file,
unlinking it and recreating a directory with the filename returned,
although this would be preferred to some other method of creating a
directory.

Many thanks in advance for your assistance.

Best Regards
Andy
 
Reply With Quote
 
 
 
 
Jürgen Exner
Guest
Posts: n/a
 
      01-20-2004
Andy wrote:
[...]
> a minimum I would prefer not to have the client recompile PHP with zip
> support.


Why would any client (whatever you mean by "client") need PHP when running
Perl to begin with?

> Does anyone know of a module that will parse zip files without any
> prerequisites?


Did you check CPAN.org? What does a search for ZIP return?
Or just do a plain "perldoc Archive::ZIP", it might even be installed
already.

> I have searched google and usenet and not found anything useful.
> Everything seems to point to the Zip module which requires ZZiplib and
> recompilation of the PHP interpreter.


Again, what does Perl have to do with PHP?

> Also, is there any function that can be used to create a temp
> directory with a unique name (equivalent of tempnam)?


Is there anything wrong with "mkdir()", details see "perldoc -f mkdir"?
And as far as temporary file names go: "perldoc -q temp" has some
interesting insights and suggestions.

> I would imagine
> that there are security concerns involved in creating a tempnam file,
> unlinking it and recreating a directory with the filename returned,
> although this would be preferred to some other method of creating a
> directory.


No idea what you are talking about. Why would you want to create a file
first, delete it, and then create a temp directory with the same name?
Anything wrong with creating the directory right away? After all,
directories are nothing but files in a special format.

jue


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
PHP Training Institute In Delhi, Live Projects on PHP. Short TermPHP Courses, PHP Scripts, PHP Training with Live Projects. Rajive Narain Java 0 09-18-2009 10:47 AM
Possibility to add a zip-file to a new zip-file with "add to zip" (right-click) ?? erikkie@casema.nl Computer Support 4 06-26-2006 12:18 AM
forms without recompiling Sezai Altýnok ASP .Net 6 03-29-2005 09:37 AM
Adding new pages without recompiling whole site Christopher Kimbell ASP .Net 2 07-02-2004 06:12 PM
Re: Adding new pages without recompiling whole site Phil Winstanley [Microsoft MVP ASP.NET] ASP .Net 1 07-01-2004 07:13 PM



Advertisments