RE: [PHP-WIN] session problems

2004-03-04 Thread Sudeep Sarath
Sarath [mailto:[EMAIL PROTECTED] Enviado el: jueves, 04 de marzo de 2004 0:50 Para: [EMAIL PROTECTED] Asunto: Re: [PHP-WIN] session problems Hi Dear, First of all let me warn u that sessions in PHP need to be handled very carefully. It is very sensitive. Now to your problemIf t

Re: [PHP-WIN] session problems

2004-03-03 Thread Sudeep Sarath
Hi Dear, First of all let me warn u that sessions in PHP need to be handled very carefully. It is very sensitive. Now to your problemIf there is an error with session.save_path u need to configure the php.ini file. If u are using a remote server to run ur php files then the path of session

RE: [PHP-WIN] Session problems

2003-08-16 Thread Creative Solutions New Media
PROTECTED] Subject: Re: [PHP-WIN] Session problems Creative Solutions New Media wrote: > I'm getting the following errors string to start a session. > > Warning: session_start() [function.session-start]: > open(/tmp\sess_801eb94975c2de92f1085a8d4521af12, O_RDWR) failed: No such > file

Re: [PHP-WIN] Session problems

2003-08-16 Thread Kai Wenk
Creative Solutions New Media wrote: I'm getting the following errors string to start a session. Warning: session_start() [function.session-start]: open(/tmp\sess_801eb94975c2de92f1085a8d4521af12, O_RDWR) failed: No such file or directory (2) in G:\Program Files\Apache Group\Apache2\htdocs\Imptech\

Re: [PHP-WIN] session problems - WinXP - Apache 1.3 - PHP 4.3.2

2003-07-04 Thread Luis Ferro
In PHP.ini file (somewhere in the %windows% directory), there is a directory referenced as: session.save_path = c:/winnt/temp Check 2 things: a) that the directory in that entry is set to an existing directory of which the process running the web server has read/write permissions b) when issue

Re: [PHP-WIN] session problems - WinXP - Apache 1.3 - PHP 4.3.2

2003-07-04 Thread Raymond
hi hector, i've this problem too. my setup is winxp, ms iis 5.1, php 4.3.1. may i know have you manage to solve this problem? if yes, how to solve it? thanks and regards, raymond === "Hector Lumang" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PR

Re: [PHP-WIN] Session problems

2001-04-09 Thread Olivier Hubert
Hi, Ok, first of all, the function session_start () should be run on each page that uses session variables. It is necessary to access, create or modify session variables. To register variables, use session_register (). Be aware that the function uses a string argument. So to regi

RE: [PHP-WIN] Session problems

2001-04-09 Thread Asendorf, John
D DAILY! Licking County, Ohio, USA 740-349-3631 Aliquando et insanire iucundum est > -Original Message- > From: Asendorf, John [mailto:[EMAIL PROTECTED]] > Sent: Monday, April 09, 2001 1:37 PM > To: Mark Collins; Php-Windows (E-mail) > Subject: RE: [PHP-WIN] Session problems &

RE: [PHP-WIN] Session problems

2001-04-09 Thread Asendorf, John
Dear Mark, You must have the line session_start (); at the beginning of the pages that are part of the session. This is the function which gets the session id. You can also use session_start to BEGIN the session. You must then register any variables you want to be held by the session. You