Anyone know why this:
<?PHP
$title = trim($_POST['title']);
$description = trim($_POST['description']);
// Array of allowed image file formats
$allowedExtensions = array('jpeg', 'jpg', 'jfif', 'png', 'gif', 'bmp');
foreach ($_FILES as $file) {
if ($file['tmp_name'] > '') {
if (!in_array(end(explode(".",
strtolower($file['name']))),
$allowedExtensions)) {
echo '<div class="error">Invalid file type.</div>';
}
}
}
if (strlen($title) < 3)
echo '<div class="error">Too short title</div>';
else if (strlen($description) > 70)
echo '<div class="error">Too long desccription.</div>';
else {
move_uploaded_file($_FILES['userfile']['tmp_name'], 'c:\wamp\www\uploads\images/');
}
Gives:
Warning: move_uploaded_file() [function.move-uploaded-file]: The second argument to copy() function cannot be a directory in C:\wamp\www\upload.php on line 41
Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move 'C:\wamp\tmp\php1AB.tmp' to 'c:\wamp\www\uploads\images/' in C:\wamp\www\upload.php on line 41
if you want just copy the file in two Dir different, try this :
You should write the complete path "C:/..."
It sounds like the second argument to
move_uploaded_file
should be a full file name instead of just the directory name. Also, probably only a style issue, but you should use consistent slashes in'c:\wamp\www\uploads\images/'
Try adding the extension to the name file.
It will be like below in phalcon 3.42
It's because you're moving a file and it thinks you're trying to rename that file to the second parameter (in this case a director).
it should be:
Because PHP is not a shell. You're trying to copy the file into the
c:\wamp\www\uploads\images
directory, but PHP doesn't know you mean that when you execute (within themove_uploaded_file
function):This command tells it to rename the file to
c:\wamp\www\uploads\images/
, which it can't do because that's the name of an existing directory.Instead, do this: