Newbie Cookie Script

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Newbie Cookie Script

    As I am learning CF, I am writing my own tutorial for practice.

    Right now I'm working on a form that links to these forums for searches. My
    forum is setup with a textbox (cfsubject) and radio buttons to 6 of the topics
    here (getting started, general discussions, adv.... etc.). I have it setup to
    an action page which refers me to these forums by topic chosen with the radio
    buttons and search criteria in the text box.

    The problem I'm having is that macromedia.com requires a cookie. So when I
    clear my cache, i get sent to something such as this...

    [url]http://www.macromedia.com/error/404.cfm/?errorno=3&CFID=2183993&CFTOKEN=ead2c2ca[/url]
    20b97aff-FAA827AE-07E7-3211-9F3617268B3D31CA&jsessionid=9630ed4114eb7c5b2257


    But when I open up to the forums... close my browser.. then run from my
    tuturial, the previous connection allows me to execute my search criteria fine.

    I'm guessing I need some sort of script for a cookie, but since I'm a
    newbie... I'm stuck and don't wanna move on till I get it.

    Any help appreciated...

    disch Guest

  2. Similar Questions and Discussions

    1. Newbie Q: How to call another script ?
      How can I call another script from my script? I can see how to call pre-defined procedures, like MySQL_Connect or so, but I want to call my own...
    2. Multiple Variables set in a cookie? NEWBIE
      Hi all, Ok here is my situation; We have a form that gathers some information from a user ( name, email, street address), plus some samples of...
    3. Newbie ASP script issue
      Hi all, I have a problem with my ASP script below and the error message is: "The maximum amount of time for a script to execute was exceeded. ...
    4. newbie cookie - questions
      Hello all, My client wants the user to go to a "different" homepage when they return to the site, or if they are a page-in, and return to the...
    5. ASP -> Perl Script HELP ..NEWBIE>.
      kalusalu graced us by uttering: You'll want to learn Perl. Not many of us program in PERL. But if you'd like it converted to Perl,...
  3. #2

    Default Re: Newbie Cookie Script

    try using <cfhttp> along with passing <cfhttpparam type='COOKIE'> you will
    have to get the cookie name(s) it is expecting, and you can do this by
    prompting for cookies in IE and then click Details. You can get the full
    syntax for these tags in CFDOCs.

    gwgiswebmaster 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