Jump to content

[SOLVED] Question


shage

Recommended Posts

I have cropped pictures into a folder, several folders done by holidays, what is the best way to transfer the whole folder with subs intact to another server, would it be better to zip then unzip on other server, or is their a way to transfer the whole folder like ftp to the new server, i have looked for options but have came up open handed thank you

Link to comment
https://forums.phpfreaks.com/topic/83616-solved-question/
Share on other sites

heres a help in hand...........

 

should be able to nock somthink up...........

 

 

send the zip



<?php
// In PHP versions earlier than 4.1.0, $HTTP_POST_FILES should be used instead
// of $_FILES.


// directory file need to go....
$uploaddir = '/var/www/uploads/';

$uploadfile = $uploaddir . basename($_FILES['userfile']['name']);

echo '<pre>';
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
    echo "File is valid, and was successfully uploaded.\n";
} else {
    echo "Possible file upload attack!\n";
}

echo 'Here is some more debugging info:';
print_r($_FILES);

print "</pre>";

?>



<!-- The data encoding type, enctype, MUST be specified as below -->
<form enctype="multipart/form-data" action="__URL__" method="POST">
    <!-- MAX_FILE_SIZE must precede the file input field -->
    <input type="hidden" name="MAX_FILE_SIZE" value="300000000" />
    <!-- Name of input element determines name in $_FILES array -->
    Send this file: <input name="userfile" type="file" />
    <input type="submit" value="Send File" />
</form>

 

 

to unzip the folder that contains the zipped files on the other server

zip must be installed.......

<?php


$zip = zip_open("zipfile.zip");
if ($zip) {
  while ($zip_entry = zip_read($zip)) {
    $fp = fopen("zip/".zip_entry_name($zip_entry), "w");
    if (zip_entry_open($zip, $zip_entry, "r")) {
      $buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
      fwrite($fp,"$buf");
      zip_entry_close($zip_entry);
      fclose($fp);
    }
  }
  zip_close($zip);
}
?>

<? exec("unzip name.zip"); ?>

Link to comment
https://forums.phpfreaks.com/topic/83616-solved-question/#findComment-425401
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.