bgermann
Forum Replies Created
-
Forum: Plugins
In reply to: [cformsII] Issue cforms2 fatal errorMost probably your session.save_path PHP setting is empty or not set. If you control your php.ini, you can set it. If not, please look in your host’s support sites how to deal with it.
Forum: Plugins
In reply to: [cformsII] Fatal Error – CformsII will not activate@kozmikdesign It is not the same error. It’s just the same error class. Please open another issue for it.
Forum: Plugins
In reply to: [cformsII] Automatic Total Option?There is a way, but not a built-in way. You would have to write some JavaScript that listens on the items’ onchange events. On each event you would sum up the fields’ values and replace the Total value.
Forum: Plugins
In reply to: [cformsII] Required check boxIt is possible with a single checkbox, but not with a checkbox group.
Forum: Plugins
In reply to: [cformsII] Change values of form-entry in admin and auto-reply mailsmy_cforms_filter SHOULD also work for AJAx forms. Did you try it?
Forum: Plugins
In reply to: [cformsII] Fatal Error – CformsII will not activateDoes really nothing happen? It should at least send a HTTP POST request to the same url on RESET. Try a different, current browser if that is not the case.
Forum: Plugins
In reply to: [cformsII] What is TGM Plugin Activation?It is a dependency management library for plugins. Unfortunately it is in WordPress plugin format so that it is recognized as one. “Really Simple CAPTCHA for cformsII” needs it to say that it is dependent on “Really Simple CAPTCHA” and “cformsII”. WordPress itself does not have dependency management, which I think is pretty lame.
You can leave it deactivated.
Forum: Plugins
In reply to: [cformsII] Change values of form-entry in admin and auto-reply mailsI thought it would be possible to use by ref with WordPress actions, but it is not. You are not supposed to change the values with actions. However you can use
my_cforms_filter(&$formIDOrPostData), which is explained in my-functions.php.txt. Keep in mind that this function is deprecated and will be replaced by a proper WordPress filter in the near future.Forum: Plugins
In reply to: [cformsII] Change values of form-entry in admin and auto-reply mailsYou can use by ref parameter: Just write
function (&$cformsdata)instead odfunction ($cformsdata).Forum: Plugins
In reply to: [cformsII] Increase date range on dropdown@rsimpson You have five wrong quotes in the last two key:value pairs in your JSON.
It is possible to implement a per field setting. I will keep this as a task for later.
Forum: Plugins
In reply to: [cformsII] Increase date range on dropdownYour example is right and works for me. You should give a URL with this configuration that shows just one of year or month dropdown to help me figure it out.
Forum: Plugins
In reply to: [cformsII] Cformssl tracking lost my listI suggest you mean the list of the user inputs in cforms’ tracking database. No, there is no other place where that information is stored.
Maybe your hosting provider has a backup of the MySQL database that is used by your WordPress installation. If so, you should recover with it.
Forum: Plugins
In reply to: [cformsII] Limiting number of characters in fieldYes, I did not read properly. You can use regular expressions for that. These are configured in the field settings. The regular expression to have exactly two uppercase letters is
^(A-Z){2}$Forum: Plugins
In reply to: [cformsII] Dynamic formsYou should post some exampe code and which type of fields you generate.
Forum: Plugins
In reply to: [cformsII] Regular expression does not work anymoreYou should check for
PHP Warning: preg_match(): Compilation failed: regular expression is too large at offset 16
You should increase PHP settings pcre.backtrack_limit and pcre.recursion_limit for this expression to work properly or reduce the 5600 size.
Actually this was a bug in 14.10.1 as the regex was never checked in PHP. It was and is still checked in JavaScript, but users can circumvent that.