Hi NBStoragePlus,
received your pn and for others with issues I do my reply here in this thread
first, with IIS7 and PHP I still need to investigate other issues with PHP.
I do not use W2008 and IIS7 in production env. due to problems with the performance of FastCGI.
Regarding your problem I just can tell you it is never an good idea to use PHP for big files upload. You can look arround the world an you will see that a lot of professional sites use ftp or sftp integrated into there Frameworks like Joomla. Or use an Split file function.
I hope you have set the following correct in php.ini
;;;;;;;;;;;;;;;;;;;
; Resource Limits sample for 100MB;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 1000 ; Maximum execution time of each script, in seconds
max_input_time = 1000 ; Maximum amount of time each script may spend parsing request data
; Maximum size of POST data that PHP will accept.
post_max_size = 100M
; Maximum allowed size for uploaded files.
upload_max_filesize = 100M
Check also the permissons to the php related folders for IIS_GUEST_USR
If you use FastCGI than make sure IIS_GUEST_USR has execute permissions for php-cgi.exe
Also have im mind for Big files support you need to edit the META Database for IIS. Best site read for issues with IIS is
http://php.iis.net/
http://www.iis.net/
At least the question is, where you use or have integrated the JFU. If in a ASP based Webpage,
- check how to increase up- and download size AspMaxRequestEntityAllowed for ASP in IIS. There are a lot of threads about this.
http://www.iis.net/search.aspx?q=upload+size+IIS7
- use an other method as JFU because mixing php with asp is not professional and causes performance problems in IIS.
cheers
Alex