PROBLEM WITH CLIENT VARIABLES - PLEASE HELP!

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

  1. #1

    Default PROBLEM WITH CLIENT VARIABLES - PLEASE HELP!

    What does the error - A800 UNDEFINED IN CLIENT mean? We seem to be getting this
    error on certain pages. The mysterious thing about it is that this error only
    seems to be happening on one or two computers in our department! We've tested
    the same pages a few other computers throughout the department and they seemed
    to be working fine. Please help! Thanks.

    bdoh Guest

  2. Similar Questions and Discussions

    1. Debugging and client variables
      I have a coldfusion page search page that works great when the debugging window is available and docked. When the debugging pane is docked, the...
    2. Losing client variables
      Hi All I'm running CFMX7 on a win 2003 server, fully patched. Every so often CF seems t lose track of client variables, the client variables...
    3. Locking Client Variables?
      Hi, We are starting to implement CFMX7 and we are considering changing some of our state variables to CLIENT vars. We lock our sessions vars...
    4. Limit on Client Variables
      Is there a limit on the number of client variables in coldfusion 5 when I'm using datasource as the client variable storage
    5. Client Variables
      Help Needed, Can any one please explain why do we loose client variables when we delete cookie variables from the browser ?
  3. #2

    Default Re: PROBLEM WITH CLIENT VARIABLES - PLEASE HELP!

    Although I cannot tell you what that error means becuase i have no idea, you
    may want to look further in depth about the differences in the computers in
    your dept. Check to see that the security levels (if using IE) are at a
    appropriate setting, that cookies are enables, that firewalls arn't set up to
    block needed traffic from the site, that javascript is enabled, that the
    browsers are updated, and that sort of thing. I think it might be important to
    figure out why the problem happens, that might give you a better idea of what
    it IS, so you know how to fix it. So yeah... just look for all the differences
    you can, then one by one set them to match a working computers, and eventually
    the problem should reveal itself hopefully. Good luck.

    kenji776 Guest

  4. #3

    Default Re: PROBLEM WITH CLIENT VARIABLES - PLEASE HELP!

    >... What does the error - A800 UNDEFINED IN CLIENT mean?

    Quite likely an oversight in your Coldfusion code. It might have to do
    with the client-details you use at the one or two computers, rather than
    with the computers themselves.

    I suspect that the variable, A800, in the client scope, was undefined.
    If it is indeed so, then the correction is simple. Do something like this
    at the place where you set the variable

    <cfparam name="client.theVarName" type="string, boolean, etc[pick one!]"
    default="default_value">


    BKBK 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