I have a client with a site (built with Kohana framework) which has a chunking file uploader that after upload then posts the file to vimeo for conversion. Problem is that although the file is uploaded successfully to the server, it then errors when sending it on to vimeo. My suspicion is that this post to vimeo is hitting a limit which the first stage chunking uploader avoids.
What settings in the PHP.ini should I be changing to fix this.
The video files are up to 2GB in size.
Update:
In answer to your questions this is a 500 error. I have no more than that due to the fact it only happens on the live server and not on staging and testing. I have been told not to turn on the display_errors for PHP as this will show errors on the live site (which do occur apparently) also this is not my code.
OK everyone, thanks for the answers. Turns out the issue was not with any of the limits but instead was a problem with the file chunking routine and an error reporting the sizes of the chunks sent over to Vimeo. This was only an issue on the live server which was RedHat 4.1 and not on any of the staging or testing machines. A temporary fix has been done by removing the size verification while we find the issue. Thanks for all your help.