I have created a form to upload a file with the manual start option set to true.
When I click the button to call the doStart() function, I see the progress bar increase to 100%
I then get an alert with the following error:
Unable to find file de604f2a-e96f-c0bc-3cda-56ac3ce1b27b in /tmp/uploadertemp
Any idea what could be wrong here?
Note:
When I test the form-simple-upload.php on my server, it works correctly and the file reports it is uploaded successfully though no file has uploaded to my server.
When I test with the form-manualstart.php demo file, I get the same "Unable to find file" error.
Is this error due to me not having purchased a license yet? I was testing it was going to work for my needs before doing so.
Just in case this is any help, here are the relevant settings from phpinfo();
upload_tmp_dir /tmp /tmp
file_uploads On On
upload_max_filesize 100M 100M
post_max_size 100M 100M
max_input_time 6000 6000
memory_limit 128M 128M
max_execution_time 60 60
I read in another post relating to what appears a similar issue a fix that involved adding the following:
$uploader->TempDirectory="tempdir";
I created this folder and gave it permissions 777
When I tested again I got the following error