[PHP] Stupid question perhaps?

2003-03-27 Thread Tom Tsongas
I just recently upgraded to PHP 4.3.1 and Apache 2.0.44. I had been 
previously running PHP 4.0.4 and Apache 1.3.20. I had a fully enabled 
PHP website that I had been developing on for some time.
After I upgraded, the entire website is virtually non-functional. I keep 
receiving 'Page cannot Display' or 'Document contains no data' errors.

I am not sure if this is a configuration issue on Apache or PHP. phpinfo 
seems to work fine and I don't encounter issues accessing pure HTML 
pages directly. Just the PHP ones?

Any ideas folks?

- Tom

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


Re: [PHP] Stupid question perhaps?

2003-03-27 Thread Andrew Powell
Tom:

The install.txt file that came with PHP 4.3.1 states:

   At this time, support for Apache 2 is experimental.  It's
   highly recommended you use PHP with Apache 1.3.x and not
   Apache 2.
aap

Tom Tsongas wrote:

 I just recently upgraded to PHP 4.3.1 and Apache 2.0.44. I had been
 previously running PHP 4.0.4 and Apache 1.3.20. I had a fully enabled
 PHP website that I had been developing on for some time.
 After I upgraded, the entire website is virtually non-functional. I
 keep receiving 'Page cannot Display' or 'Document contains no data'
 errors.

 I am not sure if this is a configuration issue on Apache or PHP.
 phpinfo seems to work fine and I don't encounter issues accessing pure
 HTML pages directly. Just the PHP ones?

 Any ideas folks?

 - Tom




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


Re: [PHP] Stupid question perhaps?

2003-03-27 Thread Evan Nemerson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

register globals is of in newer versions of php. you can re-enable it in the 
php.ini.. See 
http://www.php.net/manual/en/configuration.directives.php#ini.register-globals


On Thursday 27 March 2003 10:57 am, Tom Tsongas wrote:
 I just recently upgraded to PHP 4.3.1 and Apache 2.0.44. I had been
 previously running PHP 4.0.4 and Apache 1.3.20. I had a fully enabled
 PHP website that I had been developing on for some time.
 After I upgraded, the entire website is virtually non-functional. I keep
 receiving 'Page cannot Display' or 'Document contains no data' errors.

 I am not sure if this is a configuration issue on Apache or PHP. phpinfo
 seems to work fine and I don't encounter issues accessing pure HTML
 pages directly. Just the PHP ones?

 Any ideas folks?

 - Tom

- -- 
Businesses may come and go, but religion will last forever, for in no other 
endeavor does the consumer blame himself for product failure.

- -Harvard Lamphoon
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE+g0xM/rncFku1MdIRArx/AJ9HYhHbEQRTWwz3+qqFibKKubOmZACgp9yh
KqCV12CJR4Td92mAITOn6vw=
=F145
-END PGP SIGNATURE-


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



Re: [PHP] Stupid question perhaps?

2003-03-27 Thread Tom Tsongas
Thx for the feedback everyone.

Based on what most have told me, I think I will defer to an older Apache 
version (1.3.x) and use that with the latest PHP. Not enough time to 
experiment with getting newer Apache to work with newest PHP.

- Tom

Evan Nemerson wrote:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
register globals is of in newer versions of php. you can re-enable it in the 
php.ini.. See 
http://www.php.net/manual/en/configuration.directives.php#ini.register-globals

On Thursday 27 March 2003 10:57 am, Tom Tsongas wrote:
 

I just recently upgraded to PHP 4.3.1 and Apache 2.0.44. I had been
previously running PHP 4.0.4 and Apache 1.3.20. I had a fully enabled
PHP website that I had been developing on for some time.
After I upgraded, the entire website is virtually non-functional. I keep
receiving 'Page cannot Display' or 'Document contains no data' errors.
I am not sure if this is a configuration issue on Apache or PHP. phpinfo
seems to work fine and I don't encounter issues accessing pure HTML
pages directly. Just the PHP ones?
Any ideas folks?

- Tom
   

- -- 
Businesses may come and go, but religion will last forever, for in no other 
endeavor does the consumer blame himself for product failure.

- -Harvard Lamphoon
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)
iD8DBQE+g0xM/rncFku1MdIRArx/AJ9HYhHbEQRTWwz3+qqFibKKubOmZACgp9yh
KqCV12CJR4Td92mAITOn6vw=
=F145
-END PGP SIGNATURE-
 




RE: [PHP] Stupid question perhaps?

2003-03-27 Thread Bryan Lipscy
Anything in the apache error_log?

-Original Message-
From: Tom Tsongas [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 27, 2003 10:58 AM
To: [EMAIL PROTECTED]
Subject: [PHP] Stupid question perhaps?


I just recently upgraded to PHP 4.3.1 and Apache 2.0.44. I had been 
previously running PHP 4.0.4 and Apache 1.3.20. I had a fully enabled 
PHP website that I had been developing on for some time.
After I upgraded, the entire website is virtually non-functional. I keep

receiving 'Page cannot Display' or 'Document contains no data' errors.

I am not sure if this is a configuration issue on Apache or PHP. phpinfo

seems to work fine and I don't encounter issues accessing pure HTML 
pages directly. Just the PHP ones?

Any ideas folks?

- Tom


-- 
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] Stupid question perhaps?

2003-03-27 Thread Justin French
PHP and Apache 2 don't boogie.

A lot has changed in PHP over those versions... did you read the
relase/upgrade notes across those versions??  I assume quite a lot of your
issues are in relation to the register_globals directive in php.ini, which
now defaults to off, not on.  If you switch it back, and downgrade Apache, I
dounbt you'll have many further problems.

You should compare other settings between your old php.ini and the new one
too, for little things like magic quotes, etc.


Justin


on 28/03/03 5:57 AM, Tom Tsongas ([EMAIL PROTECTED]) wrote:

 I just recently upgraded to PHP 4.3.1 and Apache 2.0.44. I had been
 previously running PHP 4.0.4 and Apache 1.3.20. I had a fully enabled
 PHP website that I had been developing on for some time.
 After I upgraded, the entire website is virtually non-functional. I keep
 receiving 'Page cannot Display' or 'Document contains no data' errors.
 
 I am not sure if this is a configuration issue on Apache or PHP. phpinfo
 seems to work fine and I don't encounter issues accessing pure HTML
 pages directly. Just the PHP ones?
 
 Any ideas folks?
 
 - Tom
 


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