Sorry for bumping this thread again, but I can't get it to work and I need it to be done soon
I found another thread with the same problem (sort of...) in witch someone told him to add:
PHP Code:
<input type="hidden" name="s" value="{vb:raw session.sessionhash}" />
to the form.
So did I, but with no success.
Anyone?
Edit: When I looked in the source, it seems as neither the securitytoken nor the sessionhash is implemented correctly on my page:
<input type="hidden" name="s" value="{vb:raw session.sessionhash}" />
<input type="hidden" name="securitytoken" value="" />
Clearly, I use the "{vb:raw session.sessionhash}" wrong, but why isn't the token generated?
Edit 2:
I solved the sessionhash with:
PHP Code:
<input type="hidden" name="s" value="<?php echo $_COOKIE['bb_sessionhash'];?>" />
But I still have problem with the securitytoken.