I have look over your docs and followed your suggestions to resolve my issue without success. So now I am looking to the expert to help solve my problem.
I am using webform as a form registration system and I have had great success. I have been using the same process for several years and with just this one registration, I am getting a blank page after the submit. I have code in the additional_submit text area that redirects the page to a contemplate tremplate. Again, I have used this for a very long time. The page is blank and only for this one registration page. All of the others work as designed.
On all of the registration confirmation pages the sid = passed to the url (i.e 6758?sid=1446) but it isn't getting to the URL of this one submission. It is returning the URL of the webform page.
Here is the additional proccess text area when I print_r($node);
[additional_submit] =>
print_r($node);
$node->webform['confirmation']='internal:6761';
I usually have 'internal:6761' as a session variable but to help resolve this, I hard coded the confirmation page into the textarea .
It isn't getting to the confirmation page. Any help would be appreciated.
gerald
Comments
Comment #1
quicksketchNo support is provided when writing custom PHP code in the Additional Processing/Validation fields. I would like to note however that you should not use print_r(), since that will immediately print to the page and prevent proper submission of the forms (which is probably why you get the white screens).