Connection Reset

Hey guys<br /><br />This kinda follows on from that Large POST upload thread.<br /><br />I finished coding my site a while back and don't recall having this problem before but now when uploading files, anything under 8MB works a treat.<br /><br />Anything over 8MB does not even seem to attempt to upload. It just dies straight away with (in FF) a connection reset page and in IE a cannot find server The page cannot be displayed error.<br /><br />Now, if it were an execution time issue im sure it would at least attempt to upload and then die part way through not just die immediately upon clicking submit!<br /><br />I have also altered my .htaccess with these values:<br /><br />php_value post_max_size 75M<br />php_value upload_max_filesize 75M<br />php_value memory_limit 75M<br /><br />I have checked my phpinfo() and that says:<br /><br />post_max_size75M8M<br />memory_limit75M32M<br />upload_max_filesize75M2M<br /><br />So all those values seem to be set fine... <br /><br />Is this an issue with my code or something I need to get in contact with the help desk about?<!--content-->
Sorry to post again in the same thread, but this is getting a bit confusing and worrying.<br /><br />I contacted the help desk and they have told me they have changed some server settings but it should work.<br /><br />Problem is it doesn't.<br /><br />I put a die('Are we here'); just under my if (isset($_POST['uploadfile'])) at the top of my upload script (it posts back to itself) and then submitted the form.<br /><br />The same 'connection reset' error popped up and my die statement was NOT executed. This to me tells me it can't be a coding issue surely? If its not even getting back into my script the problem must lie elsewhere.<br /><br /><br /><br />So I have a page which will gladly upload any file UNDER 8MB and fully execute all my scripts commands.<br />This same page will refuse point-blank to upload anything OVER 8MB and doesn't even seem to get to the point of posting back to itself<br /><br /><br />My phpinfo() tells me that my values are being overridden as I have wanted, but something somewhere in the chain is refusing to work.<br /><br />Has anyone got any clues why this might be happening? Have I missed something?<!--content-->
 
Back
Top