Michael Simpson
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form DB] Retrieve Deleted EmailUnfortunately there is no deleted folder. Deleted is deleted.
Forum: Plugins
In reply to: [Contact Form DB] Can’t export to Google SheetsI think I introduced a bug in that code recently. I’ll fix. In the mean time, you can export as CSV then manually import that into Google Docs, or try to have a Google spreadsheet automatically pull the data from your form. Do that from the Shortcode Builder page -> Export tab -> Export File = Google Spreadsheet Live Data.
Forum: Plugins
In reply to: [Contact Form DB] Non Registered / Logged In User Cant View DataYour security settings probably don’t allow “Anyone” to see shortcode output.
http://cfdbplugin.com/?page_id=625- This reply was modified 9 years, 8 months ago by Michael Simpson.
Forum: Plugins
In reply to: [Contact Form DB] How to post contcats form to specific ASPX web address?This requires you to write some custom PHP code. If you are not a programmer then you will need to get help from one. The link I posted shows you how to hook in the code and how to get values from the form being submitted. To do the actual POST, I suggest to use try PHP curl_exec function.
Forum: Plugins
In reply to: [Contact Form DB] Export (xlsx) doesn’t openYou might open the file in a text editor to see if
1. there is any extraneous WP debug text getting injected at the start of the file (although there should be protections against that)
2. not all of the output was written to the file (server ran out of memory when generating the file). It would have to be many thousands of rows for this to happen.Forum: Plugins
In reply to: [Contact Form DB] New DatabaseFrom the CFDB Import page (must be a logged in user with permissions to edit CFDB data) you can import a CSV file into an existing form or a new form.
But this is different from having a regular form with a file upload where you might want to import what is in the file. CFDB doesn’t do that. I don’t know how you mean it.
Forum: Plugins
In reply to: [Contact Form DB] If ${Value} is empty do not displyI think this is kind of a bug b/c the code only tries to replace ${Value} if ${Value} is defined in the form submission. I’ll look at fixing that shortly so that it replaced it with no text.
Forum: Plugins
In reply to: [Contact Form DB] CFDB does not capture keygen value of Caldera formHow do I create such a field on the form? I don’t see a keygen field type.
Forum: Plugins
In reply to: [Contact Form DB] How to enlarge the font size of the output display data?Look at id, style and class in [cfdb-table]
Forum: Plugins
In reply to: [Contact Form DB] Enfold Column titles and HTML display[cfdb-html form=”test”]YOU HAVE TO PUT THE HTML TEMPLATE OF HOW YOU WANT IT TO DISPLAY HERE[/cfdb-html]
http://cfdbplugin.com/?page_id=284Try:
[cfdb-table form=”test” headers=”1_1=Your col name 1,2_1=Your col name 2″]The plugin does not support this direclty. However you could write PHP code to create a transform class then add that transform to an export shortcode.
Forum: Plugins
In reply to: [Contact Form DB] How to post contcats form to specific ASPX web address?Using a hook provided by CFDB or your form plugin, you can add PHP code to do extra things with the data in the form submission. However, if you want to make the user’s browser to go to a certain page after he submits, that is a question for your form plugin, not CFDB.
The hook for CFDB is described here: http://cfdbplugin.com/?page_id=747
Forum: Plugins
In reply to: [Contact Form DB] IP is fetched from CDNThis is how I get it in PHP:
$ip = (isset($_SERVER['X_FORWARDED_FOR'])) ? $_SERVER['X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR'];After doing a quick web search, I see that there are other headers that I could check but it doesn’t seem to be a convention on what is correct. For example:
X-Real-IP
HTTP_TRUE_CLIENT_IP
HTTP_CLIENT_IP
CLIENT-IPSo I’m a bit lost.
It would be interesting to see what headers are coming thru your system. Please post.
Forum: Plugins
In reply to: [Contact Form DB] cfdb view table database mysqlI do not understand the question.
Forum: Plugins
In reply to: [Contact Form DB] PHP 7.0