Hello, when you get this message “Sorry, this file type is not permitted for security reasons.” it means that the restriction is coming from WordPress not out plugin, we can’t assist we that but we can suggest using the following code:
function wpali_custom_upload_mimes($mimes = array()) {
$mimes['ai'] = "application/postscript";
return $mimes;
}
add_action('upload_mimes', 'wpali_custom_upload_mimes');
For the second message, you might be just uploading a large file, try with a smaller one a see if it’s going to be uploaded or not