I can not save the file, I constantly get an error

Warning: move_uploaded_file(/down/666-1680x1050.jpg) function.move-uploaded-file: failed to open stream: No such file or directory in /var/www/tanki_yrg/data/www/tankist10.hosting-test.org.ua/file.php on line 6 

at

 move_uploaded_file($_FILES['cover']['tmp_name'],"/down/".basename($_FILES['cover']['name'])); 

copy () doesn't work either. Why?

    2 answers 2

     //Папка загрузок $uploadsDir = $_SERVER['DOCUMENT_ROOT'].'/uploads/'; //Создаем путь для будущего файла $targetPath = $uploadsDir.$_FILES['cover']['name']; //Проверяем наличие папки, если отсутствует - создаем if (!file_exists($uploadsDir) mkdir($uploadsDir); //Перемещаем файл move_uploaded_file($_FILES['cover']['tmp_name'], $targetPath); 

      Try this, you probably need the absolute path to the folder, and not relative to the web root:

       move_uploaded_file( $_FILES['cover']['tmp_name'], "/var/www/tanki_yrg/data/www/tankist10.hosting-test.org.ua/down/".basename($_FILES['cover']['name']) );