I upload a 500MB tar.gz file to my Godaddy hosting space, I need to use php to extrace it (The support said: using scripts is the only way that files can be extracted on the server)
I am using PEAR:File_archive to extract the gz file ( http://pear.php.net/package/File_Archive )
Core code:
<?php
error_reporting(E_ALL);
set_time_limit(0);
ini_set('memory_limit', '508M');
ignore_user_abort();
require_once "File/Archive.php";
File_Archive::extract($src,$desc);
?>
My problem is : The extract process allways abort without any error when extracted 6000-12000 files!
I tested PEAR:Archive_Tar, and got the same result: abort with no error!
Thanks for any advice!