PDA

View Full Version : Token in url string error


fzellers
08-13-2008, 08:18 PM
When I look at my site from a new computer (a computer that has not previously logged on to the site) I get a weird token on the end of the url string after I click on menu item. I have to click on the menu item a second time to access the selected page.

I have changed my default forms page to forums.php in the admincp and sent my vbadvanced_cmps_index.php to my index.php page.

I am running the latest version of CMPS.

Any Suggestions or fixes ???

Brian
08-14-2008, 10:54 AM
That's the sessionid which is used to track guests. If it's taking you to an invalid URL then it sounds like you've modified the link incorrectly.

Our Sponsors
 

fzellers
08-14-2008, 12:30 PM
This is the link in the header template.. I am thinking I may not need the "$session[sessionurl_q]" ??


../index.php?pageid=Schedule$session[sessionurl_q]"

Brian
08-14-2008, 12:42 PM
Use $session[sessionurl] (without the '_q') instead. The _q is only needed when linking to a .php file with no query string on the end (index.php vs index.php?pageid=whatever).