Re: [PHP] Session Issues with Certain ISPs

2007-08-02 Thread Mark Tuma
Hi Richard, Sorry to have not responded for so long, and thanks for your views. It turns out the problem is browser based, at least in part. A windows PC with IE6 in our office could not get the site working right, whereas a linux laptop with firefox was fine with it. The immediate need is

Re: [PHP] Session Issues with Certain ISPs

2007-07-20 Thread Richard Lynch
On Wed, July 18, 2007 9:35 am, Mark Tuma wrote: > I have a fairly simple set of php scripts which use session variables > to > pass information from one page to the next in an online booking system > for an event. In most cases these work fine, but users with a couple > of > ISPs are consistently

Re: [PHP] Session Issues with Certain ISPs

2007-07-18 Thread Jim Lucas
Mark Tuma wrote: Hi, I have a fairly simple set of php scripts which use session variables to pass information from one page to the next in an online booking system for an event. In most cases these work fine, but users with a couple of ISPs are consistently unable to use the system, as the

[PHP] Session Issues with Certain ISPs

2007-07-18 Thread Mark Tuma
Hi, I have a fairly simple set of php scripts which use session variables to pass information from one page to the next in an online booking system for an event. In most cases these work fine, but users with a couple of ISPs are consistently unable to use the system, as the session variables

Re: [PHP] session issues on ie

2006-11-29 Thread Richard Lynch
On Tue, November 28, 2006 3:47 pm, blackwater dev wrote: > I have code which logs someone in and then allows them to see certain > info > if they are logged in. I have users who claim it works fin in some of > their > browsers, firefox, safari, etc and some versions of IE but not all and > I'm > s

RE: [PHP] session issues on ie

