PHP Upload Form: Why isn't my multipart/form-data form sending any POST data? (LARGE FILE UPLOADING)?

It all had to do with the php configurations!

It all had to do with the php configurations! You need: ; Maximum allowed size for uploaded files. Upload_max_filesize = 1000M and ; Maximum size of POST data that PHP will accept.

Post_max_size = 1000M.

This is what I was going to suggest. – VirtuosiMedia Jul 20 '10 at 20:32 Thanks for posting your fix, got me thinking in the right direction. A point to note when uploading multiple files, is that upload_max_filesize limits each individual file, but post_max_size is the limit for all files together.

Obvious, really, but had me scratching my head for too long! – flashparry Nov 1 '10 at 20:55.

The only way I've ever solved this problem is by using isset() before using the var. However, it appears you are doing that. Therefore, I am going to leave my recommendation at turn off E_NOTICE error reporting in your production code: error_reporting (E_ALL ^ E_NOTICE).

When I don't have the file in the file input, I get the post data, but when I do, the post data is empty. – Garrett Jul 20 '10 at 20:08.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions