Hi @vpjj,
Since you haven’t shared any page URL where you have the form added, I couldn’t see the issue live. However, based on the description, I would assume the issue might be more related to the Options -ExecCGI in the htaccess file.
Could you please add the following code as a mu-plugins:
<?php
add_filter( 'forminator_upload_root_htaccess_rules', 'wpmudev_remove_htaccess_rules', 10, 1 );
function wpmudev_remove_htaccess_rules( $rules ) {
if ( ! empty( $rules ) ) {
$rules = str_replace('Options -ExecCGI', '', $rules);
}
return $rules;
}
You can find the following doc helpful on how to apply the above code as a mu-plugins.
https://wpmudev.com/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins
Once done, access your site via FTP (or cPanel “File Manager” or similar tool) and go to?/wp-content/uploads/forminator?folder and remove only the following line inside the?.htaccess?file:
Options -ExecCGI
Please do make sure to clear the cache once the changes are applied and check how that goes.
Please do check and see whether the above helps.
Best Regards,
Nithin