bgermann
Forum Replies Created
-
Forum: Plugins
In reply to: [cformsII] Form disappears after upgrading to 14.14Do you see any error in the PHP error log?
Forum: Plugins
In reply to: [cformsII] Can’t find tracked files since recent updateNot CFDB7, CFDB is available at https://cfdbplugin.com.
Forum: Plugins
In reply to: [cformsII] Can’t find tracked files since recent updateYou can see in 14.14’s changelog: “remove persistent file storage (please use CFDB)”. So there are no files stored anymore. If you want them to be stored, you should use CFDB as suggested.
Forum: Plugins
In reply to: [cformsII] Bringing ID of form submission in autoconfirmationThe auto updating of plugins is not default behaviour, so I guess you have something installed which causes the config to change. You can read about auto updates at https://codex.wordpress.org/Configuring_Automatic_Background_Updates
Forum: Plugins
In reply to: [cformsII] Bringing ID of form submission in autoconfirmationIt is totally fine to just download 14.13.3, remove the 14.14 plugin directory and replace it with the extracted 14.13.3 one. There are no known security issues in 14.13.3 up to now.
Forum: Plugins
In reply to: [cformsII] Bringing ID of form submission in autoconfirmationThe 14.14 changelog says “remove Tracking ID for files and {ID} variable”, so this change is intentional. You can read about tracking database being dropped in the next release in readme.txt, which is the reason for giving up {ID}.
Forum: Plugins
In reply to: [cformsII] SupportThis is a duplicate of https://wordpress.org/support/topic/formatting-issues-21/
Sometimes there are other things in life…
Forum: Plugins
In reply to: [cformsII] Radio button optionYou want to change the
widthfor thelabel.cf-afterrule. Please also see Custom Theme (CSS) Files on how to preserve CSS changes.Forum: Plugins
In reply to: [cformsII] fill fields via url query stringSo one intentional change was “remove deprecated API functions my_cforms_logic, my_cforms_filter and my_cforms_ajax_filter”. Do you use any of these?
Forum: Plugins
In reply to: [cformsII] Custom FilenameYou do not have to install contact form 7 to use CFDB.
I understood you correctly. But as of version 14.14 cformsII does not save any uploaded files anymore. So to have a file saved, you have to use CFDB, which by default only saves files to the MySQL database. However, you can build a custom file saving routine for it, which you can see in the first link given. Now it is up to you to program this routine to save the files with a prefix.
Forum: Plugins
In reply to: [cformsII] Custom FilenamePlease be sure not to use CFDB7, but CFDB.
Forum: Plugins
In reply to: [cformsII] noide- added to my uploaded mps3See changelog for 14.14: “remove Tracking ID for files and {ID} variable”
Forum: Plugins
In reply to: [cformsII] Custom FilenameYou can find “remove persistent file storage (please use CFDB)” in the changelog for 14.14. So please use CFDB plugin, which has support for storing uploads in its database or as a file.
Forum: Plugins
In reply to: [cformsII] Tracking DBThe option “save to database” is independent from CFDB. It is just for the old tracking DB.
By default, on installation of CFDB cformsII forms save submissions to it.
Forum: Plugins
In reply to: [cformsII] Submission LimitThe tracking database will be removed in version 15.0. The submission limit relies on it, so it was removed previously. You could hook to the cforms2_after_processing_action and throw an exception if your limit is exceeded. Based on the old tracking database, which you can still use witha plugin in 15.0, you would have to implement a check similar to cforms2_get_submission_left() function.