by (160 points)
I'm trying to upload a 17 MB PowerPoint presentation, but the upload stops about half way through. Is there a MB limit?

1 Answer

by (1.4k points)
Look for post_max_size and upload_max_filesize in your php.ini .

Increase both values or add follow lines in your .htaccess

php_value post_max_size 20M
php_value upload_max_filesize 20M
...