WebStation - upload plików przez formularz php

ODPOWIEDZ
pjaniak
Początkujący
Posty: 1
Rejestracja: pt paź 28, 2016 2:25 pm

WebStation - upload plików przez formularz php

Post autor: pjaniak »

Witam,

walczę jakiś czas z prostą wydawało by się funkcjonalnością - wrzucanie plików na serwer przez formularz w php.

Kod: Zaznacz cały

<!DOCTYPE html>
<html>
<body>

<form action="upload2.php" method="post" enctype="multipart/form-data">
    Select image to upload:
    <input type="file" name="fileToUpload" id="fileToUpload">
    <input type="submit" value="Upload Image" name="submit">
</form>

</body>
</html>
obsługa formularza:

Kod: Zaznacz cały

<?php
$target_dir = "uploads/";
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
$uploadOk = 1;
$imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);
// Check if image file is a actual image or fake image
if(isset($_POST["submit"])) {
    $check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
    if($check !== false) {
        echo "File is an image - " . $check["mime"] . ".";
        $uploadOk = 1;
    } else {
        echo "File is not an image.";
        $uploadOk = 0;
    }
}
// Check if file already exists
if (file_exists($target_file)) {
    echo "Sorry, file already exists.";
    $uploadOk = 0;
}
// Check file size
if ($_FILES["fileToUpload"]["size"] > 5000000) {
    echo "Sorry, your file is too large.";
    $uploadOk = 0;
}
// Allow certain file formats
if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
&& $imageFileType != "gif" ) {
    echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";
    $uploadOk = 0;
}
// Check if $uploadOk is set to 0 by an error
if ($uploadOk == 0) {
    echo "Sorry, your file was not uploaded.";
// if everything is ok, try to upload file
} else {
    if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
        echo "The file ". basename( $_FILES["fileToUpload"]["name"]). " has been uploaded.";
    } else {
        echo "Sorry, there was an error uploading your file.";
    }
}
?>
Komunikat ze strony:

Kod: Zaznacz cały

File is an image - image/jpeg. Warning: move_uploaded_file(/volume1/web/RDDuploads/Chrysanthemum.jpg): failed to open stream: No such file or directory in /volume1/web/RDD/upload2.php on line 39 Warning: move_uploaded_file(): Unable to move '/volume1/@tmp/phphmemYn' to '/volume1/web/RDDuploads/Chrysanthemum.jpg' in /volume1/web/RDD/upload2.php on line 39 Sorry, there was an error uploading your file.
Jakie wartości powinienem ustawić w php.ini w upload_tmp_dir i w open_basedir

Prosze o pomoc.
DSM 6.0.2-8451 Update 2
ODPOWIEDZ