Re: [PHP] IIS Quit Working

2002-12-29 Thread Jason Wong
On Sunday 29 December 2002 09:14, Stephen wrote:
 Since I like new things and all, I decided to download and install PHP 4.3.
 Before, I had the latest (4.2.3) and IIS worked fine. But then, after
 uninstalling PHP and installing the new one, it just quit working. I go to
 http://localhost/ and nothing comes up except a This page cannot be
 displayed thing since I'm using IE. Any ideas why this is happening?

Turn on error reporting and log to file and examine it for any clues.

-- 
Jason Wong - Gremlins Associates - www.gremlins.biz
Open Source Software Systems Integrators
* Web Design  Hosting * Internet  Intranet Applications Development *

/*
You can tell how far we have to go, when FORTRAN is the language of
supercomputers.
-- Steven Feiner
*/


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




Re: [PHP] IIS Quit Working

2002-12-29 Thread Stephen
Ok, I reinstalled IIS 5 and PHP 4.3 and it's working but the sessions
aren't.  I get this error:


Warning: session_start() [function.session-start]:
open(/tmp\sess_b400575a818f9bb0361b06dad912410c, O_RDWR) failed: No such
file or directory (2) in c:\inetpub\wwwroot\pcu\index.php on line 1

I haven't edited the php.ini file yet but I'm not sure what to set it to.
Right now it says this:

session.save_path = /tmp

What should it be for Windows XP Pro?


- Original Message -
From: Jason Wong [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, December 29, 2002 3:16 AM
Subject: Re: [PHP] IIS Quit Working


: On Sunday 29 December 2002 09:14, Stephen wrote:
:  Since I like new things and all, I decided to download and install PHP
4.3.
:  Before, I had the latest (4.2.3) and IIS worked fine. But then, after
:  uninstalling PHP and installing the new one, it just quit working. I go
to
:  http://localhost/ and nothing comes up except a This page cannot be
:  displayed thing since I'm using IE. Any ideas why this is happening?
:
: Turn on error reporting and log to file and examine it for any clues.
:
: --
: Jason Wong - Gremlins Associates - www.gremlins.biz
: Open Source Software Systems Integrators
: * Web Design  Hosting * Internet  Intranet Applications Development *
:
: /*
: You can tell how far we have to go, when FORTRAN is the language of
: supercomputers.
: -- Steven Feiner
: */
:
:
: --
: PHP General Mailing List (http://www.php.net/)
: To unsubscribe, visit: http://www.php.net/unsub.php
:
:
:



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




RE: [PHP] IIS Quit Working

2002-12-29 Thread John W. Holmes
 Ok, I reinstalled IIS 5 and PHP 4.3 and it's working but the sessions
 aren't.  I get this error:
 
 
 Warning: session_start() [function.session-start]:
 open(/tmp\sess_b400575a818f9bb0361b06dad912410c, O_RDWR) failed: No
such
 file or directory (2) in c:\inetpub\wwwroot\pcu\index.php on line 1
 
 I haven't edited the php.ini file yet but I'm not sure what to set it
to.
 Right now it says this:
 
 session.save_path = /tmp
 
 What should it be for Windows XP Pro?

It can be any directory that IIS can write to. 

c:/php/sessions/ (if that folder exists)

works just fine. The IUSR_computername user on your computer must have
permission to write to that directory. 

---John W. Holmes...

PHP Architect - A monthly magazine for PHP Professionals. Get your copy
today. http://www.phparch.com/



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




Re: [PHP] IIS Quit Working

2002-12-29 Thread Stephen
I found on the official site that C:\WINDOWS\Temp works well too...


- Original Message - 
From: John W. Holmes [EMAIL PROTECTED]
To: 'Stephen' [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Sunday, December 29, 2002 2:05 PM
Subject: RE: [PHP] IIS Quit Working


:  Ok, I reinstalled IIS 5 and PHP 4.3 and it's working but the sessions
:  aren't.  I get this error:
:  
:  
:  Warning: session_start() [function.session-start]:
:  open(/tmp\sess_b400575a818f9bb0361b06dad912410c, O_RDWR) failed: No
: such
:  file or directory (2) in c:\inetpub\wwwroot\pcu\index.php on line 1
:  
:  I haven't edited the php.ini file yet but I'm not sure what to set it
: to.
:  Right now it says this:
:  
:  session.save_path = /tmp
:  
:  What should it be for Windows XP Pro?
: 
: It can be any directory that IIS can write to. 
: 
: c:/php/sessions/ (if that folder exists)
: 
: works just fine. The IUSR_computername user on your computer must have
: permission to write to that directory. 
: 
: ---John W. Holmes...
: 
: PHP Architect - A monthly magazine for PHP Professionals. Get your copy
: today. http://www.phparch.com/
: 
: 
: 
: -- 
: PHP General Mailing List (http://www.php.net/)
: To unsubscribe, visit: http://www.php.net/unsub.php
: 
: 
: 


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




Re: [PHP] IIS Quit Working

2002-12-29 Thread Michael J. Pawlowsky
Wherever you want them...  C:\windows\temp if you have that.

win??? does not have a /tmp directory link *nix boxes do, so just give it a valid 
directory to write to where you don;t mind having a bunch of session files.



session.save_path = /tmp

What should it be for Windows XP Pro?


- Original Message -
From: Jason Wong [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, December 29, 2002 3:16 AM
Subject: Re: [PHP] IIS Quit Working


: On Sunday 29 December 2002 09:14, Stephen wrote:
:  Since I like new things and all, I decided to download and install PHP
4.3.
:  Before, I had the latest (4.2.3) and IIS worked fine. But then, after
:  uninstalling PHP and installing the new one, it just quit working. I go
to
:  http://localhost/ and nothing comes up except a This page cannot be
:  displayed thing since I'm using IE. Any ideas why this is happening?
:
: Turn on error reporting and log to file and examine it for any clues.
:
: --
: Jason Wong - Gremlins Associates - www.gremlins.biz
: Open Source Software Systems Integrators
: * Web Design  Hosting * Internet  Intranet Applications Development *
:
: /*
: You can tell how far we have to go, when FORTRAN is the language of
: supercomputers.
: -- Steven Feiner
: */
:
:
: --
: PHP General Mailing List (http://www.php.net/)
: To unsubscribe, visit: http://www.php.net/unsub.php
:
:
:



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





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




[PHP] IIS Quit Working

2002-12-28 Thread Stephen



Since I like new things and all, I decided to download and 
install PHP 4.3. Before, I had the latest (4.2.3) and IIS worked fine. But then, 
after uninstalling PHP and installing the new one, it just quit working. I go to 
http://localhost/ and nothing comes up except a 
"This page cannot be displayed" thing since I'm using IE. Any ideas why this is 
happening?
Thanks,Stephen Cratonhttp://www.melchior.us

"What is a dreamer that cannot persevere?" -- http://www.melchior.us
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php