0

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 how I can extract this zip file?

I do not have SHELL ACCESS and would prefer to use a software tool, if there is one out there.

Ben
  • 1,013
  • 4
  • 16
  • 34

1 Answers1

0

Can you try, maybe this works. You can also use exec function

<?php
$salida = shell_exec('unzip you.zip');
echo $salida;