Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default Using <cflogin>

    Is there a way to use CFLOGIN without requiring cookies? If so, how?
    ckainc Guest

  2. Similar Questions and Discussions

    1. cflogin
      Hi, I'm using cflogin to build a simple application. If a user forgets their password, then they get asked a security question and if they answer...
    2. cflogin problem
      I am using coldfusion authentication architecture to get the users logged in to my system. Authentication is working ok but it is giving me...
    3. Doesn't ANYBODY know anything about cflogin???
      :Q Do the people on this forum not know anything about cflogin OR is it they do not wish to share??? I posted a ? a week ago and I am still waiting...
    4. cflogin confusion
      Hi I need some help. Ifind lots of tutorials for simple login and for using cflogin in the Application...BUT nothing about using cf_login for single...
    5. cflogin HELP
      Hi I need some help. Ifind lots of tutorials for simple login and for using cflogin in the Application...BUT nothing about using cf_login for single...
  3. #2

    Default Re: Using <cflogin>

    Because HTTP is connectionless, it's not possible, I'd say. And the docs tell
    the same:

    From Macromedia Coldfusion Livedocs: (MX 6.1, 7)
    --
    You can implement a limited-lifetime form of ColdFusion security if the user's
    browser does not support cookies. In this case you do not use the cflogin tag,
    only the cfloginuser tag. It is the only time you should use the cfloginuser
    tag outside a cflogin tag.

    Without browser cookies, the effect of the cfloginuser tag is limited to a
    single HTTP request. You must provide your own authentication mechanism and
    call cfloginuser on each page on which you use ColdFusion login identification.
    --


    Fernis 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