RE: [PHP-DB] Session error?

2003-06-23 Thread Edward Peloke
you need to look in your php.ini file to see where it is dumping the session
data, then make sure that directory exits...

-Original Message-
From: Tim Winters [mailto:[EMAIL PROTECTED]
Sent: Monday, June 23, 2003 10:21 AM
To: [EMAIL PROTECTED]
Subject: [PHP-DB] Session error?


Ok,

Tried playing with sessions (which is new to me) and didn't get very
far.

I have the following in my page

?php
session_start();
?

and there is no other PHP in my page at all.  The error I get is below,
Can anyone help.  If this is too OT for php-db let me know.


Warning: session_start() [ http://www.php.net/function.session-start
function.session-start]:
open(/tmp\sess_bf0c0a0a020087aa573e357a2553f828, O_RDWR) failed: No such
file or directory (2) in C:\Program Files\Apache
Group\Apache2\htdocs\MailOrderDynamic\c.php on line 6

Warning: session_start() [ http://www.php.net/function.session-start
function.session-start]: Cannot send session cookie - headers already
sent by (output started at C:\Program Files\Apache
Group\Apache2\htdocs\MailOrderDynamic\c.php:5) in C:\Program
Files\Apache Group\Apache2\htdocs\MailOrderDynamic\c.php on line 6

Warning: session_start() [ http://www.php.net/function.session-start
function.session-start]: Cannot send session cache limiter - headers
already sent (output started at C:\Program Files\Apache
Group\Apache2\htdocs\MailOrderDynamic\c.php:5) in C:\Program
Files\Apache Group\Apache2\htdocs\MailOrderDynamic\c.php on line 6

Warning: Unknown(): open(/tmp\sess_bf0c0a0a020087aa573e357a2553f828,
O_RDWR) failed: No such file or directory (2) in Unknown on line 0

Warning: Unknown(): Failed to write session data (files). Please verify
that the current setting of session.save_path is correct (/tmp) in
Unknown on line 0


Tim Winters
Creative Development Manager
Sampling Technologies Incorporated

1600 Bedford Highway, Suite 212
Bedford, Nova Scotia
B4A 1E8
www.samplingtechnologies.com
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Office: 902 450 5500
Cell: 902 430 8498
Fax:: 902 484 7115



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP-DB] Session error?

2003-06-23 Thread Edward Peloke
some of the other errors occurred ( such as the headers already sent)
because you probably have white space before your php code.

Eddie

