I changed post_max_size and upload_max_size in my php.ini file inside C:\wamp\bin\php\php5.5.12 and for some reason validation fails for large files in Laravel. Is there a reason for this?
I pressed the search key and modified the two in the php.ini file like this:
post_max_size = 200M
upload_max_filesize = 200M
Could there be another php.ini elsewhere? Am I modifying the right file? I am trying to make this work on localhost, so... I am thinking it has to be due because of a config file in Laravel.
I can upload small files, but I can't upload large files. Tried this on 10 small files and 10 large files, and there's no other explanation as to why large files don't pass all validation even if it shouldn't technically speaking.