The file is hosted on linux server.
2007-05-01
20:57:14
·
2 answers
·
asked by
drkchaudhry
1
in
Computers & Internet
➔ Programming & Design
Hi!
Thanks for the answer.
No SSH access. 3.7 GB file on linux server. I am trying available php scripts.
Dr K Chaudhry
2007-05-02
01:24:42 ·
update #1
With zipfiles less than 2 GB, I have been extracting files one after one, without unziping
if (strpos(strtolower("nextfile"), "wantedfile"))
{
if (zip_entry_open($zip, $zip_entry, "r"))
{
$handle=$zip_entry['fp'];
while (!feof($handle))
{
$addcon=fread($handle, 8192);
$fd=fopen($dfile,"a");
fwrite($fd,"$addcon");
fclose($fd);
}
fclose($handle);
2007-05-02
01:33:33 ·
update #2