View Single Post
02-14-2010, 02:09 AM
#21
ChrisGwynne is offline ChrisGwynne
Status: Member
Join date: Nov 2007
Location: Wales
Expertise: Development
Software: TextMate, Transmit, Photoshop.
 
Posts: 242
iTrader: 0 / 50%
 

ChrisGwynne is on a distinguished road

  Old

Originally Posted by Spherions View Post
Search the headerinclude template for this:

Code:
var SESSIONURL = "$session[sessionurl_js]";
Look directly under that line, if the following isn't there, add it directly below the above code:

Code:
var SECURITYTOKEN = "$bbuserinfo[securitytoken]";


Then search all templates for this:

Code:
<input type="hidden" name="s" value="$session[sessionhash]" />
And then add this line of code right under the above code for every single instance:

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

So intead of the instances looking like this:

Code:
<input type="hidden" name="s" value="$session[sessionhash]" />

They will look like this:

Code:
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />

On the other hand, you can use the template search engine and replace the code there, by following this screenshot.

Thanks, but like I said previously , it is not a template issue as they all have the correct coding in them.

Reply With Quote