Tagged Questions
0
votes
1answer
50 views
Simple solution to extract PDF.zip using PHP
I have a rather large zip file (I used 7zip to compress the files) and I must now extract the files that are on the server. I tried using CPANEL File Manager but the zip file is too big.
Any ideas on ...
0
votes
0answers
203 views
7zip string/stream compression PHP/C? No file name / date store in .7z archive, every byte count
I want compress 1 small file/data, only file size matter.
No need file information store, like filename, size, date, etc...
If I use rar/7zip/zip as CLI, file information added to archive. It's not ...
1
vote
2answers
340 views
Create ZIP file in php , windows
I have to create a zip file using php. The files are located in a directory of my web server.
I have to add these files ( dynamically ) and make a zip file.
Working perfect in php with small files ...
0
votes
2answers
662 views
(Windows 7) How to extract *.7z archives in xampp with PHP?
(Using XAMPP 1.7.7 with PHP 5.3.8)
I know how to extract *.7z files with PHP/p7zip, but I need to test locally using xampp (I'm using Windows 7 64 bits) and I'm stuck. I tried using exec():
<?php ...
1
vote
0answers
316 views
shell_exec not execute some programs (e.g 7z) but start another (e.g zip) [closed]
i make
shell_exec("7z a /blablabla/arc /blablabla/file");
i need archive file with 7z, but its not working.
But it works if i use zip instead 7z or start script manually
This not only with 7z, ...
2
votes
2answers
285 views
7-Zip command doesn't succeed when in an asynchronously called batch from php
In my batch file I've got the following code
SETLOCAL enabledelayedexpansion
7Z a -r ..\%ZIPNAME%.zip * >> uniqueid8.log
IF !ERRORLEVEL! GEQ 1 (
CALL :getLineNumber errLine uniqueID8 -2
...
1
vote
3answers
1k views
Possible to feed stdout of 7-zip to PHP script?
I would like to compress a directory using 7-Zip and then download it to a web browser.
However, instead of compressing to a file, then having PHP feed the contents of that file to the browser... I ...
7
votes
1answer
4k views
7z extension for php?
I can't find one and I don't know if any of PHP Compression and Archive Extensions will work.
Do you think I could use a compression stream to read data from a 7z file?
UPDATE
7z forums have a ...