Re: [PHP] Using named Pipes between PHP and ZIP

2012-07-09 Thread Dennis Heck
Unfortunately it makes no difference if i use zip with 2 - or if I leave them ommited. The longer I guess about it, the more I think it might be a ZIP topic, namely how the stream to stdin needs to be like so zip will know the name of the file from it. Regards, Dennis -- PHP General

Re: [PHP] Using named Pipes between PHP and ZIP

2012-07-09 Thread Matijn Woudt
On Mon, Jul 9, 2012 at 7:19 PM, Dennis Heck n...@dennisheck.de wrote: Unfortunately it makes no difference if i use zip with 2 - or if I leave them ommited. The longer I guess about it, the more I think it might be a ZIP topic, namely how the stream to stdin needs to be like so zip will know

[PHP] Using named Pipes between PHP and ZIP

2012-07-08 Thread Dennis Heck
Hello everyone, I'm looking for a solution for the following: 1) collecting data from a simple html form and send them to a php script 2) take the data and place them in a php-generated excel sheet 3) zip the excel sheet and password protect the zip file (standard encription will be sufficent,

Re: [PHP] Using named Pipes between PHP and ZIP

2012-07-08 Thread tamouse mailing lists
≈On Sun, Jul 8, 2012 at 11:30 AM, Dennis Heck n...@dennisheck.de wrote: Hello everyone, I'm looking for a solution for the following: 1) collecting data from a simple html form and send them to a php script 2) take the data and place them in a php-generated excel sheet 3) zip the excel sheet

[PHP] Using Named Pipes

2002-05-30 Thread Jonathan Rosenberg
I'm trying to use a named pipe in PHP, but I have a feeling I'm misunderstanding something. I'm hoping someone might have some insight. Here's the basic outline of what I'm doing posix_mkfifo($argfile, 0600) $argp = fopen($argfile, w+); $command = program $argfile;