Michael Simpson
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form DB] Duplicate Submissions from CF7This refers to: https://cfdbplugin.com/?page_id=904
Set:
$formName = '*';And I think it will work for forms on the site with the designated $fieldName
Forum: Plugins
In reply to: [Contact Form DB] Ninja Forms supportI wonder if forms created prior to version 3.0 work but those created after do not. I have the latest Ninja and the forms work but I created them a long time ago. I’ll have to check that out and get back to you.
Forum: Plugins
In reply to: [Contact Form DB] a way for users to view their own submissions?Only if the user is logged into your site. See https://cfdbplugin.com/?page_id=116
If you look at the number, it is trying to use over 268 MB. Raise it to 512 MB.
Forum: Plugins
In reply to: [Contact Form DB] PHP 7 CompatibilityForum: Plugins
In reply to: [Contact Form DB] Save entries from DIVI theme Contact form moduleThere isn’t a way at this time to hook into the DIVI form submission process, so an integration with CFDB is not possible. DIVI may add that access in a future version.
Forum: Plugins
In reply to: [Contact Form DB] Stored XSS Vulnerability Identified@pkotsiop I was able to duplicate the issue. I’m releasing an update with a fix.
Thank you.
Forum: Plugins
In reply to: [Contact Form DB] 11th field not displayingSome thoughts:
– Does the field appear in the CF7 email? If not, check for issue in CF7 form definition.
– Additional field must not have the same name as another field in the form
– If using a shortcode with “show” option, the field name must be added to “show”
— (and field name must not appear in “hide”)
– Column will not appear unless there is at least one form submission saved with that value.
– Admin table may scroll right, but this might not be obvious as you have to scroll the whole page.Forum: Plugins
In reply to: [Contact Form DB] Stored XSS Vulnerability Identified@pkotsiop I will see if I can duplicate the issue. Thank you for brining it to my attention. Please send any additional info to info@cfdbplugin.com
Forum: Plugins
In reply to: [Contact Form DB] Multiply two fieldsTry SummationRow
https://cfdbplugin.com/?page_id=1167Forum: Plugins
In reply to: [Contact Form DB] Spam LinksAll the links generated by the plugin point to your site. Something in your site must be redirecting.
Forum: Plugins
In reply to: [Contact Form DB] 11th field not displayingHave you made a submission on the form since you added that field?
Forum: Plugins
In reply to: [Contact Form DB] Duplicate Submissions from CF7The code example I provided is all in the backend and it tells Contact Form 7 that there is an error. Contact Form 7 then displays the error message on the web page. CFDB never touches the form web page itself. Anything you want to do on the page is a question for Contact Form 7.
Forum: Plugins
In reply to: [Contact Form DB] Importing form data to an independent databaseAside from the various shortcodes that CFDB offers to display data on web pages or export it, you can create your own shortcode in PHP or simply Access Form Data via PHP.
Forum: Plugins
In reply to: [Contact Form DB] Importing form data to an independent databaseI’m confused by your phrasing. In the first post you write:
Can I import data from a contact 7 form using cfdb to my own mysql database?
When using contact 7 and CFDB the data does go into your MySQL database in a table managed by CFDB already. Import to where? I assume you meant to import it from one MySQL DB to another.
Is there a way to have contact form data imported directly into a mysql database from the form
Strictly speaking, the “form” does not have data. CFDB captures form submissions and stores them in a table in the MySQL database. So I don’t understand what you want to import into MySQL, since it is already there. If you mean transfer the data from one MySQL database to another (and I mean database, not database table) then you would need to export the data to a file and import it into the other DB. You do this either using CFDB or using something like PHPMyAdmin to export data from a table.