Session variable is a unit of information within a session state. It is maintained across a user's visit within the constraints of the stateless HTTP protocol.

learn more… | top users | synonyms

-1
votes
1answer
10 views

Session not being passed first time on log in

I have a basic log in set up for users to access a document request form. It works fine, except the first time I log in. The first time, I get redirected to the correct page with the $_GET vars ...
-1
votes
1answer
33 views

Is it OK to handle 2 languages using session variable?

To handle two languages, I have done the following and I want to know if it is fine. On all my pages, I have a two links in the menu : <a href="language.php?l=2">English</a> <a ...
2
votes
1answer
44 views

PHP Session lost with different client ip

I have a strange behaviour of sessions in PHP when I connect my client through a balanced gateway with two ip addresses to my hosting server. I correctly initialize a session with a cookie, I set a ...
0
votes
3answers
31 views

php keep session alive for multiple days

I have an app where I would like to enable users to choose to stay logged in for a fairly long period of time, say 3 days similar to google mail, facebook or linkedin. (It is meant to be accessed ...
0
votes
0answers
46 views

Cookies being rejected by ColdFusion server after hot fix(s) installed

After installing the latest ColdFusion Hot Fixes, I'm having issues with existing users returning to my website and keeping them authenticated after logging in. For example, a user returns to the ...
1
vote
1answer
53 views

Making $_SESSION available in controllers

I'm trying to make the $_SESSION global available within the controllers of my framework written from scratch. It's not quite MVC, the presentation layer consists of two parent classes with multiple ...
0
votes
0answers
13 views

Why session in cs class file is null ? (web project .net 2010)

i have a cs class file in a web project in vs 2010. in class,i read and wirte session variables. but my Session property is null! i use this: public static int UserID { get ...
0
votes
1answer
41 views

PHP randomly printing code within php tags

I wrote some PHP/sql with the intention of storing session variables into a SQL table. (I left out some html that tells the user that the php worked.) <?php session_start(); $name = ...
0
votes
0answers
18 views

Node.js - Express.io: Different session saving in different browsers

How and if sessions are correct saved differs in node.js' express.io (all in the latest version) from different browsers. How could I fix this misbehavior? Code: app.get('/home', function(req, res) ...
0
votes
2answers
33 views

Keeping track of user ID with custom authentication

I am currently making an app on apex.oracle.com, and I've been trying to solve this for a couple hours now, but I have no idea how to. Alright, so basically my application has custom authentication ...
0
votes
0answers
20 views

jCart shopping cart library

I use a shopping cart from : http://conceptlogic.com/jcart/ But after arriving at the checkout position, I want to make changes to the process. I want to change it is taking the data contents of ...
0
votes
3answers
43 views

Displaying username using $_SESSION['username']

When I try to display the username of a logged-in user I get 'Welcome, 1' where 1 should be the username of the person logged in. This is my code in the members.php. The commented out line doesn't ...
0
votes
5answers
41 views

How to delete the values of an array by key number. Is it even possible?

I have come seeking the wisdom of all of you wise and smart people! After looking all day yesterday and a few hours today i've given up. I've tried many things but nothing has worked and i've come to ...
0
votes
1answer
30 views

Unable to pass SessionVariable to other flow Mule

I'ma using Mule Community Edition 3.4.0 and I have a problem during setting/getting a session variable between flows. I have a flow in which there is an UntilSuccessful component; when an exception ...
0
votes
0answers
19 views

how to clear cookies and other session information in zend framework via mobile devices

I have a zend framework project with various modules which include mobile module for serving all request from mobile devices. I implemented a long session garbage collection maximum lifetime via ...
0
votes
3answers
44 views

PHP MySQL setting session on submit from table generated by MySQL

So here is goes. I have a website that has a login. Upon a successful login, a session variable called user is created which contains an array of the userid, username, email and so on. Then from there ...
0
votes
1answer
22 views

Remove array of items from session shopping cart

I have an array of items kept in session cart. It gets populated in a table. each row has an index and a button to remove this particular item(items array) from $_SESSION['cart'].. This is the code ...
-7
votes
1answer
49 views

Undefined variable: _SESSTION [closed]

I am trying to create a session using t he following code, but its giving me an error message. Kindly check it. <?php session_start(); $_SESSION['id']= 'Taha'; ?> <Form action= ...
0
votes
0answers
17 views

session is not created after redirect from facebook

I have setup facebook login for my site. I have following app settings: in htaacess file: # # Rules # RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*) ...
0
votes
2answers
52 views

Passing $_SESSION variable between pages

Edit: the session_start() was in the "entire code of initial page," but wasn't showing. I needed another newline. Edit 2: Showing the output of the raw HTML rather than the displayed page. I am ...
-1
votes
1answer
32 views

Creating smart login/my account buttons

How can I make my php website be able to tell if a user is logged in? I want to show a link to "my account" instead of "Login". EX. user goes to home page and clicks "login" on top right corner, ...
0
votes
0answers
49 views

Get Session on models

I read and implement the @Andy0708 answer in this question Zend Framework 2 passing variable to models. When I run the example, $service is not instanceof \User\Model\LanguageAwareInterface, then ...
0
votes
1answer
31 views

set codeigniter session using jquery ajax

i am using jquery ajax function to set codeigniter session, but unable to set and get the response back! $.ajax({ url: site_url+'controller/cart/'+id, dataType : 'json', ...
0
votes
2answers
24 views

Form with login and pasword not working

I'm trying to create a form with login and password but I can not authenticate. I have checked the mysql query and is ok. I think that the problem comes from '$stmt->num_rows();' it returns '0'. PHP ...
0
votes
2answers
37 views

When a $_SESSION variable changes randomly after a page, what is the best way to troubleshoot it?

I have been trying to fix this code for the last 4 hours and cannot seem to get it to work. The $_SESSION variables are set when the user log's in (or creates an account) and are destroyed when ...
0
votes
1answer
33 views

How to use session's property in java application

I have enabled security for my application, and these protected resources cannot be accessed unless the user is logged in. However, I need to run multiple tests inside my java application. I wonder ...
0
votes
0answers
16 views

Session Files Not Working as Intended

I am having trouble with my session script. I include this file called functions.php in every file I need to be secured, however there is no other code outside of this file and outside of my logout ...
0
votes
2answers
62 views

Pass Session Variable with hyperlinkfield in gridview

here is my gridivew: <asp:GridView ID="gvBatters" runat="server" DataKeyNames="playerID" AutoGenerateColumns="False"> <Columns> <asp:HyperLinkField ...
1
vote
4answers
23 views

Set PHP session via cURL - will it set the session for the client or the server?

I have a website that uses PHP sessions to manage logged in users. Another company has asked for their users to sign in to their site and then when they come to my site, the user will automatically ...
0
votes
4answers
50 views

PHP content of session variable

I'm trying to pass a value between 2 pages through a $_SESSION variable then empty it as follows: I'm assigning the session variable with a value on one PHP page: $_SESSION["elementName"]="a_373"; ...
0
votes
1answer
42 views

How can I access session vars of a website from a C# app?

I am developing an app with Xamarin.iOS and I need to log into my website. For now I managed to send a hardcoded cookie to the login page of the website and it logs me in. This is my first problem: ...
0
votes
3answers
45 views

How can I access a session variable set on page from a different page

I've tried looking for information on what I'm trying to do, but the results are not what I'm need to get done. I'm pretty sure there's an answer out there to my issue, but I have no idea how search ...
0
votes
2answers
29 views

Why don't ASP.Net handlers support session by default

I understand that in order for a ASP.Net handler to support session state you need to implement both IHttpHandler and IRequireSessionState, but why isn't session state provided by default? If for ...
0
votes
3answers
52 views

Sometimes Session variables stop working

I've had this twice now. Out of the blue, my log-in system stops working, and by debugging I find out the $_SESSION variable does not survive the log-in process. Then, without an obvious cause, it ...
0
votes
1answer
48 views

php session variable doesnt carry over to redirect

Problem: Session variable doesnt carry over after the redirect. facebook.php (session variable created, and stored) button directs to available.php --> searching.php I'm using header redirect. So ...
0
votes
1answer
33 views

ASP MVC Session security risks

Just wondering, since the session id is stored in a cookie client side, i can easily modify that cookie and change the session id value to that of another user session id. Allowing the first one to ...
0
votes
4answers
85 views

PHP session variables not saving between pages

I know this might be a duplicate question, but I can't seem to find an answer to my specific problem. I have 3 PHP files. signin.php gets users data and passes it to signin_auth.php. signin.php then ...
0
votes
0answers
24 views

share the session between rails and php for checking if the user is authenticated?

I have a ruby on rails application and now i have to include a php app along this with the single sign in. I want to login and pass the session value to the php code so that it can check if the user ...
0
votes
0answers
26 views

Getting “Severity: Notice” while fetching value from $_SESSION

I have stored some value in $_SESSION['id'] and trying to retrieve it and in the process I am getting this error Severity: Notice --> Undefined index: id path_of_file Quite surprisingly when I ...
0
votes
4answers
37 views

Storing variables using $_SESSION

What's the correct way of storing a variable within a SESSION variable? I'm trying to do this but I don't think I'm doing it right: $_SESSION['queryID'] = $stID // I want to use $stID even after the ...
0
votes
2answers
54 views

PHP Session in Class

<? session_start(); class DB_MSSQL { protected $Host; protected $Database; protected $User; protected $Password; protected $Link_ID = 0; protected $Query_ID = 0; protected $Record ...
1
vote
6answers
53 views

Session variable can't be updated

Whenever i try to update a session variable that has been previously entered it won't update. Heres an example on what i'm talking about: protected void Page_Load(object sender, EventArgs e) { ...
0
votes
1answer
42 views

Checking multiple session variables if they are null

I am using the following to check a number of session variables: if(MySession.Current.mpr != null && MySession.Current.mpr1 != null && MySession.Current.mpr2 != null && ...
1
vote
2answers
124 views

Spring MVC - difference between HttpSession.setAttribute and model.addObject

I am trying to learn Spring MVC recently. It seems that i did not understand well the functionalities of @ModelAttribute annotation and HttpSession. @SessionAttributes({"warenkorb", "count"}) public ...
0
votes
1answer
41 views

Flask client-side sessions

Starting to learn Python's Flask web app framework, still on the learning curve, so please bear with me. I am wondering how appropriate are the client-side sessions for secure web application ...
2
votes
1answer
36 views

PHP declaring global and session variables

I'm been using PHP5.3.8 for a while now and I've just come across a new error for me; Warning: Unknown: Your script possibly relies on a session side-effect which existed until PHP 4.2.3. Please ...
0
votes
1answer
50 views

Asp.net Allow access to Admin Only

I have a admin page in the secret folder and it should only be accessed by an admin. The way I attempted was creating a session and check if the logged in person is admin. This failed to recognise the ...
0
votes
2answers
39 views

PHP retrieving username of current user on page and then using it in a sql query

I am making a website where a user has to log in/create an account and then they can type in terms to search on twitter on their own personal dashboard. To make sure they are logged in on every page ...
0
votes
2answers
279 views

Pass Session Variable to another page Javascript

I guys, I'm creating a VB.NET application, and this is the first time that I used Session Variables. What I want to do is to pass the session variable from a page (first.aspx) to another page ...
0
votes
1answer
27 views

Open file from a php document, and close it from another?

I am trying to do the following: Open a file, say "myfile.json" from a php- let's call it "utils.php"; Use it in other php pages; close it from another php. I have tried to include "utils.php" in ...

1 2 3 4 5 27