i cant install my dolphin 7 boonex, even the social engine to0,, pls help me,, can someone install it for me...? inbox me...
can someone help me? pls... :'-(
Collapse
X
-
if its a free webhost and the admin panel for that host doesnt have an unzip function then the only other way is to unzip it using php, hopefully that webhost has the archive module compiled for php so this script should work
Code:<?php $zip = new ZipArchive; $res = $zip->open(’my_zip_file.zip’); if ($res === TRUE) { $zip->extractTo(’my_extract_to_dir/’); $zip->close(); echo ‘ok’; } else { echo ‘failed’; } ?>
Comment
Comment