Questions tagged [sessionid]

A session ID is a unique identifier that relates session data to a specific user.

A session ID is a unique identifier that relates session data to a specific user.

In an HTTP context, it is usually stored in a cookie and sent to the server on every request. The server uses the session ID to load the data that was persisted in the session.

The lookup process on the server can be either file-based (where the session ID is used as part of the file name), or from a database (where the session ID is used as the primary key).

636 questions
-2
votes
1 answer

Object moved to here in response of Jmeter request

I am new Jmeter, I have recorded a JMeter script. When I am playing login request for my website in response I am getting "Object Moved to here" instead of getting expected result. I have created Cookie Manager & Cache Manager.
-2
votes
1 answer

Symfony2, FOSUserBundle, authentication with cookies disabled

How I can authentication in Symfony2 without cookies in a brouser? How can generate some like this http://some.site/hello/roman?PHPSESSID=9ebca8bd62c830d3e79272b4f585ff8f or this http://some.site/9ebca8bd62c830d3e79272b4f585ff8f/hello/roman or some…
r0ma
  • 133
  • 1
  • 5
-2
votes
1 answer

CodeIgniter delete specific session by ID

Need to delete session for specific user (when he was banned). I know that session_id regenerates every 5 minutes. We are not storing sessions in database, probably just session_id for each user. Should I update db every time session_id changes or…
veg
  • 1
  • 4
-2
votes
2 answers

Get UserId from the Session Id and Server URL

I have a requirement, where I will be getting the Session Id and Server URL(parameters of a webservice method). Say like this: Session ID :…
bsnitin
  • 1
  • 1
  • 1
-3
votes
2 answers

How to start a process in session 1 without using a service?

I am using Windows 7 and I want to execute any application in session 1 from a C# code. Do I need to use a service to launch an application in session 1 from C# code?
Damaelios
  • 23
  • 3
-5
votes
1 answer

Get Session ID of a link and produce Dynamic page PHP

What i wanna do is create two hyperlinks and both links take them to xx.php. so what i want is if someone clicks link 1 it shows them echo "hello"; and if link two is clicked then it shows echo "Hi"; but both statements are on something.php Regards,
djEthen
  • 29
  • 1
  • 1
  • 7
1 2 3
42
43