Michael Simpson
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form DB] Calculated Fields Form to DBI don’t see how this relates to the CFDB plugin.
Forum: Plugins
In reply to: [Contact Form DB] Export as xlsx not workingThe Excel writer uses the “Spout” library which has these requirements:
https://github.com/box/spout#requirementsPHP version 5.4.0 or higher
PHP extension php_zip enabled
PHP extension php_xmlreader enabled
PHP extension php_simplexml enabledForum: Plugins
In reply to: [Contact Form DB] Show number of form entries on frontendForum: Plugins
In reply to: [Contact Form DB] Can File Hyperlinks be opened in new window?There is no simple support for that.
You would have to add some jQuery to set the target attribute on the A tags. It would be similar to this example:
http://cfdbplugin.com/?page_id=1420Forum: Plugins
In reply to: [Contact Form DB] syntex errors in PHPYou are running an outdated version of PHP. WP recommends 5.6, you are running 5.2.
Forum: Plugins
In reply to: [Contact Form DB] Link to download file from CFDBIf $row[‘Archivo’] represents an uploaded file, then
$row[‘Archivo’] = the file name
$row[‘Archivo_URL’] = the download URL for the fileForum: Plugins
In reply to: [Contact Form DB] Cancellation form data as possible to recover them ?Unfortunately no.
Forum: Plugins
In reply to: [Contact Form DB] cfdb is not saving page title and urlI don’t have a solution. I am unable to duplicate this issue.
Forum: Plugins
In reply to: [Contact Form DB] What would cause a form's data base to be eliminated?It sounds like the request from Excel to your WP site is terminating before it returns all of your data. You might try a regular Excel export in your browser to see if you get the same kind of behavior.
Forum: Plugins
In reply to: [Contact Form DB] are you compaitble with wordpress 4.6 rc2?I haven’t specifically tested with that RC.
Forum: Plugins
In reply to: [Contact Form DB] [cfdb-save-form-post] on multiple html/php formsThat should work. Note that the [cfdb-save-form-post] shortcode must be on the the page pointed to by the form’s action attribute. If your forms post to a different page than that which the form is on, then put the shortcode on the destination page.
Forum: Plugins
In reply to: [Contact Form DB] CF7- Form submission successful msg not showing.If the success message does not return, then something is wrong and the script itself died so it can’t return any message.
The CFDB Options page has an option to set a log file for CFDB errors. But it is not guaranteed to capture an error if the script suddenly dies.
Forum: Plugins
In reply to: [Contact Form DB] Trying to save a custom form to the dbThe shortcode captures form posts coming into the page, not out of the page.
Forum: Plugins
In reply to: [Contact Form DB] Export as xlsx not workingCheck your PHP version. Must be 5.4 or later.
Forum: Plugins
In reply to: [Contact Form DB] Link to download file from CFDBDon’t you automatically get links to download the files when using [cfdb-table] shortcode?