PHP Upload issue

Posted on 16th Feb 2014 by admin

Hi guys,

I have stumble across an interesting issue with my script and is doing my head in.

A little background on the application.

I've got a document repository site which uses Jupload to upload multiple files in one ago. It was running fine on an external host (linux box) for a couple of months. Our company now decide to host it internally on a window box (server 2008 with IIS7). Now the same script would not upload files larger then 10MB (around there).

I cant even get the page to show php error it just, what seems to timeout and gives a http error 500.

here is my php.ini details

upload_max_filesize=1000MB;
post_max_size=1000MB;
max_input_time=3600;
file_uploads=1;
memory_limit=256MB;
max_execution_time=3600;

Ive also changed the IIS maxAllowedContentLength to 1GB.

The funny thing is when I test the upload script via local network it works fine, I can upload large amount of files but when I go through the internet it no longer works.

Any suggestion?

Other forums