11-19-2010, 08:06 AM
The solution was simple
There are two parameters in php.ini that affect the upload size.
If the size exceeds the upload_max_size you get an error notification.
If the size exceeds the post_max_size there is no error but the $_POST parameters appear to be blank.
The solution is obvious - set post_max_size greater or equal to upload_max_size
There are two parameters in php.ini that affect the upload size.
If the size exceeds the upload_max_size you get an error notification.
If the size exceeds the post_max_size there is no error but the $_POST parameters appear to be blank.
The solution is obvious - set post_max_size greater or equal to upload_max_size