This is a followon from the following thread: http://forums.iis.net/t/1198958.aspx/1?Troubleshooting+500+Error
It is a file upload script and the URL is valid on the server. I've been trying for weeks to resolve this issue and nobody seems to be able to help me locate the problem.
A more detailed description of the problem:
Uploading files larger than 10MB nearly always fail but occasionally they get through. I believe the php.ini file to be setup correctly with the following settings:
file_uploads On max_execution_time 1000 max_file_uploads 20 max_input_time 800 memory_limit 128M post_max_size 70M upload_max_filesize 50M upload_tmp_dir C:\Temp\
C:\Temp\ is writable.
I have tried various scripts and all have the same outcome so I don't believe it to be a coding error. I see the file upload to C:\Temp and when it fails the file remains so it's almost like it just doesn't want to move the file. As I say, occasionally the file gets through and files less than 10MB get through fine so it is unlikely to be a permission issue.
I also changed maxAllowedContentLength in IIS to 30000000 with no success.
I then created an uploader in ASP which worked fine so this indicates its definitely a PHP issue.
I am totally lost with this one and nobody seems to be able to help me get the issue resolved.