RE: [PHP] Session not working while accessing through IE on Windows 2000

2004-04-22 Thread Sheni R. Meledath
Hi, Thank you very much for your comments. We are facing a similar problem in one of local systems which has Windows 2000 & IE 6.0. Now one of the users has complained about the same problem. His system configuration is the same as above. In one of the news groups, I have read before about a s

Re: [PHP] Session not working while accessing through IE on Windows 2000

2004-04-22 Thread "Miguel J. Jiménez"
You may use: to deactivate the cookies from sessions in runtime... -- Miguel J. Jiménez ISOTROL, S.A. (Área de Internet) Avda. Innovación nº1, 3ª - 41020 Sevilla (ESPAÑA) [EMAIL PROTECTED] --- http://www.isotrol.com TLFNO. 955036800 ext. 111 -- PHP General Mailing List (http://www.php.net/) To

RE: [PHP] Session not working while accessing through IE on Windows 2000

2004-04-22 Thread Vincent DUPONT
Hi, I use win2k and IE 6 every day with PHP, and it works fine. I guess your problem comes from the Internet Options of IE (tools/Internet Options). As Miguel Jiménez suggested, check the cookie setting in the Internet Options. Vincent -Original Message- From: Sheni R. Meledath [mailto

Re: [PHP] Session not working while accessing through IE on Windows 2000

2004-04-22 Thread "Miguel J. Jiménez"
Be sure to know all about session cookies. By default, PHP stores the session in a cookie Sheni R. Meledath escribió: Hello: We have set up a login page using sessions in PHP. Its working fine. The server is a FreeBSD/Apache/PHP 4. While accessing this page from IE 6 on Windows 2000, the

Re: [PHP] session not working in IE 5

2003-10-09 Thread Marek Kilimajer
Binay wrote: Hi all ! My session is not working in IE 5+ but working well with IE 6+. Is there some problem with IE 5+. Please let me know as this being continuous pain for me. Thanks in advance Binay Are you using cookies for storing the session id? Does IE 5 accept this cookie? -- PHP Gene

[PHP] Re: PHP Session not working

2003-10-01 Thread Nicole
Which method are you using to set and access your session variables? -- Nicole aeontrek.com "Sheni R. Meledath" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi: > > We are facing some problems in using sessions in our applications. Recently > we have moved our web site to a new A

Re: [PHP] Session not working?

2003-06-09 Thread Frank Keessen
t; Sent: Monday, June 09, 2003 8:59 PM Subject: Re: [PHP] Session not working? > Hi, > > The original code: > > - Original Message - > From: "Emma Jane Hogbin" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Monday, June 09, 2003 8:49 PM

Re: [PHP] Session not working?

2003-06-09 Thread Emma Jane Hogbin
On Mon, Jun 09, 2003 at 09:01:49PM +0200, Frank Keessen wrote: > The orignal code was in the first mail; again; > $_REQUEST["submit"]=isset($_REQUEST["submit"])?$_REQUEST["submit"]:""; > if($_REQUEST['submit']!="") > { > $dater=$_POST['$dater']; > $aantalvol=$_POST['$aantalvol']; > $aantalkind=$_PO

Re: [PHP] Session not working?

2003-06-09 Thread Frank Keessen
Hi, The original code: - Original Message - From: "Emma Jane Hogbin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 09, 2003 8:49 PM Subject: Re: [PHP] Session not working? > On Mon, Jun 09, 2003 at 08:18:10PM +0200, Frank Keessen wrote: >

Re: [PHP] Session not working?

2003-06-09 Thread Frank Keessen
#x27;2pk'] = $tweepk; header( "Location: test3.php" ); } test3.php Txs for the help, Frank ----- Original Message - From: "Emma Jane Hogbin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 09, 2003 8:49 PM Subject: Re: [PHP] Session not work

Re: [PHP] Session not working?

2003-06-09 Thread Emma Jane Hogbin
On Mon, Jun 09, 2003 at 08:18:10PM +0200, Frank Keessen wrote: > It's pointing towards the booking.php > (which is the 'sender' page..) > Exact error message: The Page cannot be displayed.. > So it's no 404.. I think.. Ah. So it's not even moving off the original page... I don't have your original

Re: [PHP] Session not working?

2003-06-09 Thread Leif K-Brooks
m: "Emma Jane Hogbin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 09, 2003 8:10 PM Subject: Re: [PHP] Session not working? On Mon, Jun 09, 2003 at 08:08:18PM +0200, Frank Keessen wrote: I get page not be displayed... Even with the full

Re: [PHP] Session not working?

2003-06-09 Thread Frank Keessen
D]> Sent: Monday, June 09, 2003 8:10 PM Subject: Re: [PHP] Session not working? > On Mon, Jun 09, 2003 at 08:08:18PM +0200, Frank Keessen wrote: > > I get page not be displayed... > > Even with the full URL in the HEADER section it doesn't work.. > > What's the

Re: [PHP] Session not working?

2003-06-09 Thread Emma Jane Hogbin
On Mon, Jun 09, 2003 at 08:08:18PM +0200, Frank Keessen wrote: > I get page not be displayed... > Even with the full URL in the HEADER section it doesn't work.. What's the URL of the page it's trying to find? i.e. what does the location bar on your browser say? Is it the right URL, or is it lookin

Re: [PHP] Session Not Working

2003-03-21 Thread Kevin Stone
k" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 21, 2003 2:46 PM Subject: Re: [PHP] Session Not Working > ok, I tried this: > session_start(); > if ($user_data = = $database_data) { > $_SESSION['verified_user']=1; > header("Location:http

Re: [PHP] Session Not Working

2003-03-21 Thread Guru Geek
ok, I tried this: session_start(); if ($user_data = = $database_data) { $_SESSION['verified_user']=1; header("Location:http://www.myserver.com/main.php";); exit; and it still doesn't work...hehe anymore suggestions? Thanks, Roger Mike wrote: > you forgot session_start at the beginning of the l

Re: [PHP] Session Not Working

2003-03-21 Thread Mike
you forgot session_start at the beginning of the login script On Fri, 2003-03-21 at 12:31, Guru Geek wrote: > Hello, > > I'm trying to use sessions for the first time. > > I have a log in script that gets the user to enter their name and > password. Then the script compares the entered data to

Re: [PHP] session not working

2001-09-27 Thread sagar N Chand
session must be registered before any code is sent to the browser. so the syntax should be html code here /sagar - Original Message - From: Krushna Kumar R To: [EMAIL PROTECTED] Sent: Thursday, September 27, 2001 5:43 PM Subject: [PHP] session not working Hi, I w

Re: [PHP] session not working

2001-09-27 Thread Richard Baskett
try putting all your session_register's above any html and see if that works. I believe you need to do this before any html is output. It's been awhile since I've worked with sessions, but try it :) Rick > Hi, > > I wrote a program where the session gets created, but on subsequent page the >

Re: [PHP] session not working

2001-09-27 Thread Negrea Mihai
> echo session_is_registered("uname"); > echo session_name("uname"); > ?> > click here to go to next page try here: click here to go to next page -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To