Tagged Questions
The php-session tag has no wiki summary.
95
votes
13answers
17k views
PHP Session Security
What are some guidelines for maintaining responsible session security with PHP? There's information all over the web, so it's about time it all landed in one place!
6
votes
1answer
214 views
Codeigniter sessions class w/ database storage option not optimized?
I use codeigniter's session class with the option to store session data in a database. This is an example of the select query that runs for every user request to retrieve a session:
SELECT *
FROM ...
4
votes
2answers
358 views
Sessions in PHP5 - built-in sessions or not?
The background:
I am in the starting grounds of a new project built on PHP5.3. I've just started to look into ways of handling sessions in a way that initially lets me save the sessions to the ...
3
votes
5answers
243 views
How can i stop an AJAX call keeping a PHP Session alive
I have an authentication system on my site using CakePHP. It uses PHP Sessions for this.
What i have in place is an AJAX call (within a setInterval running every minute) to a function which checks if ...
3
votes
5answers
126 views
Sharing session instances in PHP
I want to use session in PHP. But its showing some problems in my scenario.
I want to share same session in 3 different PHP files.
./sessionTest/testing1.php
./testing2.php
./testing3.php
if i ...
2
votes
5answers
82 views
Can I unset with wildcard?
Can I unset with wildcard?
I have a bunch of $_SESSION variables which all start with the same prefix. Rather than explicitly unset all, can I use a wildcard?
(the prefix remains the same, but ...
2
votes
1answer
67 views
PHPSESSID appears in form arbitrarily
I have a login form written in PHP and each time I start the browser and go to the respective page, the first field of the form is this:
<input type="hidden" name="PHPSESSID" ...
2
votes
2answers
143 views
PHP Session help
I have a session that works perfectly expect for one, if I close the browser the session gets destroyed however if I close the current tab and then go back to the site, the session still exists, how ...
1
vote
1answer
118 views
PHP Redis Session not saving
EDIT
I tried debugging this with xdebug and netbeans. It's weird that the exports will work during the debug session if I put in some breakpoints. However, with no break points, a more realistic ...
1
vote
1answer
50 views
Is it better to use session_set_save_handler?
Is is better to use session_set_save_handler and set our own mechanism or let PHP handle it?
If yes/no why?
I do not want to store the session in a DB because of the overhead in Input/output.
I am ...
1
vote
2answers
47 views
Initialize Zend_Session with already started session
Could anybody help me to understand this issue?The problem is:
I have a two versions of my application that work in parallel. This means that I have sessions already started in one application that I ...
1
vote
1answer
33 views
PHP Sessions strange behavior
I'm currently facing a strange problem in PHP.
I have two scripts, index.php which is the "homepage", and ajax.php which is a script called by an AJAX request.
index.php
session_start();
if ...
1
vote
2answers
71 views
in php mysql_fetch_array() and mysql_fetch_row() not working on same variable
When I am fetching the row it not fetch array I want to know if I want to display the user name in session what should I have to do. This is the code I am checking for user name and if user name is ...
1
vote
3answers
49 views
Simple PHP Session Question
I have a login.php file that grabs from index.html's username and password form. The login.php checks to see if the user exists, logs them in, and meta directs them to the home page of the site. I ...
1
vote
3answers
81 views
High-performance centralized PHP session storage
My application can store up to dozens or even low hundreds of KB of data in the session. I'm currently storing PHP sessions in MySQL blobs, and traffic volume is now putting session-related queries on ...
1
vote
1answer
307 views
Session problem in Kohana 3.x
I am developing a facebook app. in Kohana 3.x . Now client requirement is to make Sessions GET based. but it is having problem . I am using
ini_set( 'session.use_cookies_only', false );
ini_set( ...
1
vote
1answer
318 views
PHP Session with GET having problem with IE8 and Facebook application
I am developing a facebook app. I was using Sessions with cookies and it was all working fine. Suddenly IE8 has some errors with cookies. It was blocking my site because it was in iframe. So I came to ...
1
vote
1answer
132 views
best way to use session without cookies via ge
I am using PHP, for some reason and I want to switch sessions from using cookies to string, so what is best way to use Sessions with cookies by using GET variable? Should we need to use session id in ...
1
vote
3answers
127 views
Permanent table, temp tables or php session?
My web app offers personalized recommendations. When a user starting to use it, about 1000+ rows are being inserted to one big recommendation table, correlating with other tables in the database. ...
1
vote
2answers
218 views
Maximum execution time exceeds due to session start?
I am getting following error when I use Zend_Session::Start() in my bootstrap file.
Maximum execution time of 30 seconds exceeded in G:\wamp\library\Zend\Session.php on line 480
On line 480 of ...
1
vote
3answers
151 views
Unable to set session variable with $_POST value
setting this variable gives an error;
I tried every possible way but I'm unable to debug :
>1. $_SESSION[clas = $_POST['clas']]; ERROR Parse error: syntax error, unexpected '=', ...
1
vote
3answers
85 views
what action to do with form crf attack?
i made a method to prevent from "form crf attack" by saving random token value in session and form , and in "post action" i compare the two values , .. i puted the comparison function at the top of ...
1
vote
3answers
52 views
Splitting background processing
I am not a PHP expert, so please bear with me.
If I have a page (start.php), which contains a textbox and a submit button, which the user should see.
How do I direct the serverside to a specific php ...
1
vote
4answers
265 views
Destroying session to logout, but user still logged in until page refreshes
I'm using the following code to log users of an application out:
session_start();
setcookie (session_id(), "", time() - 3600);
session_destroy();
session_write_close();
header("Location: ...
1
vote
1answer
54 views
Are Sessions faster than running a processor intensive function?
I am using the native Wordpress function wp_nav_menu() to create my site's navigation menus. This function really takes a long time to work, especially if the navigational menus is large like mine is. ...
1
vote
1answer
155 views
PHP login takes two attempts to work
I've got a really simple login script using PHP's sessions to limit access, but I'm having a really peculiar issue. The login always fails on the first attempt, even with correct credentials, but ...
1
vote
1answer
563 views
Java and PHP sessions
I'm creating a Java applet which communicate with my PHP website by requesting pages and retrieving their contents. It works pretty well, and it allows my applet to use PHP sessions.
However, I tried ...
1
vote
4answers
267 views
Starting global session to all pages
How can i start a session in PHP which will be global to all my pages. I don't have access to the php.ini file. So session.auto_start = 0 in my php.ini will not be a solution for me.
Thanks.
1
vote
2answers
315 views
(PHP - Session) How can user restrict to access direcly to controller.php , only allow access from view.php?
I am a beginner in PHP.
How can I restrict user access to controller.php and allow access to it only via view.php?
My proposal:
I don't know if this is proper, or how to avoid robots accessing it ...
1
vote
5answers
897 views
Allow one session only at a time
I would like to make my website to allow only one session at a time. For example, let say user has login to my website on firefox, if the user login again to another browser like opera on the same ...
1
vote
1answer
145 views
Writing in two sessions from the same file (PHP)
I want to make it possible for the administrator to log in as a fontend user from the backend. Right now I'm using two sessions (sessions with different names), one for the admin and one for the ...
1
vote
1answer
180 views
PHP Complete Object Graph not stored in Session
I have read other posts on stack overflow on the issue but my question is a little different..
When storing an object in the Session does PHP save the Complete Object Graph in the session?
I am ...
0
votes
0answers
24 views
How to handle nested sessions in PHP
I have a library and a app that uses this library. I want to start a session in app and later library has its own session start and destroy. But I dont want the library session to affect my session in ...
0
votes
0answers
13 views
What's best practice for handling facebook connect session?
Currently, I develop the back-end of a new social network startup in php. That web site uses facebook-connect. I am using facebook php sdk for handling facebook registration and facebook login
I have ...
0
votes
0answers
27 views
facebook session issue
When I comment from my website using this session code it's not working. If I remove this code it updates on facebook. This is my code for session:
session_start();
$code = $_REQUEST["code"];
if ...
0
votes
1answer
60 views
PHP Sessions w/ AJAX: Login Process
Can somebody explain to me where I'm going wrong with this login setup? I've outlined the process below and included the code I am using. Everything works except for the fact that session variables ...
0
votes
0answers
49 views
Make AJAX PHP script use same session as main page
I have a main page that starts a PHP session, which creates session ID #1. I check this with session_id(). I want to access these session variables from a PHP AJAX script. To test this i just simply ...
0
votes
1answer
77 views
How to use cURL cookie in PHP Sessions
Is it possible to load a cookie used by cURL into a PHP Session? If so, how would I go about doing this?
Can I load the stuff from the cookie into a PHP Session variables, then delete the cookie and ...
0
votes
4answers
51 views
How to access a variable across sessions in PHP?
This may sound a bit catchy, but i want to access variable across sessions.
I want to store a variable in a session and want to access it even after i navigate away from my website and come back some ...
0
votes
1answer
60 views
How to change phpsessid in java?
I have a java code that submits a multipart form on a site where I need to register. I've tested my script on various scripts and it works when the cookies on the site look like user=username or ...
0
votes
1answer
81 views
Redirecting Mobile in Wordpress with full site link on mobile
I have a Wordpress site that has custom templating, when a user arrives to the domain on a mobile I wish to redirect them to a mobile version on subdomain e.g
full site : www.example.com
mobile site ...
0
votes
1answer
19 views
Is it ok to set session variable after user creates account, or should I make them login?
After a new user creates an account, can I set a session['id'] or should I make them login to set it?
I'd like to set the session so they can begin setting up the app before waiting for the email ...
0
votes
3answers
104 views
PHP session hijack
I've been using $_SESSION superglobal a lot and heavily.
However the situation is like this:
Once the user is logged I want to keep track of his ID(MySQL table). I can easily
insert the id into ...
0
votes
0answers
46 views
Does the memcached extension recycle connections?
Looking at support for session support on the memcacheD extension:
http://us3.php.net/manual/en/memcached.sessions.php
Does this internal instance use persistant connections to the server?
Does it ...
0
votes
1answer
89 views
Using php sessions with ajax (mobile device)
I will explain my problem. I need to know if the steps below are correct:
The user enters their login details and these get submitted to the php server. If these are correct, I want to use the php ...
0
votes
0answers
59 views
PHP sessions in Internet Explorer
Having an issue with the intranet I'm developing for my company. It's hosted locally on our server and uses PHP. It has a login script which works fine with Firefox and Chrome, but when I try to login ...
0
votes
2answers
89 views
Storing PHP 5.3 sessions into PostgreSQL 8.4
I'm using CentOS 6.0 Linux 64 bit with the stock packages:
# rpm -qa|grep php
php-cli-5.3.2-6.el6_0.1.x86_64
php-5.3.2-6.el6_0.1.x86_64
php-xml-5.3.2-6.el6_0.1.x86_64
php-pgsql-5.3.2-6.el6_0.1.x86_64
...
0
votes
2answers
227 views
uploadify session problem
Hello I'm using Uploadify to upload photos.
When user is logged, his ID is stored in session, but after uploading anything by Uploadify, his ID is deleted from session, so it looks like he is not ...
0
votes
0answers
23 views
Session destroy issue in Mac
It has become too much headache for me. Please help !!!!!!
Problem : Session is destroying when user logs in through facebook dialog window
Details: I am developing a website and using facebook ...
0
votes
3answers
334 views
Undefined variable: _SESSION when sending variables via post through JavaScript trigger
In my index.php file I call session_start() and set a couple of session variables. In a second PHP file I would like to access these session variables.
Thing is, this PHP file is purely a backend ...