Lodius2000 Posted October 4, 2008 Share Posted October 4, 2008 does the upload_max_filesize command in php.ini limit the size of each file uploaded or limit the size of all the files to be uploaded at once I am thinking of making a batch image upload script and want to know where would be a good limit for upload_max_filesize and if it does limit the batch then i have to make my limit huge thanks Link to comment https://forums.phpfreaks.com/topic/126960-solved-upload_max_filesize/ Share on other sites More sharing options...
F1Fan Posted October 4, 2008 Share Posted October 4, 2008 That would be the max per user per file, I believe. However, that is more of a server setup question that may be better answered in one of the server boards. Link to comment https://forums.phpfreaks.com/topic/126960-solved-upload_max_filesize/#findComment-656735 Share on other sites More sharing options...
PFMaBiSmAd Posted October 4, 2008 Share Posted October 4, 2008 You could test this yourself in a couple of minutes. Select two files that total more than the upload_max_filesize setting and see what happens. All you need is a valid upload form with two type="file" fields and some .php code with a print_r($_FILES); statement to display the results of the upload. Link to comment https://forums.phpfreaks.com/topic/126960-solved-upload_max_filesize/#findComment-656769 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.