bgermann
Forum Replies Created
-
Forum: Plugins
In reply to: [cformsII] Database Will Be RemovedDid you install the CFDB plugin from https://cfdbplugin.com ? It has the necessary changes now.
Forum: Plugins
In reply to: [cformsII] Announced ending database viewI am removing the view because of general security concerns. It had a long standing SQL injection issue and I guess there are more issues with it. With the anchor being shown you actually point out something that could be a cross site scripting issue.
I am sorry, but I do not want to be responsible for such a rotten code base. Actually there are many other areas in cformsII that look very ugly.
The next cformsII version will have to wait some time. Maybe it will happen as late as the WordPress 5 release.
And after all there is https://wordpress.org/plugins/cforms2-old-tracking-db.
If some PHP developer wants to take on the responsibility, he can build upon it and provide the old user interface.I will see what I can do about better user experience in CFDB.
Forum: Plugins
In reply to: [cformsII] Allowed file extensionsThere is a placeholder that appears when the field is empty. Maybe I will add additional documentation in the next release.
Forum: Plugins
In reply to: [cformsII] Words count limits in text boxYou would use regular expressions for this. Something like
^.{0,50}$- This reply was modified 7 years, 7 months ago by bgermann.
Forum: Plugins
In reply to: [cformsII] sender email settingsYou can set the user-facing address (From) in cformsII’s form settings. If you control your mail server, you can set the sending address (Return-Path) there. Else you can use a plugin like WP Mail SMTP to use an external mail server.
Forum: Plugins
In reply to: [cformsII] Form in HTTPS but send info to HTTPIs the CRM on the same toplevel domain as your wordpress installation? Maybe WordPress rewrites the form’s action in this case (What does the HTML source look like?). Or it may be a browser security “feature”. Or you use the current chrome version and do not see the exact URL. Please provide more specific information.
- This reply was modified 7 years, 7 months ago by bgermann.
Forum: Plugins
In reply to: [cformsII] Using plugin with PHP7 – Session_start() permission deniedThese are warnings, not errors. https://wordpress.org/support/topic/kinda_solved-runing-under-php7-causes-session_cache_limiter-error/
- This reply was modified 7 years, 8 months ago by bgermann.
Forum: Plugins
In reply to: [cformsII] Information is Publicly displayedOr you can update and use https://cfdbplugin.com/ as cformsII’s upload file target. Your files are then put into your database.
Forum: Plugins
In reply to: [cformsII] Information is Publicly displayedYes, the default directory where cformsII puts uploads is publicly available. You can configure the directory in the form settings to point to a private directory. Alternatively you can have a HTTP basic authentication on your publicly available directory (e.g. with an .htaccess file).
Forum: Plugins
In reply to: [cformsII] Missing {ID} variable for email messagesThe reason for dropping {ID} is that the old tracking DB is removed. I could have used a random ID instead but that would have changed the semantics.
I suggest you do one of the following:
1. Use the emails’ Message-ID.
2. Use a combination of {Date} and {Time}
3. Use an arbitrary string (even “{ID}”) that you replace in a cforms2_admin_email_filter with something. Example code to use in a plugin:add_filter ( 'cforms2_admin_email_filter', function($email_text) { replacement = mt_rand(); return str_replace('{ID}', $replacement, $email_text); });Forum: Plugins
In reply to: [cformsII] Delete Data From Form EntriesYou can install CFDB and export the cformsII tracking data to this plugin. CFDB has the ability to export in various data formats.
Forum: Plugins
In reply to: [cformsII] Delete Data From Form EntriesAs you cannot see any entries nor the menu item: Do you have cformsII 14.14 from wordpress.org installed or did you install the development version from github.com/bgermann?
Forum: Plugins
In reply to: [cformsII] Delete Data From Form EntriesThe two suggested workarounds delete the entire cformsII tracking database.
- This reply was modified 7 years, 9 months ago by bgermann.
Forum: Plugins
In reply to: [cformsII] Delete Data From Form EntriesThat is odd. The entry shows up if the tracking db is present.
If you know how to use a SQL client on your database you can delete the two tables yourself. They are wp_cformssubmissions and wp_cformsdata (wp_ being your installation prefix).
If not you can use “Produce debug output” and copy the text area content. Then use “Uninstalling / Removing cforms” and reenable the plugin. Then use “Produce debug output” and overwrite the text area with the previously copied old settings.Forum: Plugins
In reply to: [cformsII] Form Data alternative page + MailsThis question was asked 3 weeks ago: https://wordpress.org/support/topic/enable-alternate-form-action-and-admin-emails/
Please search through the forum before posting here.