Thank's a lot for hint. It works now.

Taras

> Its the CFAPPLICATION tag that looks for the cfid and cftoken in the URL,
> but if you're using the search/engine/friendly ones, they won't be
> recognised as URL variables.
> But, if you make sure you call formURL2attributes _before_ CFAPPLICATION
> then you can scope any attributes.cfif and cftoken to the URL scope, and
> bob's your uncle:
>
> <CF_FormURL2Attributes>
>
> <CFIF IsDefined('attributes.cfid')>
>     <CFSET URL.cfid = attributes.cfid>
> </CFIF>
>
> <CFIF IsDefined('attributes.cftoken')>
>     <CFSET URL.cftoken = attributes.cftoken>
> </CFIF>
>
> <CFAPPLICATION
>         NAME="MyApp"
>         APPLICATIONTIMEOUT="#CreateTimeSpan(1,0,0,0)#"
>         SESSIONTIMEOUT="#CreateTimeSpan(0,1,0,0)#"
>         SESSIONMANAGEMENT="YES"
>         SETCLIENTCOOKIES="no">
>
> Doing this will also allow you to send the cfif and cftoken in hidden form
> fields...
>
> Bert
>



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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