Log in

View Full Version : 3.7.3 Security Token Error when deleting multiple posts


triplsec32
09-18-2008, 06:14 PM
When I try to delete multiple posts on my forum which is running version 3.7.3 I get this error:

Your submission could not be processed because a security token was missing.

If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error.

I already tried changing
In includes/adminfunctions.php :

Code:
echo "<input type=\"hidden\" name=\"adminhash\" value=\"" . ADMINHASH . "\" />\n";Add below:

Code:
echo "<input type=\"hidden\" name=\"securitytoken\" value=\"" . $vbulletin->userinfo['securitytoken'] . "\" />\n";

snakes1100
09-18-2008, 06:21 PM
disable your hacks 1 by 1 until it goes away, your missing a token for a hack u added most likely.

triplsec32
09-18-2008, 06:59 PM
I haven't added any hacks... only my theme

snakes1100
09-18-2008, 07:00 PM
If its a custom theme, then contact the person who designed it and get their support.

Do you get the error when using a default style?

triplsec32
09-18-2008, 07:18 PM
it is the theme... with the default style it works

Thank You!

snakes1100
09-18-2008, 07:19 PM
You gonna have to have the author fix it or you will need to add the security token html lines to the templates its occurring on when the post request is issued.

Opserty
09-18-2008, 08:52 PM
Make sure you undo the changes you made to adminfunctions.php too. ;)

triplsec32
09-18-2008, 09:06 PM
Make sure you undo the changes you made to adminfunctions.php too. ;)

ha yea i did that already :)