Ask a Question related to Macromedia ColdFusion, Design and Development.

  1. #1

    Default CFLOCATION in CFMX

    Hopefully someone can answer this easy question. In CF5, I have a redirect
    using a CFLOCATION like this:

    <cflocation
    url="http://somewebsite.xxx.com/pls/phone/checkphone.searchfor?id_in=#session.gc
    id#" >

    This sent the search request with only the 'gcid':
    [url]http://somewebsite.xxx.com/pls/phone/checkphone.searchfor?id_in=YYYY[/url].

    In testing CF6.1 with the updater, the same code sends

    [url]http://somewebsite.xxx.com/pls/phone/checkphone.searchfor?id_in=YYYY&CFID=706&CF[/url]
    TOKEN=78198448
    including the cfid and cftoken.

    I have tried many different changes, including: adding the '"addtoken=No" to
    the cflocation (making sure that in the cfapplication I have
    clientManagement=Yes), checking that I have the 'latest and greatest' updater
    installed, and I am sure that cookies are turned on). Any ideas on how to make
    sure that the cfid and cftoken are not appended?
    :confused;

    Libby Guest

  2. Similar Questions and Discussions

    1. CFlocation.
      I?m interested to know whether it?s good practice to write long CF coded pages or segment CF code into several different CF pages and use cflocation...
    2. cflocation
      Does anyone know a way to use cflocation to load a page into a specific target within a frameset? I am working with multiple framesets and I am...
    3. cflocation broken in latest CFMX 6.1 hotfixes?
      I recently upgraded two of our CFMX 6.1 (updater1) Servers with the newst hotfixes. Since then the cflocation tags is broken, cause of now it needs...
    4. Problem with cflocation in CFMX 7
      I use cflocation to pass variables in a URL that sometimes contain a carriage return. To make sure the URL remains valid, I use URLEncodedFormat....
    5. CFLocation and SSL
      I am moving someone on a site from a form on an http or https. I post to a page that queries a DB and then redirects based upon the form post. The...
  3. #2

    Default Re: CFLOCATION in CFMX

    Once again, my stupidity fails me! After contacting MacroMedia support, I was
    able to surmise that I didn't have all the update(rs) applied correctly. Once
    I got that resolved, everything looks great!

    Libby Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139