Quote:
Originally Posted by njolakoski
how does one update the php.ini file so it can take files over 5mb?
|
Don't mess with php.ini. Do this:
Quote:
Originally Posted by westpointer
php has a limit. To over-ride it, add this to your .htaccess file in the same folder that downloads.php is in.
Code:
php_value upload_max_filesize 25M
php_value post_max_size 25M
change the 25M to whatever you'd like it to be.
|