Я пытался сделать очень простой загрузчик PHP, который загружает только один файл .CSV, и мне нужно, чтобы он перезаписал тот, который уже находится на сервере. Я пытался работать с частью загрузки, пока у меня не получилось. Я уже установил 777 разрешений в каталоге загрузки, однако у меня продолжают появляться ошибки при загрузке файла. Часть перезаписи Я еще не смог ее кодировать, и мне, возможно, понадобится небольшая помощь, чтобы сделать это. Файл .csv имеет размер 1,5 МБ. Ошибка, которую я получаю при загрузке файла, говорит о том, что файл имеет неправильное расширение, но я на 110% уверен, что это расширение .csv.
Вот код:
upload.php
<?php
// Configuration - Your Options
$allowed_filetypes = array('.csv',); // These will be the types of file that will pass the validation.
$max_filesize = 5000000; // Maximum filesize in BYTES (currently 5MB).
$upload_path = 'upload/'; // Upload 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 a *.CSV file.');
// 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 larger than 5MB.');
// 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.');
?>
HTML:
<form enctype="multipart/form-data" action="upload.php" method="GET">
Update CSV File: <input name="uploaded_file" type="file" />
<input type="submit" value="Upload" />
</form>
Похоже, вы проверяете $_FILE
индекс со значением userfile
, но ваша форма отправляет его со значением uploaded_file
$filename = $_FILES['userfile']['name'];
должно быть
$filename = $_FILES['uploaded_file']['name'];
Вы можете внести следующие исправления, изменив
метод из GET в POST
Кроме того, так как имя файла ввода «uploaded_file». Также изменить
$_FILES['userfile']['name'] to $_FILES['uploaded_file']['name'];
Должно определенно работать!