Ich will ein ganz einfaches Upload-Script machen und auch nutzen. Offline (via XAMPP) läuft es wunderbar, doch online überhaupt nicht. Und es ist auch nicht so, dass ich 7-9 verschiedene Script ausprobiert habe und auch den ganzen Nachmittag damit verbracht habe Im mom bin ich echt auf 180 ...
Hier schonmal die beiden Dateien, eine zum Absenden, die andere zum Verarbeiten.
contact.php
upload_file.php
Dann wird es natürlich in dem Ordern "upload" (mit CHMOD 777) gespeichert. Also Fehlermeldung sagt er mir immer online => "The file you attempted to upload is not allowed." Und ich habe schon darauf geachtet, dass es eine jpg oder bmp Datei ist. Bin hier echt am Verzweifeln - danke euch schonmal!
Gruß, walle_89
P.S. Nutze dieses Script da (http://www.zymic.com/tutorials/php/creating-a-file-upload-form-with-php/)
P.P.S. Online-Version, die nicht klappen will (http://vrugaitis.de/contact.php)
Hier schonmal die beiden Dateien, eine zum Absenden, die andere zum Verarbeiten.
contact.php
HTML:
<html>
<body>
<form action="upload_file.php" method="post" enctype="multipart/form-data">
<p>
<label for="file">Select a file:</label> <input type="file" name="userfile" id="file"> <br />
<button>Upload File</button>
<p>
</form>
</body>
</html>
upload_file.php
PHP:
<?php
// Configuration - Your Options
$allowed_filetypes = array('.jpg','.gif','.bmp','.png'); // These will be the types of file that will pass the validation.
$max_filesize = 524288; // Maximum filesize in BYTES (currently 0.5MB).
$upload_path = '/upload/'; // The place the files will be uploaded to (currently a 'files' directory).
$filename = $_FILES['userfile']['name']; // Get the name of the file (including file extension).
$ext = substr($filename, strpos($filename,'.'), strlen($filename)-1); // Get the extension from the filename.
// Check if the filetype is allowed, if not DIE and inform the user.
if(!in_array($ext,$allowed_filetypes))
die('The file you attempted to upload is not allowed.');
// Now check the filesize, if it is too large then DIE and inform the user.
if(filesize($_FILES['userfile']['tmp_name']) > $max_filesize)
die('The file you attempted to upload is too large.');
// Check if we can upload to the specified path, if not DIE and inform the user.
if(!is_writable($upload_path))
die('You cannot upload to the specified directory, please CHMOD it to 777.');
// Upload the file to your specified path.
if(move_uploaded_file($_FILES['userfile']['tmp_name'],$upload_path . $filename))
echo 'Your file upload was successful, view the file <a href="' . $upload_path . $filename . '" title="Your File">here</a>'; // It worked.
else
echo 'There was an error during the file upload. Please try again.'; // It failed :(.
?>
Dann wird es natürlich in dem Ordern "upload" (mit CHMOD 777) gespeichert. Also Fehlermeldung sagt er mir immer online => "The file you attempted to upload is not allowed." Und ich habe schon darauf geachtet, dass es eine jpg oder bmp Datei ist. Bin hier echt am Verzweifeln - danke euch schonmal!
Gruß, walle_89
P.S. Nutze dieses Script da (http://www.zymic.com/tutorials/php/creating-a-file-upload-form-with-php/)
P.P.S. Online-Version, die nicht klappen will (http://vrugaitis.de/contact.php)