bgermann
Forum Replies Created
-
Forum: Plugins
In reply to: [cformsII] Can cforms send data to more than one place?In the alternative form action notes it says “If you enable an alternative form action you will loose any cforms application logic”, so if you want to receive email, you have to disable it and send the form to your CRM via the mentioned action or some other function of the cforms API.
Forum: Plugins
In reply to: [cformsII] Can cforms send data to more than one place?@liberox Do you also use the alternative form action?
Forum: Plugins
In reply to: [cformsII] Upload file to CRMYou are the one from https://wordpress.org/support/topic/can-cforms-send-data-to-more-than-one-place
So you use alternative form action to send your data, right? Then this is not dependent on cforms, but the CRM must have the ability to receive files.
Forum: Plugins
In reply to: [cformsII] Own VariablesPlease have a look at the my_cforms_logic function in my-functions.php.txt, which can handle additional email text replacements. It is deprecated, but will survive for some while and when it is removed, there will be an alternative filter.
Forum: Plugins
In reply to: [cformsII] Form just hangingIs the version in the screencast the old version as well? I do not support old versions. If you want help from me, please use the latest version available.
Forum: Plugins
In reply to: [cformsII] Upload file to CRMRight, there is no way without programming some PHP.
Forum: Plugins
In reply to: [cformsII] .htaccess vs. captchaRight, logic is hard sometimes :-).
Forum: Plugins
In reply to: [cformsII] Upload file to CRMI advise you to follow https://wordpress.org/support/topic/hook-to-get-form-submission-data/
When this is accomplished, your task should be doable via the WordPress action mentioned there.
Forum: Plugins
In reply to: [cformsII] .htaccess vs. captchaNow that WordPress has a REST API built-in, it would be possible to port the plugin to that API. But until someone does that, you will still need access to /wp-admin/admin-ajax.php. You can have that file as an exception from a general htaccess blocking rule.
- This reply was modified 9 years, 1 month ago by bgermann.
Forum: Plugins
In reply to: [cformsII] Unwanted File AttachmentsOh, I checked a bit more and it is a cformsII bug. The bug is that with auto confirmation emails in some cases a directory is given as attachment and is silently rejected by other mail engines. Postman includes a 0 Byte file with the dirname. So your plugin behaves perfectly fine.
I just commited a fix, which will be contained in the next release: https://github.com/bgermann/cforms2/commit/cfcc7f43c6cad21df2e0d6bfe763da6b8d1ee58a
Forum: Plugins
In reply to: [cformsII] Unwanted File AttachmentsIt is not just the ghost attachment that is an issue here. The mail should have Content-Type: multipart/alternative with a text and an HTML part, but Postman converts it to Content-Type: multipart/mixed with the HTML part retained. The text part however is lost and instead the ghost attachment is used.
You can check cformsII’s lib_email.php for the email handling. phpmailer_init action is hooked to set the email’s text part as $phpmailer->AltBody. It is hooked with every wp_mail call and then reset to not interfere with other plugins using PHPMailer. As Postman does not use PHPMailer, this explains the unsent text part, but not the ghost attachment.
Forum: Plugins
In reply to: [cformsII] Form just hangingI remember that one. I guess the screencast is not from the live site, as it does not contain a Q&A CAPTCHA. On the live site, the original, insecure cformsII is installed, but I guess, you know that.
What does your JavaScript error log show? Have you tried turing AJAX off?
Forum: Plugins
In reply to: [cformsII] Autocommit email with attachment . How to remove ?Forum: Plugins
In reply to: [cformsII] Changing the style of admin emailcformsII has some of the mail style stored as part of the global settings. You cannot see or edit it via the dashboard, but you can manipulate it directly in the database. The settings are stored in one database field. Search the forum or source to find its name.
Forum: Plugins
In reply to: [cformsII] Export / ImportThe export feature was removed, however you should still be able to use the import feature on the stable 14.12.3 version (it will be removed with the next release).
Did you copy the whole database to the new server? Can you still use the forms on the old one?