Hey MSJ, thanks for answering.
Yes all uploads are getting cut of at the same place.
I did some more testing today and realized the problem might not be caused by php. I created a quick test using the code below, and the entered text was correctly echoed after. The uploads are coming from mobile, so the problem might be originating there. Not sure what else could be causing it :/
Code:
<?php
if( $_POST["thestring"])
{
echo "The String: ". $_POST['thestring'];
exit();
}
?>
<html>
<body>
<form action="<?php $_PHP_SELF ?>" method="POST">
The String: <input type="text" name="thestring" />
<input type="submit" />
</form>
</body>
</html>