PHP - Upload

Coding some php and I realized there are certain images I cannot upload. I check the extensions and my codes. Then I wonder to myself if it's because of the size of the file? Yep it is.

By default PHP only let you upload up to 2Mb.



vim /etc/php5/apache2/php.ini

; Maximum allowed size for uploaded files.
upload_max_filesize = 2M


and
; Maximum size of POST data that PHP will accept.
post_max_size = 8M

I just changed it to something sensible 99999999M.

Find It