Security Token Issues

Webdude

New Member
I am using this theme:
Code:
http://vbskinworks.com/forum/index.php?styleid=387

and when I try to delete more than 1 thing at a time I keep getting:

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 have tried hoxxy's fix:
........................................................................................................
Security token errors
........................................................................................................
In your Admin CP under Styles & Template select Search In Templates...

Search for:
HTML:
value="$session[sessionhash]"

In every template this occurs in add this line directly after the line containing the above, if it doesn't exist already:

PHP:
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />

Save the template.

but no difference has been made at all.

Please can someone suggest to me what it is thats causing this and how to fix it, also if you could give me the 3.7.3 xml for that theme im sure it would help alot too.

Thanks
 

Itsuki Minami

New Member
maybe the cookies or the cache? have you tried erasing them maybe your forum is cached so you only get the same thing again and again
 

L-Sama

New Member
maybe the cookies or the cache? have you tried erasing them maybe your forum is cached so you only get the same thing again and again

What u say man?

u crazy lol
 

Itsuki Minami

New Member
<-<U err he's just a little noobish xD is a friend of mine don't take hime seriously D: and sorry i'm actually advicing him ( i'm talking about L)
 

K-Pax

New Member
Template footer?

Code:
<!-- auto DST correction code -->
<form action="profile.php?do=dst" method="post" name="dstform">
	<input type="hidden" name="s" value="$session[sessionhash]" />
	[color=Red]<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />[/color]
	<input type="hidden" name="do" value="dst" />
</form>
<script type="text/javascript">
<!--
	var tzOffset = $bbuserinfo[timezoneoffset] + $bbuserinfo[dstonoff];
	var utcOffset = new Date().getTimezoneOffset() / 60;
	if (Math.abs(tzOffset + utcOffset) == 1)
	{	// Dst offset is 1 so its changed
		document.forms.dstform.submit();
	}
//-->
</script>
<!-- / auto DST correction code -->
 
Top