zaus
Forum Replies Created
-
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] 3rdParty Integration Failure1. Enable debug mode (checkbox at top of settings page)
2. Post the entire contents of the resulting email, including the mappings section so we know what you’re doing. Remove any sensitive info first
3. If the response from Salesforce is blank, please also check with them what the problem could be. They might have submission logs to tell you more about the problem.Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] 3rdParty Integration FailureHm…the
responseis completely empty. Check with Salesforce if it’s actually getting anything; you might be missing some ‘static’ mapping fields.I just recently completed a redirect with CF7, it’s a little weird but not too complicated.
You basically need two hooks:
- one to preprocess the mapped fields and turn them into your redirect url (and bypass the regular sending since you don’t want to post to the service, just redirect) — see #5 of https://github.com/zaus/forms-3rdparty-integration#hooks
- one to attach that redirect url to the CF7 instance, which you can within the hook
..._remote_successusing something like$addl = $form->prop('additional_settings'); $addl .= "\non_sent_ok: \"(function(){ location = {$this->redirect}})();\""; $form->set_properties(array('additional_settings'=>$addl));
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Admin panel does not workBrowser? Screenshot? Plugin versions? Have you checked something like the Chrome Developer tools (F12 > Console tab) to see if you’re getting Javascript errors that prevent the UI from running?
It’s showing up in the debug as an array because that’s what
wp_remote_postturns into a regular webforms post.If you’re getting ‘invalid xml’ warnings it might be because you’re trying to send to an XML webservice — try https://wordpress.org/plugins/forms-3rd-party-xpost/, which I wrote for such occasions.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Madmimi Integration ?I do custom work/integrations for a fee — contact me through my website if interested.
But if they have a webform then you should just be able to map the field names (
<input id="something" name="youshouldcopythis" type="text"...). Or if they have an API then you can post similarly.Seeing the following on their List Management feature makes me hopeful it’s just a simple webform:
Plant a Mad Mimi webform on your site, and watch your audience grow!
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Contact Form 7 to osTicketI do custom work/integrations for a fee — contact me through my website if interested.
But if they have a webform then you should just be able to map the field names (
<input id="something" name="youshouldcopythis" type="text"...). Or if they have an API then you can post similarly.Seeing under the “Customer Portal” the following on their ‘features’ list makes me hopeful it’s just a simple webform:
No user account or registration required to submit a ticket.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] 3rdParty Integration FailureThat’s not the full debug dump, but what that could mean is that it’s looking for the clause text in the response, and because it’s not finding it (maybe because it’s missing spaces after the period?) it thinks you mean that the response failed.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Integration with woocommerceMaybe, if they accept regular html form posts or something similar without an internally-generated (i.e. Only woocommerce knows how to make the value).
If you’d like my specific help for this custom integration, please contact me through my website, thanks.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] 500-Internal Server ErrorThat looks like it’s a problem with your end point you’ll have to contact them. I’m wondering if one of the values you sent as a test value is a bad format for example best day may need to be a date and since it is not it is crashing their service. It could also be that you’re not napping the data correctly, but without knowing their API I couldn’t help.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Integration with Velocify – Need HelpDon’t include the square-brackets in the
srcmapping.Sorry, I had forgotten to commit the changes to SVN as well as GitHub. Now live as v1.6.4.3 (actually resolved)
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] DocusignNo idea, have you tried it? 😉
Do they have a web form you normally fill out? Do they provide an API/documentation?
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] UI bugAhh, the dreaded “conflicts with *something else I installed*”. Hate when that happens.
Check if your theme is loading its own jQuery/jquery-ui; my plugin admin should be reusing whatever WordPress already comes with, I think, so maybe the theme is overwriting it with a non-compatible version.
Forum: Plugins
In reply to: [Forms: 3rd-Party Integration] Unable to open a external urlI don’t think you understand how a captcha works, and this one in particular. Every time you visit the page it generates a new code using JavaScript, the point being that only a human visitor can see the code and respond appropriately. A captcha almost by definition is supposed to defeat automated submissions like we’re trying to do.
There is nothing you can do to get around this programmatically, via cURL or otherwise, which is why I suggested you contact tashlik to see if they have an API alternative.