zaus
Forum Replies Created
-
First step — turn on ‘debug mode’. This will send you an email which includes the response from the service (Salesforce), which help in identifying the problem.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Any tips for Velocify?Not sure what to tell you — the response coming back from Velocify says success with a leadid of 54931.
Was the issue as you thought? Did you get it to work?
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Gravity Forms – Constant Contact Post problemAddressed as of version 1.4.8 (see github issue-8)
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Field Mapping LimitWeird. I think it’s the MySQL limit on the size of an entry in
wp_options; deleting all the other services may have opened up enough room to save the ‘extra’ fields.I have been meaning to rewrite how it stores the service details (separate entries or a custom post type), which should solve this issue (if I have time to get to it).
Please let me know if it keeps happening; otherwise can you mark it as resolved?
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Field Mapping LimitHm…there shouldn’t be, although because it’s storing the configuration in a single
wp_settingsfield there may be a practical limit you’re hitting. Is the problem with the UI (add rows) or once you save it?Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Any tips for Velocify?Can you provide the full debug email (scrubbed of anything that should be ‘secret’)? You’re just showing the submission, not the full response.
I did some work integrating Velocify not too long ago, and the results seemed to not be there until I sorted the submissions by date, and then I was able to see them. Velocify also needed a unique reference id, which you can create with
##UID##using the Dynamic Fields addon.Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Integrating ListrakIt tells you the problem in the
*** Response ***section (buried within the HTML) – it’s missing the email, which you can see from the*** Post (to Service) ***section is the case.It looks like you have checked the ‘as value’ checkbox in the mappings, which is causing it to send the field name you entered (literally, the *value* you entered) rather than the form submission value. Sorry for the confusion.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Checkbox – SalesforceAha, this person had the same problem with checkboxes on the old plugin.
I also wrote an add-on (for the updated version of CF7-3rdparty) that basically does the same thing — http://wordpress.org/plugins/forms-3rdparty-dynamic-fields/
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Integration with LimeDBRelated — http://wordpress.org/support/topic/getting-error-code-500?replies=4#post-5254397
New add-on plugin may be solution for simple SOAP requests: https://github.com/zaus/forms-3rdparty-xpost
Closed, no activity.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] getting error code 500Sorry for the delay; you may be interested in a new add-on plugin https://github.com/zaus/forms-3rdparty-xpost (wp.org approval pending) which may be able to translate it to your SOAP construct (depending on the complexity of the request structure, it only handles simple nesting).
Otherwise, did you try the actual SOAP suggestion I made?
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Integrating ListrakSounds like you set up the plugin correctly.
What does the debug submission (email) look like? It should show a complete mapping of what’s being sent to the service, as well as the response from Listrak, which may tell you more regarding the failure.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Checkbox – SalesforceHave you examined the debug output from the plugin? It should show exactly what is returned by the CF7 form, as well as exactly what is being mapped and sent to the service (Salesforce).
My suspicion is that if the checkbox is unchecked, it’s either not part of the submission (no value sent = omitted), which means that my plugin ignores it, or that it’s being sent with a value that Salesforce doesn’t interpret correctly (like
''when Salesforce expects0).I think I remember someone else having a similar problem, and I think there’s a way in Salesforce to tell it how to interpret ’empty’ values.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] WPML and multisite supported?Maybe? Did you try it? I tried to wrap most of the text in the appropriate translation functions, so it’s translation-ready but I haven’t written any translations.
That said, my plugin is mostly admin, so unless your users are administering your contact forms they shouldn’t see much text from it.