Ask a Question related to Macromedia ColdFusion, Design and Development.
-
slanza #1
List all Current Session Variables
Hi,
Is it possible in CF 5 to list all session variables currently assigned on a
web site.
For instance, if I assign a sesson variable that is a list of item numbers and
a session variable that is a list of quantities, can I display these two
variables for ALL users on the site with these variables assigned?
Thanks,
Steve
slanza Guest
-
#39833 [NEW]: Session variables overwritten by local variables (register_globals=off)
From: sup1382 at accedo dot es Operating system: OpenBSD 3.9 PHP version: 5.2.0 PHP Bug Type: Session related Bug... -
#39447 [NEW]: Want to optionally handle apc_upload_progress variables using session variables
From: krudtaa at yahoo dot com Operating system: All PHP version: 5.2.0 PHP Bug Type: Feature/Change Request Bug... -
Get A List of Current Sessions
I am writing an application and I would like to be able to go to a page and get a list of every user that has a current session... Is this possible?... -
[PHP] How are variables called in current php?
Wei Wang wrote: should be $REQUEST_METHOD == 'POST' why don't you just use the $_REQUEST array instead? -- http://www.radinks.com/upload... -
Session problem when setting session variables in files that are in different directories
I am running PHP 4.3.0 on a WinXPpro machine and I recently got problem with sessions. What I am building is a loginsystem and I need to save... -
jdeline #2
Re: List all Current Session Variables
Session variables are a collection, so you could do something like the following:
<CFOUTPUT>
<CFLOOP COLLECTION="session" INDEX="i">
#session#<BR>
</CFLOOP>
</CFOUTPUT>
jdeline Guest
-
DCS Admin #3
Re: List all Current Session Variables
or you could just <cfdump var="#SESSION#">
DCS Admin Guest
-
JMGibson3 #4
Re: List all Current Session Variables
He wanted them for every session active on the machine, not just for debugging
within a single session.
I'm interested also. If possible, for me(since all my apps have a field
called Session.CurrUser ), it would solve the old who's currently logged on
problem without having to get into the typical application structure
login/logout solution which I've never bothered to implement (too costly, too
many applications).
So basically the question is, any way to get a list of and sweep all Sessions
on a machine, wherever they're hiding (Memory, Registry)?.
If so, we could all easily parse out the App from left side of the common
field, Session.SessionID, and be in business, knowing the fields for each of
our Apps.
JMGibson3 Guest



Reply With Quote

