We are in the process of updating a Drupal 6 website from Drupal core 6.19 to Drupal core 6.27 and Webform 6.x-2.10 to Webform 6.x-3.18 (and other updates), and first testing the updates on our test server.

We use Webform to send data to our Salesforce database, and need to continue this process. (We use Additional PHP processing as well as Webform PHP.)

I can finally submit a form, see the data in Salesforce, see the Saleforce workflows get triggered to send an auto-reply, and an auto-forward. However, after the form is submitted it does not go to our redirect URL (either absolute or relative) or to a conformation page. Instead it returns to the original form.

Any help in getting this solved is appreciated.

Thanks!

Sharon

Comments

znurgl’s picture

I checked this issue and I can't find any errors. What is the URL?

sandipmkhairnar’s picture

I checked this issue and I can't find any errors.

sbarsky’s picture

The update to webform is still on our test server, so the URL is not available for outside people to see.

The code we use in the Additional Processing section is:

echo($form);
require_once(drupal_get_path('module', 'indigo_web2lead') . '/indigo_web2lead.module');
$form_state = indigo_web2lead_process($form, $form_state);

This enables the data to be sent to Salesforce correctly, and a workflow triggered to send an email back to the user. But the page URL does not change to our "Thank-you" page.

If a new form was created without that Additional Processing, I can get either the confirmation message, confirmation page, or custom URL to show up after the form completion, *BUT* the data does not get into Salesforce, etc.

I'm stuck at this point.

sbarsky’s picture

I'm still looking for help in solving my problem. Not being able to update webform is causing many modules to fall out of date.

Suggestions are appreciated.

quicksketch’s picture

Title: Submission does not bring me to Confirmation page or Custom URL » Submission does not bring me to Confirmation page or Custom URL when using Additional Processing
Category: bug » support
Status: Active » Closed (won't fix)

The code we use in the Additional Processing section is:

Webform doesn't have additional processing options any more unless you've installed Webform PHP, which is not supported.

sbarsky’s picture

We need to have Webform PHP in order to feed the results from a Webform submission into our Salesforce database. If I don't use Webform PHP, how do you suggest that I accomplish this?