
07-14-2011, 08:50 PM
|
 |
|
|
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by thunderclap82
I got my vB page working. It's a newsletter subscription form, real simple. A user enters an email address, enter the security code and that's it. Problem is vB bounces back with
"Your submission could not be processed because a security token was missing."
If I turn off CSRF_PROTECTION to FALSE the problem goes away, but I'm leery of disabling anything that is titled PROTECTION.
I found some posts saying that I should add
Code:
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
to my template. That doesn't seem to fix the problem though. Any thoughts?
(If this should be a new thread then I apologize for doing it here. Feel free to move if necessary.)
|
In vB4 it would be this:
Code:
<input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />
|