I followed the directions in the following tutorial and was able to get it to work http://www.kirupa.com/developer/flash8/uploading_fileReference_pg1.htm. The only problem I’m having though is trying to upload a file greater than 10MB. Anything under 10MB uploads perfectly, anything over fails for some reason. The max upload file size is set to 20MB in my php.ini file so I can’t think of any reason why this would be failing. I’m no PHP/developer guy so any ideas would be awesome.
My PHP looks nearly identical to the script offered in the tute.
<?php
if ($_FILES['Filedata']['name']) {
move_uploaded_file($_FILES['Filedata']['tmp_name'], 'uploads/' . basename($_FILES['Filedata']['name']));
}
?>