'Uploading Video in php not working
I want to upload video in php this is my code
<?php
if(isset($_POST['submit']))
{
$allowedExts = array("jpg", "jpeg", "gif", "png", "mp3", "mp4", "wma");
$extension = pathinfo($_FILES['file']['name'], PATHINFO_EXTENSION);
if ((($_FILES["file"]["type"] == "video/mp4")
|| ($_FILES["file"]["type"] == "audio/mp3")
|| ($_FILES["file"]["type"] == "audio/wma")
|| ($_FILES["file"]["type"] == "image/pjpeg")
|| ($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg"))
&& ($_FILES["file"]["size"] < 20000)
&& in_array($extension, $allowedExts))
{
if ($_FILES["file"]["error"] > 0)
{
echo "Return Code: " . $_FILES["file"]["error"] . "<br />";
}
else
{
echo "Upload: " . $_FILES["file"]["name"] . "<br />";
echo "Type: " . $_FILES["file"]["type"] . "<br />";
echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br />";
if (file_exists("store/" . $_FILES["file"]["name"]))
{
echo $_FILES["file"]["name"] . " already exists. ";
}
else
{
move_uploaded_file($_FILES["file"]["tmp_name"],
"store/" . $_FILES["file"]["name"]);
echo "Stored in: " . "store/" . $_FILES["file"]["name"];
}
}
}
else
{
echo "Invalid file";
}
}
?>
HTML CODE is:
<!DOCTYPE html>
<head>
<title></title>
</head>
<body>
<form action="upload.php" method="post" enctype="multipart/form-data">
<label for="file"><span>Filename:</span></label>
<input type="file" name="file" id="file" />
<br />
<input type="submit" name="submit" value="Submit" />
</form>
</body>
</html>
when I upload .mp4 file it showing the message : Invalid file
Give me solution plz
Solution 1:[1]
Change it:
($_FILES["file"]["size"] < 20000)
To:
($_FILES["file"]["size"] < 2000000)
Solution 2:[2]
Because your code:
$extension = pathinfo($_FILES['file']['name'], PATHINFO_EXTENSION);
is returning only extension after dot. e.g. mp4, mp3
And you expect it to be:
video/mp4 OR audio/mp3
I think you need mime type of the file.
mime_content_type($_FILES["file"]["name"]);
Solution:
Change
$extension = pathinfo($_FILES['file']['name'], PATHINFO_EXTENSION);
To
$extension = mime_content_type($_FILES["file"]["name"]);
EDIT:
Change:
if ((($_FILES["file"]["type"] == "video/mp4")
|| ($_FILES["file"]["type"] == "audio/mp3")
|| ($_FILES["file"]["type"] == "audio/wma")
|| ($_FILES["file"]["type"] == "image/pjpeg")
|| ($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg"))
To:
if (in_array($extension, $allowedExts))
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | harry |
| Solution 2 | sanoj lawrence |
