[php-list] Re: session_start

2008-10-28 Thread bryan_is_south
Okay, I got it working! I actually had to add a line of code to my httpd.conf file, similar to the php.ini session path line. Thank you all for your time and help :) Much appreciated I'm stoked for sessions now! -bryan

Re: [php-list] Re: session_start

2008-10-28 Thread Pete
In message <[EMAIL PROTECTED]>, [EMAIL PROTECTED] writes >I have made sure that all my slashes are \ now, but still I am getting >the same messages (and I do restart my Apache after each change I make). > >Should there already be a folder called 'tmp' or do I make this folder >myself? I created my

Re: [php-list] Re: session_start

2008-10-27 Thread listgroups08
- Original Message - From: "bryan_is_south" > Hello Bryan, > > Your session save path is wrong. > > It is pointing to c:/tmp\ which does not exist. > > Open your php.ini file in a text editor. > It should be in c:\phpdev5\bin\php\ or c:\phpdev5\bin\php\phpx.x.x\ > > Make sure of t

[php-list] Re: session_start

2008-10-27 Thread bryan_is_south
> Hello Bryan, > > Your session save path is wrong. > > It is pointing to c:/tmp\ which does not exist. > > Open your php.ini file in a text editor. > It should be in c:\phpdev5\bin\php\ or c:\phpdev5\bin\php\phpx.x.x\ > > Make sure of the path to your temporary directory exists. > It shoul

Re: [php-list] Re: session_start

2008-10-27 Thread listgroups08
- Original Message - From: "fw7oaks" The point about Windows or Linux is that they expect different 'backslashes' that is / or \ in fact Linux is clever and can cope with both while Windows can't. So what's causing the problem is this /tmp\ses... If you changed it to \tmp\ses

Re: [php-list] Re: session_start

2008-10-27 Thread fw7oaks
--- On Mon, 10/27/08, bryan_is_south <[EMAIL PROTECTED]> wrote: > > And it gives me three error messages: > > > > 2 like this: "Warning: open(/tmp\sess_..., > O_RDWR) failed: No such > > file or directory (2) in ..." > > And another that says "Failed to write session > data (files). Please >

Re: [php-list] Re: session_start

2008-10-27 Thread listgroups08
- Original Message - From: "bryan_is_south" > And it gives me three error messages: > > 2 like this: "Warning: open(/tmp\sess_..., O_RDWR) failed: No such > file or directory (2) in ..." > And another that says "Failed to write session data (files). Please > verify that the current sett

[php-list] Re: session_start

2008-10-27 Thread bryan_is_south
> And it gives me three error messages: > > 2 like this: "Warning: open(/tmp\sess_..., O_RDWR) failed: No such > file or directory (2) in ..." > And another that says "Failed to write session data (files). Please > verify that the current setting of session.save_path is correct..." >