Saving a file uploaded using POST
//-----------------------------------
//----- CHECK FOR FILE UPLOADED -----
//-----------------------------------
$FileUploadValid = True; //Default to valid file being uploaded
//Check the files array isn't empty
if(!empty( $_FILES ))
{
//print_r($_FILES);
//Verify that the file being uploaded is one of our supported types
if ($_FILES['my_file_input_name']['type'] != "image/jpeg")
$FileUploadValid = False;
//Another method:
//$FileExtension = strtolower(pathinfo($_FILES['my_file_input_name']['name'], PATHINFO_EXTENSION));
//if ($FileExtension != "zip")
// $FileUploadValid = False;
//Verify the file size is not too big
if ($_FILES['my_file_input_name']['error'] == 2) //2=invalid filesize
$FileUploadValid = False;
}
else
{
$FileUploadValid = False;
}
if ($FileUploadValid)
{
//--------------------------
//----- STORE THE FILE -----
//--------------------------
//Get file extension
$path = $_FILES['my_file_input_name']['name'];
$UploadedFileName = strtolower(pathinfo($filename, PATHINFO_FILENAME));
$UploadedFileExtension = strtolower(pathinfo($path, PATHINFO_EXTENSION));
if (strlen($UploadedImageFileExtension) > 4)
$UploadedImageFileExtension = 'err';
$SaveAsFilename = "uploadedfile.txt";
//----- WRITE THE FILE -----
$OurFileUploadsDirectory = $_SERVER['DOCUMENT_ROOT'] . '/uploaded_files';
//Ensure directory exists
if (!file_exists($OurFileUploadsDirectory))
{
admin_event_db_add_event(0, "creating file uploads directory");
wp_mkdir_p($OurFileUploadsDirectory);
chmod($OurFileUploadsDirectory, 0755); //Set folder permissions to allow read of file added here
}
//Write the file
$Source = $_FILES['my_file_input_name']['tmp_name'];
$OurFileUploadsDirectory = trailingslashit($OurFileUploadsDirectory);
move_uploaded_file($Source, $OurFileUploadsDirectory . $SaveAsFilename);
if (!is_file($OurFileUploadsDirectory . $SaveAsFilename))
{
//----- FILE SAVE FAILED -----
$FileUploadValid = False;
}
} //if ($FileUploadValid)
USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.