-Original Message-
From: Tim Winters [mailto:[EMAIL PROTECTED]
Sent: Monday, June 23, 2003 10:21 AM
To: [EMAIL PROTECTED]
Subject: [PHP-DB] Session error?


Ok,

Tried playing with sessions (which is new to me) and didn't get very
far.

I have the following in my page

?php
session_start();
?

and there is no other PHP in my page at all.  The error I get is below,
Can anyone help.  If this is too OT for php-db let me know.


Warning: session_start() [ http://www.php.net/function.session-start
function.session-start]:
open(/tmp\sess_bf0c0a0a020087aa573e357a2553f828, O_RDWR) failed: No such
file or directory (2) in C:\Program Files\Apache
Group\Apache2\htdocs\MailOrderDynamic\c.php on line 6

Warning: session_start() [ http://www.php.net/function.session-start
function.session-start]: Cannot send session cookie - headers already
sent by (output started at C:\Program Files\Apache
Group\Apache2\htdocs\MailOrderDynamic\c.php:5) in C:\Program
Files\Apache Group\Apache2\htdocs\MailOrderDynamic\c.php on line 6

Warning: session_start() [ http://www.php.net/function.session-start
function.session-start]: Cannot send session cache limiter - headers
already sent (output started at C:\Program Files\Apache
Group\Apache2\htdocs\MailOrderDynamic\c.php:5) in C:\Program
Files\Apache Group\Apache2\htdocs\MailOrderDynamic\c.php on line 6

Warning: Unknown(): open(/tmp\sess_bf0c0a0a020087aa573e357a2553f828,
O_RDWR) failed: No such file or directory (2) in Unknown on line 0

Warning: Unknown(): Failed to write session data (files). Please verify
that the current setting of session.save_path is correct (/tmp) in
Unknown on line 0


Tim Winters
Creative Development Manager
Sampling Technologies Incorporated

1600 Bedford Highway, Suite 212
Bedford, Nova Scotia
B4A 1E8
www.samplingtechnologies.com
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Office: 902 450 5500
Cell: 902 430 8498
Fax:: 902 484 7115



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Session error?

2003-06-23 Thread CPT John W. Holmes
 Warning: session_start() [ http://www.php.net/function.session-start
 function.session-start]:
 open(/tmp\sess_bf0c0a0a020087aa573e357a2553f828, O_RDWR) failed: No such
 file or directory (2) in C:\Program Files\Apache
 Group\Apache2\htdocs\MailOrderDynamic\c.php on line 6

The default session.save_path in php.ini is set to /tmp. It appears you're
on a windows machine and probably do not have a c:\tmp directory. Either
create one (if that's where you want to store your session files) or change
the path in php.ini to some other folder that exists. Ensure the Apache user
has permission to write to the folder you specify, also.

The other errors are caused by the output of your first error.

---John Holmes...


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP-DB] Session error?

2003-06-23 Thread Tim Winters
Thanks John,

So is that address relative to the physical machine or is it relative to
the directory where the php files are contained.

Tim Winters
Creative Development Manager
Sampling Technologies Incorporated

1600 Bedford Highway, Suite 212
Bedford, Nova Scotia
B4A 1E8
www.samplingtechnologies.com
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Office: 902 450 5500
Cell: 902 430 8498
Fax:: 902 484 7115


-Original Message-
From: CPT John W. Holmes [mailto:[EMAIL PROTECTED] 
Sent: June 23, 2003 11:40 AM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: [PHP-DB] Session error?

 Warning: session_start() [ http://www.php.net/function.session-start
 function.session-start]:
 open(/tmp\sess_bf0c0a0a020087aa573e357a2553f828, O_RDWR) failed: No
such
 file or directory (2) in C:\Program Files\Apache
 Group\Apache2\htdocs\MailOrderDynamic\c.php on line 6

The default session.save_path in php.ini is set to /tmp. It appears
you're
on a windows machine and probably do not have a c:\tmp directory. Either
create one (if that's where you want to store your session files) or
change
the path in php.ini to some other folder that exists. Ensure the Apache
user
has permission to write to the folder you specify, also.

The other errors are caused by the output of your first error.

---John Holmes...


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP-DB] Session error?

2003-06-23 Thread Mike Brum
Just put the full path of the dir.

For instance I placed mine at C:\php\session to keep things separated.

-M

-Original Message-
From: Tim Winters [mailto:[EMAIL PROTECTED] 
Sent: Monday, June 23, 2003 12:31 PM
To: 'CPT John W. Holmes'; [EMAIL PROTECTED]
Subject: RE: [PHP-DB] Session error?

Thanks John,

So is that address relative to the physical machine or is it relative to
the directory where the php files are contained.

Tim Winters
Creative Development Manager
Sampling Technologies Incorporated

1600 Bedford Highway, Suite 212
Bedford, Nova Scotia
B4A 1E8
www.samplingtechnologies.com
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Office: 902 450 5500
Cell: 902 430 8498
Fax:: 902 484 7115


-Original Message-
From: CPT John W. Holmes [mailto:[EMAIL PROTECTED] 
Sent: June 23, 2003 11:40 AM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: [PHP-DB] Session error?

 Warning: session_start() [ http://www.php.net/function.session-start
 function.session-start]:
 open(/tmp\sess_bf0c0a0a020087aa573e357a2553f828, O_RDWR) failed: No
such
 file or directory (2) in C:\Program Files\Apache
 Group\Apache2\htdocs\MailOrderDynamic\c.php on line 6

The default session.save_path in php.ini is set to /tmp. It appears
you're
on a windows machine and probably do not have a c:\tmp directory. Either
create one (if that's where you want to store your session files) or
change
the path in php.ini to some other folder that exists. Ensure the Apache
user
has permission to write to the folder you specify, also.

The other errors are caused by the output of your first error.

---John Holmes...


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php





-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP-DB] Session error?

2003-06-23 Thread Tim Winters
Thanks Mike!!

Ok, been doing dome more reading on sessions.  Is there any sort of
consensus on whether to use cookies or not for sessions?

Tim Winters
Creative Development Manager
Sampling Technologies Incorporated

1600 Bedford Highway, Suite 212
Bedford, Nova Scotia
B4A 1E8
www.samplingtechnologies.com
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Office: 902 450 5500
Cell: 902 430 8498
Fax:: 902 484 7115


-Original Message-
From: Mike Brum [mailto:[EMAIL PROTECTED] 
Sent: June 23, 2003 2:08 PM
To: [EMAIL PROTECTED]; 'CPT John W. Holmes';
[EMAIL PROTECTED]
Subject: RE: [PHP-DB] Session error?

Just put the full path of the dir.

For instance I placed mine at C:\php\session to keep things separated.

-M

-Original Message-
From: Tim Winters [mailto:[EMAIL PROTECTED] 
Sent: Monday, June 23, 2003 12:31 PM
To: 'CPT John W. Holmes'; [EMAIL PROTECTED]
Subject: RE: [PHP-DB] Session error?

Thanks John,

So is that address relative to the physical machine or is it relative to
the directory where the php files are contained.

Tim Winters
Creative Development Manager
Sampling Technologies Incorporated

1600 Bedford Highway, Suite 212
Bedford, Nova Scotia
B4A 1E8
www.samplingtechnologies.com
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Office: 902 450 5500
Cell: 902 430 8498
Fax:: 902 484 7115


-Original Message-
From: CPT John W. Holmes [mailto:[EMAIL PROTECTED] 
Sent: June 23, 2003 11:40 AM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: [PHP-DB] Session error?

 Warning: session_start() [ http://www.php.net/function.session-start
 function.session-start]:
 open(/tmp\sess_bf0c0a0a020087aa573e357a2553f828, O_RDWR) failed: No
such
 file or directory (2) in C:\Program Files\Apache
 Group\Apache2\htdocs\MailOrderDynamic\c.php on line 6

The default session.save_path in php.ini is set to /tmp. It appears
you're
on a windows machine and probably do not have a c:\tmp directory. Either
create one (if that's where you want to store your session files) or
change
the path in php.ini to some other folder that exists. Ensure the Apache
user
has permission to write to the folder you specify, also.

The other errors are caused by the output of your first error.

---John Holmes...


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php





-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php