jonniejoejonson Posted February 26, 2008 Share Posted February 26, 2008 I've read that the max file upload is 32Mb, therefore if you want users to be able to upload a files that are upto 100Mb in size (like youtube) how can you do this? can it be done with php? regards to any responders J Link to comment https://forums.phpfreaks.com/topic/93000-max_upload/ Share on other sites More sharing options...
Bauer418 Posted February 26, 2008 Share Posted February 26, 2008 Edit: I lied, forgot upload_max_filesize and post_max_size are PHP_INI_PERDIR so they need to be changed in .htaccess, using this: php_value upload_max_filesize 100M php_value post_max_size 101M post_max_size is larger than upload_max_filesize to allow 1MB of extra postdata (form fields, etc.) beyond the 100MB limit of the file itself. Link to comment https://forums.phpfreaks.com/topic/93000-max_upload/#findComment-476455 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.