2006-11-28 Thread Vincent DUPONT
a problem. If they have a problem for Ie only, I only see the cookie reason. good luck vincent -Original Message- From: blackwater dev [mailto:[EMAIL PROTECTED] Sent: Tue 28/11/2006 22:47 To: php-general@lists.php.net Subject: [PHP] session issues on ie I have code which logs someone i

[PHP] session issues on ie

2006-11-28 Thread blackwater dev
I have code which logs someone in and then allows them to see certain info if they are logged in. I have users who claim it works fin in some of their browsers, firefox, safari, etc and some versions of IE but not all and I'm stumped. Here's the code: //this is from the login routine if ($this

RE: [PHP] Session issues

2006-09-15 Thread Brad Fuller
clear your browser cache (temporary internet files) before testing it or else it may still use the local (cached) copy. Hope that helps, Brad -Original Message- From: Dave Goodchild [mailto:[EMAIL PROTECTED] Sent: Friday, September 15, 2006 1:01 PM To: PHP Subject: [PHP] Session i

[PHP] Session issues

2006-09-15 Thread Dave Goodchild
Hi all. I am using php sessions in an online events listing to carry around user data until all data is clean and then entering it into a database after the final form has been submitted. On the first form the user selects a category and postcode, and the processing script validates and cleans the

Re: [PHP] Session issues

2006-08-19 Thread Richard Lynch
If the problem is that their browser is not accepting the cookies, then turning on trans-sid will fix it -- as the session ID is then passed in the URL as GET argument. Only problem there is that users are more likely to forward a link that exposes their session ID to somebody else, so unless you

Re: [PHP] Session issues

2006-08-18 Thread Richard Lynch
Configure the problem browser to prompt you when it gets a cookie. You'll probably find that it's rejecting the cookies, so it's not preserving the state of the session, so you get a new session every page hit. On Thu, August 17, 2006 12:35 pm, Dave Goodchild wrote: > Hi all, I am currently writi

[PHP] Session issues

2006-08-17 Thread Dave Goodchild
Hi all, I am currently writing a web application that has a 3-stage form process as part of its functionality. The values passed in are placed in the session array after validation and once the user has completed and supplied all required values the relevant session values are inserted into the da

Re: [PHP] session issues for unauthorized access?

2004-01-06 Thread Chris Shiflett
--- Scott Fletcher <[EMAIL PROTECTED]> wrote: > > At some point, the user is going to have to be responsible for his/her > > own actions. After all, I can log into my bank's Web site and then let > > someone else use my computer, and there's no way my bank can prevent > > it. > > Sure the bank can

RE: [PHP] session issues for unauthorized access?

2004-01-06 Thread Vail, Warren
[PHP] session issues for unauthorized access? >>At some point, the user is going to have to be responsible for his/her own >>actions. After all, I can log into my bank's Web site and then let someone >>else use my computer, and there's no way my bank can prevent it. Sure the

Re[2]: [PHP] session issues for unauthorized access?

2004-01-06 Thread Richard Davey
Hello Scott, Tuesday, January 6, 2004, 7:19:55 PM, you wrote: SF> Sure the bank can prevent it or otherwise my bank would never use the SF> website in the first place. My bank doesn't use PHP, it use JAVA and SF> surprisely, it work very well. Really? How would your bank determine the differenc

Re: [PHP] session issues for unauthorized access?

2004-01-06 Thread Scott Fletcher
>>At some point, the user is going to have to be responsible for his/her own >>actions. After all, I can log into my bank's Web site and then let someone >>else use my computer, and there's no way my bank can prevent it. Sure the bank can prevent it or otherwise my bank would never use the website

RE: [PHP] session issues for unauthorized access?

2004-01-06 Thread Vail, Warren
meone from taking over a session on the browser machine. A short session timeout will minimize session stealing, but aggravate your users. hope this helps, Warren Vail -Original Message- From: Scott Fletcher [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 06, 2004 10:19 AM To: [EMAIL PR

Re: [PHP] session issues for unauthorized access?

2004-01-06 Thread Chris Shiflett
--- Scott Fletcher <[EMAIL PROTECTED]> wrote: > Is there a really good way to use PHP Session to tell whenether the > user is authorized user or not? Yes, there are many good ways, and I'm sure I'm not even aware of many of them. > I see one problem here, let's say the user tried to access certai

[PHP] session issues for unauthorized access?

2004-01-06 Thread Scott Fletcher
Is there a really good way to use PHP Session to tell whenether the user is authorized user or not? I see one problem here, let's say the user tried to access certain webpages that are unauthorized then I get to kick the user out. But when the user logged in, we assigned a session token to it, th

RE: [PHP] SESSION ISSUES

2003-06-08 Thread John W. Holmes
> HELP? I AM ABOUT TO PULL MY HAIR OUT? I can't tell from here... move closer to the monitor. > I have already spent time reading over the online php manual and I still > can't figure a way around this issue. I notice that when I start a session > and I create session variables, those variables

Re: [PHP] SESSION ISSUES

2003-06-08 Thread Jason k Larson
http://us2.php.net/manual/en/function.session-set-cookie-params.php set the domain strictly to "test.com" not "subdomain.test.com" etc etc -- Jason k Larson Dale wrote: HELP? I AM ABOUT TO PULL MY HAIR OUT? I have already spent time reading over the online php manual and I still can't figure

[PHP] SESSION ISSUES

2003-06-08 Thread Dale
HELP? I AM ABOUT TO PULL MY HAIR OUT? I have already spent time reading over the online php manual and I still can't figure a way around this issue. I notice that when I start a session and I create session variables, those variables are attached to the specific domain. For example: both of the u

Re: [PHP] Session Issues when Cookies are Disabled

2002-12-12 Thread Richard Baskett
orrow is a new day; you shall begin it serenely and with too high a spirit to be encumbered with your old nonsense." - Ralph Waldo Emerson > From: "charlie collins" <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > Date: Thu, 12 Dec 2002 16:29:12 -0500 (EST) > To:

[PHP] Session Issues when Cookies are Disabled

2002-12-12 Thread charlie collins
I have an issue with PHP when Cookies are not enabled on the client. I am using 4.2.x (have tried on various versions) and enable-trans-sid is ON. The problem is that the automatic url encoding that enable-trans-sid performs works great for anchor tags (links) but it does NOT WORK for POST forms