Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
bdoh #1
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
-
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... -
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... -
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... -
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 -
Client Variables
Help Needed, Can any one please explain why do we loose client variables when we delete cookie variables from the browser ? -
kenji776 #2
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
-
BKBK #3
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



Reply With Quote

