Hi, I’ve discovered multiple security issues in the plugin. I’d like to submit my report, but there is no e-mail ID in the source code and the site that the plugin links back to is also a no-go. The WHOIS information also doesn’t match the developer’s name. So could you tell me how to reach you?
]]>The only option I seem to have under settings > Super Contact Form is “email address”. What happened to all the other options that the documentation says is supposed to be available, like “You will also want to customize the Super Contact Form plugin from the Settings > Contact options menu. Here you can set the email address to receive submissions, text for legends, labels, and prompts, turn on spam reduction measure(s), etc.” The plugin is activated, and my page link is working – but I can’t do any customization. Plugin says I’m using version 3.1.
Thanks,
Lee
]]>When i try to activate this plugin it says:
The plugin does not have a valid header.
]]>I installed this plugin and it doesn’t do anything but collect your email (probably to spam you).
It needs to be deleted.
]]>Super Contact Form 2.0.3 inserts its options page with the wrong path name on line 407:
add_options_page( __( 'Easy Contact', 'easy_contact' ), __( 'Contact', 'easy_contact' ), 'manage_options', 'easy-contact/econtact-menu.php', '' );
This should instead be:
add_options_page( __( 'Easy Contact', 'easy_contact' ), __( 'Contact', 'easy_contact' ), 'manage_options', 'super-contact-form/econtact-menu.php', '' );
Or, to allow for renaming of the plugin directory and files:
add_options_page( __( 'Easy Contact', 'easy_contact' ), __( 'Contact', 'easy_contact' ), 'manage_options', str_replace('.php', '-menu.php', plugin_basename(__FILE__)), '' );