I have a multi-page form and on the first page are textfields for a user to provide his/her first and last name.
On the form's next page is a markup component with a message asking the user to indicate their acceptance of our terms and conditions. Within the markup, I am trying to insert the user provided first and last values name from the previous page.
There are tokens in the markup configuration area and one category is Webform Data. I am successfully using data from the Date category buy all my attempts to correctly configure the Webform Data token to insert the users first and last name from the previous page results in the following errors:
The specified file temporary://filemolv7P could not be copied, because the destination directory is not properly configured. This may be caused by a problem with file or directory permissions. More information is available in the system log.
Notice: Undefined index: webform in webform_rules_tokens() (line 213 of /var/www/mysite/sites/all/modules/contrib/webform_rules/webform_rules.module).
Warning: array_keys() expects parameter 1 to be array, null given in webform_rules_tokens() (line 213 of /var/www/mysite/sites/all/modules/contrib/webform_rules/webform_rules.module).
Warning: in_array() expects parameter 2 to be array, null given in webform_rules_tokens() (line 228 of /var/www/mysite/sites/all/modules/contrib/webform_rules/webform_rules.module).
I am trying such tokens as [webform:first_name-value-html]
.
The first error stating there is something wrong with the permissions can't be right because everything about my site works with the exception of this issue.
I would appreciate any help.