Quote:
Originally Posted by Kaas
I had the same issue, It had something to do with the cache or somethign with the templates... I fully modified my xml to reflect WOLTK... Now however I am having an issue with a "security toekn" IE: CSRF, I for the life of me can not figure out where the line is to be modified... And no one has posted a sugestion in the dev forum on it..
If you have any ideas, let me know please...
Thanks
|
This occurs in versions past ... I think 3.6.something or other. Fix:
Edit your wow_form template, find the following:
Code:
<input type="hidden" name="posthash" value="$posthash" />
<input type="hidden" name="poststarttime" value="$poststarttime" />
Add this after:
Code:
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
I'm not certain the sessionhash is necessary, but it works. Tested on 3.7.4, I will not speak to this fix's validity on any other version.