Re: Sessions Programming Web Development by diafol sessions are the way to do it. Forums depend on sessions. SESSIONS variable not working on ipage Programming Web Development by centenond Sessions wont work on ipage, I know there are post like … Sessions Programming Web Development by Borzoi What is the proper way to use sessions? I have a forum on my site which I've coded from scratch but I've not been using sessions for the users and instead I've been using just cookies to determine if they're logged in or not. I know my current way isn't ideal so I thought I should research sessions as it seems to be the right way to do it. Sessions Programming Web Development by ayat abukhadra hi, can i change the sessions for a website by my own on my conditions , like if i wanna close the session if the user haven't done any work for a specified time and keeps reopening the sessions for active users ? sessions Programming Web Development by david_s … new to php and i'm having hard time with sessions i'm trying to create a php file with a… Sessions and session destroy Programming Web Development by Metophase Hey looking over sessions was confusing the hell out of me but I found … Re: Sessions...help me please Programming Web Development by sfbell Sessions are variables like cookies. You use them to store data … the next. Here is the php.net documentation intro on sessions: 'Session support in PHP consists of a way to preserve… Re: sessions in shopping cart Programming Web Development by Shanti C … remeber ordered details for somany days using sessions... i mean: we can use sessions to store our order details temporarily ..means…into temporders table... i think it is difficult to use sessions to store whole ordered details for so many days.... …Finally what i wan to tell is: we can use sessions upto add an item to cart,,then next it is… Re: Sessions (php noob) Programming Web Development by mschroeder Session garbage collecting is specific to how php handles sessions. It is independent of the storage mechanism. … session.gc_maxlifetime There are a few caveats that affect how sessions work. [LIST=1] [*] Garbage collection is started with (… has little to no traffic don't expect your sessions to get cleaned up when they should expire. [*]… Sessions: cookies and use_trans_sid Programming Web Development by Venom Rush … the moment. My aim is to be able to use sessions with out getting those ugly url's. In my php… line is I'd like to be able to store sessions if someone isn't accepting cookies. Sessions: Best method for keeping data Programming Web Development by Venom Rush Hi there I'm new to using sessions and I'd like some input on what the best …/she click the order button for) into a table called sessions inside the DB. This process happens for each product that… button it takes them to the checkout page where the sessions table is search for all entries with the current session… Sessions and IE8, IE7 and FF Programming Web Development by darkagn …the latest versions of IE and FF in regards to sessions. If anyone has encountered these problems before, any insight…. [B]In FF:[/B] An ongoing problem where sessions are saved across multiple tabs and windows in the same…[/I]. On a different domain, different windows have different sessions, so the user is not automatically logged in. These … Re: Sessions (php noob) Programming Web Development by mschroeder … a custom session handler which stores the sessions in the database would be the first step…following sql structure: [CODE] CREATE TABLE IF NOT EXISTS `sessions` ( `id` varchar(32) NOT NULL, `access`…, ADD CONSTRAINT `usersessions_ibfk_2` FOREIGN KEY (`SessionId`) REFERENCES `sessions` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION;… sessions in shopping cart Programming Web Development by praveen_dusari hi all, i want a shopping cart which runs on sessions ie adding items to basket, updating them using sessions without using tables any ideas iam confused :confused: and stucked please help Re: Sessions: cookies and use_trans_sid Programming Web Development by cwarn23 …. Although I don't know how to code this with sessions but I will explain the theory. If you set up… Re: Sessions: Best method for keeping data Programming Web Development by Shanti C Doing shopping cart with sessions is best way to load our site fastly than storing … Sessions Timing Out - SessionID Cookie Missing Programming Web Development by mjlocat … so). One client seems to be having a problem with sessions timing out unexpectedly and being thrown back to the login… IIS 6 and accessing a SQL Server 2005 database. The sessions are managed in the ASPState database. This may be related… sessions carrying info Programming Web Development by designingamy I'm having a hard time with sessions. I have a long form on 3 different pages and … session_start(); on every page. I have a place where my sessions are stored on my server. Any idea what the problem… sessions in windows platform Programming Web Development by anuspan hello everyone, im using php 5.2.6 , apache 2.2.10 and mysql 5 for my server.everything works fine excepts sessions.i have configure the php.ini file for sessions.but still its not working.im using windows platform.can anyone help me to settle this? Re: sessions in windows platform Programming Web Development by anuspan … those created files. i have used, session_register('myusername'); to create sessions in login page.and i use the following code at… this?or should i install any php extension to enable sessions? Re: Sessions and IE8, IE7 and FF Programming Web Development by ShawnCplus In all browsers that's how it is supposed to work. Sessions are saved to cookies which either expire after a certain amount of time or after a user closes their browser. There would be absolutely no way to tell the difference between them opening a new tab or just refreshing the page so you're effectively SOL Sessions Only Store on Login Page Programming Web Development by BlueCharge Hi everyone, I have had the current users sessions set up for three days now and today for no …reason what so ever the sessions have now stoppped working. I have no idea but if… Re: Sessions (php noob) Programming Web Development by Suzie999 … not be as difficult as I thought (even though the sessions post is making my head spin right now :) ) I could… user just killing the process :( . While I still dont understand sessions just yet, I am drawn to the sentence "was… can I have it work on any value, or just sessions? Thank you once again for your time and advice. Sessions for a vote count per item Programming Web Development by reco21 … have voted. So what I'm going for is 'Php sessions' because I dont want to clutter a table in mysql… is the same mostly of course. How do i add sessions to this so i can vote up only once for… Sessions aren't working Programming Web Development by toxicandy … my first ever login system and my first time using sessions. Am I doing it all wrong? Is there a way… I can make my sessions expire after certain time automatically and more importantly getting them… Re: sessions carrying info Programming Web Development by somedude3488 i use sessions all the time and never had a problem. yes, it will carry to the 4th page. can you post the code, so maybe I can see if you did something wrong? Re: Sessions (php noob) Programming Web Development by Suzie999 Seems sessions will not suit my purpose. I understand better now, what they are after reading up, and it appears sessions are window and browser dependant. Since my app uses neither a browser or a window, it doesnt look like a can use them. Anyone have any suggestions as to how I can tackle my problem another way, using database perhaps? Re: Sessions Not Working In Another Directory Programming Web Development by veedeoo … be validated above this directory and below this directory while sessions stablished, in these directories are valid in directory domainOne localhost… works like a VPS hosting with multiple domains in it.. sessions are processed only specific to its own working directory, space… Re: Sessions aren't working Programming Web Development by toxicandy EDIT: I got cookies working but I am unsure if that is a good thing to keep or if I should focus getting sessions to work. Re: Sessions aren't working Programming Web Development by mattster You code looks okay, so check that you have `session_start();`'s on all pages and that `$row['uid']` value is actually being set. Sessions are needed to maintain security, thats for sure.