However, I am noticing large files won't even 'set' which results in a failed upload and Model creation.
For ex,
$episode = \Input::file('episode');
If I vardump $episode on a file size around 600mb, it returns NULL. However, if I try it on a file that is small, around 4mb or so, it returns the standard array when a file is actually set.
Is there anyway to fix this? It doesn't even make it to upload.
I checked the ini file, and set both "upload_max_filesize" and "post_max_size" to 2000mb from 32mb. Still getting null, and checked in my logs, it returns "PHP Warning: POST Content-Length of 680241746 bytes exceeds the limit of 33554432 bytes in Unknown on line 0".
I should also add, I am developing locally currently using MAMP PRO.
Yes, I was trying to edit the ini file manually. Turns out it resets to the default even if you edit it. I had to edit it through MAMP and it worked. Sorry for the confusion.