bgermann
Forum Replies Created
-
Forum: Plugins
In reply to: [cformsII] Delete Data From Form EntriesIf you want to delete all data just go to global menu and choose “delete tracking db” from the top admin menu.
Forum: Plugins
In reply to: [cformsII] Delete Data From Form EntriesThat is also in the linked answers: “You can still delete a single entry on viewing it.”
Forum: Plugins
In reply to: [cformsII] Delete Data From Form EntriesI guess you mean deleting entries from the tracking database. This question has been answered at https://wordpress.org/support/topic/delete-tracking-data/
Forum: Plugins
In reply to: [cformsII] Method to export recordsFrom the readme:
Contact Form DB has support for storing and exporting cformsII’s submission data. Therefore cformsII’s Tracking Database will be removed in version 15.0.
With current cformsII versions a CSV export is possible via the Contact Form DB plugin.
Forum: Plugins
In reply to: [cformsII] Enable alternate form action and admin emailsAnd no, the note does not imply that if you use AJAX, this is a safe option to use. I will remove “in non-ajax mode” in the next version to clarify this.
Forum: Plugins
In reply to: [cformsII] Enable alternate form action and admin emailsYou can find cforms2_after_processing_action in lib_validate.php. It is a WordPress action. You can find information on using actions in your own PHP code in the official WordPress plugin documentation.
You should check the data structure of the $trackf variable that is the action’s parameter. In your PHP code you would use that data to create an HTTP request to the site that you want the data to be sent to (PayPal?). If the HTTP request fails you should throw an exception that is then handled by cformsII.
Forum: Plugins
In reply to: [cformsII] Enable alternate form action and admin emailsYou can read the consequences in the note on alternative form action. No, you will not receive any emails with this enabled.
A way to have cformsII processing and another data sink is using the cforms2_after_processing_action and program it yourself.
Forum: Plugins
In reply to: [cformsII] Problem Redirecting saved forms to a specific web pageYou do not use success page redirection for this problem but the alternative form action. You find more information on how to connect cformsII with vtiger on https://wiki.vtiger.com/vtiger6/index.php/Webforms and https://wiki.vtiger.com/index.php/Webforms
- This reply was modified 7 years, 10 months ago by bgermann.
Forum: Plugins
In reply to: [cformsII] No “Save – update” button at the top.Please update your cformsII version to at least 14.13.3. 13.2.2 has several security vulnerabilities. I do not support such old versions.
Please read about upgrading the plugin at https://wordpress.org/plugins/cforms2/#installation
This will be fixed in the next version.
Forum: Plugins
In reply to: [cformsII] Google reCAPTCHAA search in the forum would have yielded https://wordpress.org/support/topic/cforms-and-spam/
Forum: Plugins
In reply to: [cformsII] GDPR complianceYou can use PHP’s session.use_cookies = 0. Please read in the documentation about how to set it.
Forum: Plugins
In reply to: [cformsII] GDPR compliance@worldpeace2020 I do not know about the GPDR requirements but I guess you can just use a checkbox and make it mandatory.
Forum: Plugins
In reply to: [cformsII] GDPR compliance@berlindave That’s right.
Forum: Plugins
In reply to: [cformsII] GDPR complianceYes. E.g., you can use a setting to transmit the session ID via URLs. That can be a security issue depending on what data is stored in the session. In cformsII the stored data is essentially the form data of multi-session forms.