FTP, uncompress uploaded split-zip (?)

Miscellaneous Forums/General Discussion/FTP, uncompress uploaded split-zip (?)

Hi guys!

I need to upload a big file to a FTP site,
the server can't handle biggers upload than 10MB at a time,

so I'm splitting the file in 10MB pieces,

Do I have any way or tool to uncompress the split-zip within the server after uploading all the pieces?

Thanks!
Paolo.

Get a better FTP account:-

http://www.syntaxbomb.com/forum/index.php/topic,575.msg4278.html

Dabz

Some webhosts automatically handle unzipping of zip files after uploading. Sounds like yours doesn't.

If you have shell access you could just use "unzip" from the command line. I think also PHP lets you do something like :

<?php
$unzip = shell_exec("unzip filename.zip");
?>

but again, not sure if your server will support it.