Currently, I am utilizing the Valums Ajax Fileupload script found at
These are the settings I have configured:
function createUploader(){
var uploader = new qq.FileUploader({
element: document.getElementById('file-uploader-demo1'),
action: 'photo.php?mode=upload',
debug: true
});
}
When attempting to handle the uploaded files within photo.php?mode=upload, I encountered the following issue:
if(isset($_FILES['qqfile'])){
$filename = $_FILES['qqfile']['name'];
$imageSizeInfo = getimagesize($filename);
}
Unfortunately, it seems that the isset condition for $_FILES is not being executed. Is there a configuration setting that I may have overlooked? Removing the if statement results in a getimagesize error indicating that the parameter cannot be empty.