• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Avoiding to save cookie file on the client's disc

New Here ,
May 15, 2006 May 15, 2006

Copy link to clipboard

Copied

Hello folks,

I don't use client variables in my application, but app. has saved client-cookie file on my HDD. For example:
CFID
31987
www.site.com/
1536
3950493312
31986928
4097529456
29784164
*
CFTOKEN
68660018
www.site.com/
1536
3950493312
31986928
4097629456
29784164
*

I don't want client/visitor can conclude that I'm using CF. CF files in the app. have not cfm or cfc extension, of course.

How can I prevent the app. to save any cookie files on clients machine? Is it possible?

Thanks,
d.
TOPICS
Advanced techniques

Views

255

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
May 15, 2006 May 15, 2006

Copy link to clipboard

Copied

That cookie is used to track sessions. You can disable the cookie in the <cfapplication> tag in your Application.cfm file at the root of your website.

http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-pa3.htm#wp1097308
<cfapplication setClientCookies="No">

If you need sessions, but don't want to use cookies, you will need to manually append #URLToken# to the end of all URLs on your site (form posts, <a href> links, javascript redirects, etc).

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 16, 2006 May 16, 2006

Copy link to clipboard

Copied

LATEST
Hi Kronin555,

Thanks for the answer.

d.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation