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
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
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
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\
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
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
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
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
&
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