You can do this with hooks: create a file app/init-custom.php and add this code:What's the official proper way to increase the maximum to over 100MB now? I have lists that are about 180MB each...
PS: Mailwizz is awesome, migrating from Sendy and other saas...
<?php
hooks()->addFilter('get_upload_allowed_max_file_size_options', function ($options) {
// Add additional file size options
// This is 200Mb
$options[1024 * 1024 * 200] = t('settings', '{n} Megabyte|{n} Megabytes', 200);
// This is 300Mb
$options[1024 * 1024 * 300] = t('settings', '{n} Megabyte|{n} Megabytes', 300);
return $options;
});
Did you check in backend > misc > phpinfo, does it show these values you're showing here, for upload size, post size and memory limit?I tried to set 200Mb and the files are less than 180, getting 500 error =(
yes, it's in my reseller VPS cpanel on inmotion, under MultiPHP INI EditorDid you check in backend > misc > phpinfo, does it show these values you're showing here, for upload size, post size and memory limit?