Max,

I don't necessarily want cfid/cftoken to be indexed by search engines.
However if I do want any kind of cookie-less session management on the site
then I MUST have cfid/cftoken combos on every form submit and url on the
site otherwise when a user clicks on a link or submits a form that doesn't
have the CFID/CFTOKEN combo in it we can't find their session. Or worse a
new CFID/CFTOKEN combo is assigned to them and I just lost their session
information. If you have cookies enabled it's no big deal. But a lot of
people are paranoid and I have to accomodate their needs which means sending
CFID/CFTOKEN on EVERY single url and form submit on the page.

ed




-----Original Message-----
From: Max Paperno [mailto:[EMAIL PROTECTED]]
Sent: Saturday, February 03, 2001 2:42 AM
To: Fusebox
Subject: RE: Search Engine safe urls and CFID/CFTOKEN



So, just one question... why would you want your CFID/CFTOKEN to be indexed
by a search engine?  Or for that matter why would you want it to show up in
traffic analysis reports?  Seems like asking for trouble.

Cheers,
-Max



>-----Original Message-----
>From: Edward Chowdhury [mailto:[EMAIL PROTECTED]]
>Sent: Friday, February 02, 2001 6:40 PM
>To: Fusebox
>Subject: Search Engine safe urls and CFID/CFTOKEN
>
>
>Hi all,
>
>My site has a mixture of search engine safe and
>regular urls. When trying to
>login without cookies enabled I find that the CF
>server finds my session
>only if I try a regular url but not if I use the
>search engine safe urls. I
>assume this is because when the CF application server
>sees
>cfid=234&cftoken=564577 it knows to find the
>appropriate session from the
>registry or memory. However when it sees
>cfid/234/cftoken/564577 it just
>ignores it and doesn't bother retrieving the session
>information attached to
>the CFID/CFTOKEN combo. My question is how do I tell
>Cold Fusion to look for
>the session info.
>
>I've tried manually setting the following combos in my
>app_globals.cfm right
>after CF_FormUrl2Attributes
>
><CFIF IsDefined("attributes.cfid") and
>IsDefined("attributes.cftoken")>
>        <CFSET client.cfid = attributes.cfid>
>        <CFSET client.cftoken = attributes.cftoken>
>also:
>        <CFSET session.cfid = attributes.cfid>
>        <CFSET session.cftoken = attributes.cftoken>
>and:
>        <CFSET url.cfid = attributes.cfid>
>        <CFSET url.cftoken = attributes.cftoken>
></CFIF>
>
>What else can I do to tell Cold Fusion that these
>variables exist??
>
>thanks,
>
>edward chowdhury
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to