Re: [PHP] Blank PHP pages...

2002-10-17 Thread René Moonen

I had the same thing just two days ago. This is what happend:

I have some code using include files in this way:

1 ?php
2
3 // some php code
4 include(xlib.inc);
5 // some php code
6
7 ?

The include file looks like

1 ?php
2 // some code
3 ?

The problem was in line 3 of the include file. If there is a line feed 
behind ? , the code does not work - gives a blank page just like yours.
Removing that linefeed solved my problem.

I did not yet figure out why this happend. It has someting to do with 
html headers being send. The line feed behind ? is considered HTML 
output, so headers are send at that point. Somehow the rest of the 
PHP-code gets lost.

Anyway... with a little luck this could be of any help to you.

Good luck

René





Angel Gabriel wrote:

... I've got PHP working, on my server, I know this because I used that
small PHP script that shows all the variables, and that worked fine. The
problem seems to be that every other script shows me a blank pages. I'm
using redhat 7.3,  and I installed PHP, MySQL and Apache from RPM's and they
are all up2date - I have no idea what I could have missed. Has anyone else
encountered a similar problem, and if so, how did you remedy it? I have
followed the install instructions to the letter, and I can't seem to find
what the problem is. Any suggestions, hints or tips, greatfully recieved!
Thanks in advance.

***
Not everyone is touched by an Angel..and those that are, never forget
the experience.
***
If you want guest list for bare club
nights.http://raw-talent.hopto.org/mailman/clubnights
***
Can you sing, dance, MC, DJ, do you have talent?Send an email to
[EMAIL PROTECTED]
***


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002



  





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




[PHP] Blank PHP pages...

2002-10-16 Thread Angel Gabriel

... I've got PHP working, on my server, I know this because I used that
small PHP script that shows all the variables, and that worked fine. The
problem seems to be that every other script shows me a blank pages. I'm
using redhat 7.3,  and I installed PHP, MySQL and Apache from RPM's and they
are all up2date - I have no idea what I could have missed. Has anyone else
encountered a similar problem, and if so, how did you remedy it? I have
followed the install instructions to the letter, and I can't seem to find
what the problem is. Any suggestions, hints or tips, greatfully recieved!
Thanks in advance.

***
Not everyone is touched by an Angel..and those that are, never forget
the experience.
***
If you want guest list for bare club
nights.http://raw-talent.hopto.org/mailman/clubnights
***
Can you sing, dance, MC, DJ, do you have talent?Send an email to
[EMAIL PROTECTED]
***


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002



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




RE: [PHP] Blank PHP pages...

2002-10-16 Thread Jay Blanchard

[snip]
... I've got PHP working, on my server, I know this because I used that
small PHP script that shows all the variables, and that worked fine. The
problem seems to be that every other script shows me a blank pages. I'm
using redhat 7.3,  and I installed PHP, MySQL and Apache from RPM's and they
are all up2date - I have no idea what I could have missed. Has anyone else
encountered a similar problem, and if so, how did you remedy it? I have
followed the install instructions to the letter, and I can't seem to find
what the problem is. Any suggestions, hints or tips, greatfully recieved!
Thanks in advance.
[/snip]

Check register_globals in php.ini. It is probably set to off.

HTH!

Jay



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




RE: [PHP] Blank PHP pages..

2002-10-16 Thread Angel Gabriel

I checked and register_globals is set to on - so that can't be the
problem.

-Original Message-
From: Jay Blanchard [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 16, 2002 2:33 PM
To: 'Angel Gabriel'; [EMAIL PROTECTED]
Subject: RE: [PHP] Blank PHP pages..


[snip]
 I've got PHP working, on my server, I know this because I used that
small PHP script that shows all the variables, and that worked fine. The
problem seems to be that every other script shows me a blank pages. I'm
using redhat 7.3,  and I installed PHP, MySQL and Apache from RPM's and they
are all up2date - I have no idea what I could have missed. Has anyone else
encountered a similar problem, and if so, how did you remedy it? I have
followed the install instructions to the letter, and I can't seem to find
what the problem is. Any suggestions, hints or tips, greatfully recieved!
Thanks in advance
[/snip]

Check register_globals in php.ini. It is probably set to off

HTH!

Jay




---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002



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




Re[2]: [PHP] Blank PHP pages..

2002-10-16 Thread Tom Rogers

Hi,

Thursday, October 17, 2002, 12:58:02 AM, you wrote:
AG I checked and register_globals is set to on - so that can't be the
AG problem.

Stop teasing us and show us the code you have on those pages :)

-- 
regards,
Tom


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




Re: [PHP] Blank PHP pages..

2002-10-16 Thread Marek Kilimajer

Do you get at least any output, i.e. empty html document? Check in the 
logs if your server is not dying.

Angel Gabriel wrote:

I checked and register_globals is set to on - so that can't be the
problem.

-Original Message-
From: Jay Blanchard [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 16, 2002 2:33 PM
To: 'Angel Gabriel'; [EMAIL PROTECTED]
Subject: RE: [PHP] Blank PHP pages..


[snip]
 I've got PHP working, on my server, I know this because I used that
small PHP script that shows all the variables, and that worked fine. The
problem seems to be that every other script shows me a blank pages. I'm
using redhat 7.3,  and I installed PHP, MySQL and Apache from RPM's and they
are all up2date - I have no idea what I could have missed. Has anyone else
encountered a similar problem, and if so, how did you remedy it? I have
followed the install instructions to the letter, and I can't seem to find
what the problem is. Any suggestions, hints or tips, greatfully recieved!
Thanks in advance
[/snip]

Check register_globals in php.ini. It is probably set to off

HTH!

Jay




---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002



  



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




RE: [PHP] Blank PHP pages.

2002-10-16 Thread Angel Gabriel

I get absolutly NOTHING! I get the most basic HTML page, but blank, as in
the following

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN
HTMLHEAD
META content=text/html; charset=windows-1252
http-equiv=Content-Type/HEAD
BODY/BODY/HTML



-Original Message-
From: Marek Kilimajer [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 16, 2002 4:26 PM
To: PHP
Subject: Re: [PHP] Blank PHP pages.


Do you get at least any output, i.e. empty html document? Check in the
logs if your server is not dying

Angel Gabriel wrote:

I checked and register_globals is set to on - so that can't be the
problem

-Original Message-
From: Jay Blanchard [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 16, 2002 2:33 PM
To: 'Angel Gabriel'; [EMAIL PROTECTED]
Subject: RE: [PHP] Blank PHP pages.


[snip]
 I've got PHP working, on my server, I know this because I used that
small PHP script that shows all the variables, and that worked fine. The
problem seems to be that every other script shows me a blank pages. I'm
using redhat 7.3,  and I installed PHP, MySQL and Apache from RPM's and
they
are all up2date - I have no idea what I could have missed. Has anyone else
encountered a similar problem, and if so, how did you remedy it? I have
followed the install instructions to the letter, and I can't seem to find
what the problem is. Any suggestions, hints or tips, greatfully recieved!
Thanks in advance
[/snip]

Check register_globals in php.ini. It is probably set to off

HTH!

Jay




---
Incoming mail is certified Virus Free
Checked by AVG anti-virus system (http://www.grisoft.com)
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002

---
Outgoing mail is certified Virus Free
Checked by AVG anti-virus system (http://www.grisoft.com)
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002







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



---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002



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




Re: [PHP] Blank PHP pages.

2002-10-16 Thread Jason Young

Make sure all of your code is executing properly.

I had this problem for a little bit, actually.
Edit your php settings to give you errors on the output, or just check 
your server logs.. there's gotta be something there.

Just one problem and my whole PHP page failed to print anything within 
? / ? tags.

Angel Gabriel wrote:

 I get absolutly NOTHING! I get the most basic HTML page, but blank, as in
 the following



 -Original Message-
 From: Marek Kilimajer [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, October 16, 2002 4:26 PM
 To: PHP
 Subject: Re: [PHP] Blank PHP pages.


 Do you get at least any output, i.e. empty html document? Check in the
 logs if your server is not dying

 Angel Gabriel wrote:


 I checked and register_globals is set to on - so that can't be the
 problem
 
 -Original Message-
 From: Jay Blanchard [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, October 16, 2002 2:33 PM
 To: 'Angel Gabriel'; [EMAIL PROTECTED]
 Subject: RE: [PHP] Blank PHP pages.
 
 
 [snip]
  I've got PHP working, on my server, I know this because I used that
 small PHP script that shows all the variables, and that worked fine. The
 problem seems to be that every other script shows me a blank pages. I'm
 using redhat 7.3,  and I installed PHP, MySQL and Apache from RPM's and

 they

 are all up2date - I have no idea what I could have missed. Has anyone 
 else
 encountered a similar problem, and if so, how did you remedy it? I have
 followed the install instructions to the letter, and I can't seem to find
 what the problem is. Any suggestions, hints or tips, greatfully recieved!
 Thanks in advance
 [/snip]
 
 Check register_globals in php.ini. It is probably set to off
 
 HTH!
 
 Jay
 
 
 
 
 ---
 Incoming mail is certified Virus Free
 Checked by AVG anti-virus system (http://www.grisoft.com)
 Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002
 
 ---
 Outgoing mail is certified Virus Free
 Checked by AVG anti-virus system (http://www.grisoft.com)
 Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002
 
 
 
 
 



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



 ---
 Incoming mail is certified Virus Free.
 Checked by AVG anti-virus system (http://www.grisoft.com).
 Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002

 ---
 Outgoing mail is certified Virus Free.
 Checked by AVG anti-virus system (http://www.grisoft.com).
 Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002




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




RE: [PHP] Blank PHP pages.

2002-10-16 Thread Jennifer Swofford

What's your PHP code look like?

--- Angel Gabriel [EMAIL PROTECTED] wrote:
 I get absolutly NOTHING! I get the most basic HTML
 page, but blank, as in
 the following

 !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0
 Transitional//EN
 HTMLHEAD
 META content=text/html; charset=windows-1252
 http-equiv=Content-Type/HEAD
 BODY/BODY/HTML


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




Re: [PHP] Blank PHP pages.

2002-10-16 Thread Marek Kilimajer

That is NOT nothing. This is comming from your page, so check your code.

Angel Gabriel wrote:

I get absolutly NOTHING! I get the most basic HTML page, but blank, as in
the following

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN
HTMLHEAD
META content=text/html; charset=windows-1252
http-equiv=Content-Type/HEAD
BODY/BODY/HTML



-Original Message-
From: Marek Kilimajer [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 16, 2002 4:26 PM
To: PHP
Subject: Re: [PHP] Blank PHP pages.


Do you get at least any output, i.e. empty html document? Check in the
logs if your server is not dying

Angel Gabriel wrote:

  

I checked and register_globals is set to on - so that can't be the
problem

-Original Message-
From: Jay Blanchard [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 16, 2002 2:33 PM
To: 'Angel Gabriel'; [EMAIL PROTECTED]
Subject: RE: [PHP] Blank PHP pages.


[snip]
 I've got PHP working, on my server, I know this because I used that
small PHP script that shows all the variables, and that worked fine. The
problem seems to be that every other script shows me a blank pages. I'm
using redhat 7.3,  and I installed PHP, MySQL and Apache from RPM's and


they
  

are all up2date - I have no idea what I could have missed. Has anyone else
encountered a similar problem, and if so, how did you remedy it? I have
followed the install instructions to the letter, and I can't seem to find
what the problem is. Any suggestions, hints or tips, greatfully recieved!
Thanks in advance
[/snip]

Check register_globals in php.ini. It is probably set to off

HTH!

Jay




---
Incoming mail is certified Virus Free
Checked by AVG anti-virus system (http://www.grisoft.com)
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002

---
Outgoing mail is certified Virus Free
Checked by AVG anti-virus system (http://www.grisoft.com)
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002









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



---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002


  



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




RE: [PHP] Blank PHP pages

2002-10-16 Thread Angel Gabriel

Hmm.. I'm trying to run PHP Nuke v6 ... and I also got the same when trying
to squirrelmail..

-Original Message-
From: Marek Kilimajer [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 16, 2002 5:10 PM
To: PHP
Subject: Re: [PHP] Blank PHP pages


That is NOT nothing. This is comming from your page, so check your code

Angel Gabriel wrote:

I get absolutly NOTHING! I get the most basic HTML page, but blank, as in
the following...

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN
HTMLHEAD
META content=text/html; charset=windows-1252
http-equiv=Content-Type/HEAD
BODY/BODY/HTML



-Original Message-
From: Marek Kilimajer [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 16, 2002 4:26 PM
To: PHP
Subject: Re: [PHP] Blank PHP pages


Do you get at least any output, i.e. empty html document? Check in the
logs if your server is not dying

Angel Gabriel wrote:



I checked and register_globals is set to on - so that can't be the
problem

-Original Message-
From: Jay Blanchard [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 16, 2002 2:33 PM
To: 'Angel Gabriel'; [EMAIL PROTECTED]
Subject: RE: [PHP] Blank PHP pages


[snip]
 I've got PHP working, on my server, I know this because I used that
small PHP script that shows all the variables, and that worked fine. The
problem seems to be that every other script shows me a blank pages. I'm
using redhat 7.3,  and I installed PHP, MySQL and Apache from RPM's and


they


are all up2date - I have no idea what I could have missed. Has anyone else
encountered a similar problem, and if so, how did you remedy it? I have
followed the install instructions to the letter, and I can't seem to find
what the problem is. Any suggestions, hints or tips, greatfully recieved!
Thanks in advance
[/snip]

Check register_globals in php.ini. It is probably set to off

HTH!

Jay




---
Incoming mail is certified Virus Free
Checked by AVG anti-virus system (http://www.grisoft.com)
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002

---
Outgoing mail is certified Virus Free
Checked by AVG anti-virus system (http://www.grisoft.com)
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002









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



---
Incoming mail is certified Virus Free
Checked by AVG anti-virus system (http://www.grisoft.com)
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002

---
Outgoing mail is certified Virus Free
Checked by AVG anti-virus system (http://www.grisoft.com)
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002






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



---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002



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




RE: [PHP] Blank PHP pages.

2002-10-16 Thread Angel Gabriel

I already did that, and it came up all pretty, and purply. :)

-Original Message-
From: Matt [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 16, 2002 5:26 PM
To: Angel Gabriel
Subject: Re: [PHP] Blank PHP pages.


The simplest thing to try is to create a phpinfo.php script, putting in it:
?php
phpinfo();
?

You should be a nice pretty page of the php config

- Original Message -
From: Angel Gabriel [EMAIL PROTECTED]
To: 'Marek Kilimajer' [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Wednesday, October 16, 2002 12:04 PM
Subject: RE: [PHP] Blank PHP pages


 I get absolutly NOTHING! I get the most basic HTML page, but blank, as in
 the following...

 !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN
 HTMLHEAD
 META content=text/html; charset=windows-1252
 http-equiv=Content-Type/HEAD
 BODY/BODY/HTML



 -Original Message-
 From: Marek Kilimajer [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, October 16, 2002 4:26 PM
 To: PHP
 Subject: Re: [PHP] Blank PHP pages


 Do you get at least any output, i.e. empty html document? Check in the
 logs if your server is not dying

 Angel Gabriel wrote:

 I checked and register_globals is set to on - so that can't be the
 problem
 
 -Original Message-
 From: Jay Blanchard [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, October 16, 2002 2:33 PM
 To: 'Angel Gabriel'; [EMAIL PROTECTED]
 Subject: RE: [PHP] Blank PHP pages
 
 
 [snip]
  I've got PHP working, on my server, I know this because I used that
 small PHP script that shows all the variables, and that worked fine. The
 problem seems to be that every other script shows me a blank pages. I'm
 using redhat 7.3,  and I installed PHP, MySQL and Apache from RPM's and
 they
 are all up2date - I have no idea what I could have missed. Has anyone
else
 encountered a similar problem, and if so, how did you remedy it? I have
 followed the install instructions to the letter, and I can't seem to find
 what the problem is. Any suggestions, hints or tips, greatfully recieved!
 Thanks in advance
 [/snip]
 
 Check register_globals in php.ini. It is probably set to off
 
 HTH!
 
 Jay
 
 
 
 
 ---
 Incoming mail is certified Virus Free
 Checked by AVG anti-virus system (http://www.grisoft.com)
 Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002
 
 ---
 Outgoing mail is certified Virus Free
 Checked by AVG anti-virus system (http://www.grisoft.com)
 Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002
 
 
 
 
 


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



 ---
 Incoming mail is certified Virus Free
 Checked by AVG anti-virus system (http://www.grisoft.com)
 Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002

 ---
 Outgoing mail is certified Virus Free
 Checked by AVG anti-virus system (http://www.grisoft.com)
 Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002



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







---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002



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




Re: [PHP] Blank PHP pages.

2002-10-16 Thread Matt

Then most likely display_errors is off in  php.ini and you have a syntax
error in an include file used by all of the scripts.

- Original Message -
From: Angel Gabriel [EMAIL PROTECTED]
To: 'Matt' [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Wednesday, October 16, 2002 12:40 PM
Subject: RE: [PHP] Blank PHP pages.


 I already did that, and it came up all pretty, and purply. :)

 -Original Message-
 From: Matt [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, October 16, 2002 5:26 PM
 To: Angel Gabriel
 Subject: Re: [PHP] Blank PHP pages.


 The simplest thing to try is to create a phpinfo.php script, putting in
it:
 ?php
 phpinfo();
 ?

 You should be a nice pretty page of the php config



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




Re: [PHP] Blank PHP pages

2002-10-16 Thread Marek Kilimajer

Check if you have display_errors on

Angel Gabriel wrote:

Hmm.. I'm trying to run PHP Nuke v6 ... and I also got the same when trying
to squirrelmail..

-Original Message-
From: Marek Kilimajer [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 16, 2002 5:10 PM
To: PHP
Subject: Re: [PHP] Blank PHP pages


That is NOT nothing. This is comming from your page, so check your code

Angel Gabriel wrote:

  

I get absolutly NOTHING! I get the most basic HTML page, but blank, as in
the following...

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN
HTMLHEAD
META content=text/html; charset=windows-1252
http-equiv=Content-Type/HEAD
BODY/BODY/HTML



-Original Message-
From: Marek Kilimajer [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 16, 2002 4:26 PM
To: PHP
Subject: Re: [PHP] Blank PHP pages


Do you get at least any output, i.e. empty html document? Check in the
logs if your server is not dying

Angel Gabriel wrote:





I checked and register_globals is set to on - so that can't be the
problem

-Original Message-
From: Jay Blanchard [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 16, 2002 2:33 PM
To: 'Angel Gabriel'; [EMAIL PROTECTED]
Subject: RE: [PHP] Blank PHP pages


[snip]
 I've got PHP working, on my server, I know this because I used that
small PHP script that shows all the variables, and that worked fine. The
problem seems to be that every other script shows me a blank pages. I'm
using redhat 7.3,  and I installed PHP, MySQL and Apache from RPM's and


  

they




are all up2date - I have no idea what I could have missed. Has anyone else
encountered a similar problem, and if so, how did you remedy it? I have
followed the install instructions to the letter, and I can't seem to find
what the problem is. Any suggestions, hints or tips, greatfully recieved!
Thanks in advance
[/snip]

Check register_globals in php.ini. It is probably set to off

HTH!

Jay




---
Incoming mail is certified Virus Free
Checked by AVG anti-virus system (http://www.grisoft.com)
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002

---
Outgoing mail is certified Virus Free
Checked by AVG anti-virus system (http://www.grisoft.com)
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002







  

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



---
Incoming mail is certified Virus Free
Checked by AVG anti-virus system (http://www.grisoft.com)
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002

---
Outgoing mail is certified Virus Free
Checked by AVG anti-virus system (http://www.grisoft.com)
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002








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



---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002


  



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




Re: [PHP] Blank PHP pages.

2002-10-16 Thread Mika Tuupola

On Wed, 16 Oct 2002, Marek Kilimajer wrote:


That is probably generated by IE when it receives nothing. Check
what show source with Netscape on lynx -source gives you.

 That is NOT nothing. This is comming from your page, so check your code.
 
 Angel Gabriel wrote:
 
 I get absolutly NOTHING! I get the most basic HTML page, but blank, as in
 the following
 
 !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN
 HTMLHEAD
 META content=text/html; charset=windows-1252
 http-equiv=Content-Type/HEAD
 BODY/BODY/HTML
 
 
 
 -Original Message-
 From: Marek Kilimajer [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, October 16, 2002 4:26 PM
 To: PHP
 Subject: Re: [PHP] Blank PHP pages.
 
 
 Do you get at least any output, i.e. empty html document? Check in the
 logs if your server is not dying
 
 Angel Gabriel wrote:
 
   
 
 I checked and register_globals is set to on - so that can't be the
 problem
 
 -Original Message-
 From: Jay Blanchard [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, October 16, 2002 2:33 PM
 To: 'Angel Gabriel'; [EMAIL PROTECTED]
 Subject: RE: [PHP] Blank PHP pages.
 
 
 [snip]
  I've got PHP working, on my server, I know this because I used that
 small PHP script that shows all the variables, and that worked fine. The
 problem seems to be that every other script shows me a blank pages. I'm
 using redhat 7.3,  and I installed PHP, MySQL and Apache from RPM's and
 
 
 they
   
 
 are all up2date - I have no idea what I could have missed. Has anyone else
 encountered a similar problem, and if so, how did you remedy it? I have
 followed the install instructions to the letter, and I can't seem to find
 what the problem is. Any suggestions, hints or tips, greatfully recieved!
 Thanks in advance
 [/snip]
 
 Check register_globals in php.ini. It is probably set to off
 
 HTH!
 
 Jay
 
 
 
 
 ---
 Incoming mail is certified Virus Free
 Checked by AVG anti-virus system (http://www.grisoft.com)
 Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002
 
 ---
 Outgoing mail is certified Virus Free
 Checked by AVG anti-virus system (http://www.grisoft.com)
 Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002
 
 
 
 
 
 
 
 
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 
 
 ---
 Incoming mail is certified Virus Free.
 Checked by AVG anti-virus system (http://www.grisoft.com).
 Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002
 
 ---
 Outgoing mail is certified Virus Free.
 Checked by AVG anti-virus system (http://www.grisoft.com).
 Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002
 
 
   
 
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 


-- 
Mika Tuupola  http://www.appelsiini.net/~tuupola/


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




Re: [PHP] Blank PHP pages.

2002-10-16 Thread Ray Hunter


it is generated by IE..notice the character set..

Have other browsers been used to verify?


On Wed, 2002-10-16 at 14:40, Mika Tuupola wrote:
 On Wed, 16 Oct 2002, Marek Kilimajer wrote:
 
 
   That is probably generated by IE when it receives nothing. Check
   what show source with Netscape on lynx -source gives you.
 
  That is NOT nothing. This is comming from your page, so check your code.
  
  Angel Gabriel wrote:
  
  I get absolutly NOTHING! I get the most basic HTML page, but blank, as in
  the following
  
  !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN
  HTMLHEAD
  META content=text/html; charset=windows-1252
  http-equiv=Content-Type/HEAD
  BODY/BODY/HTML
  
  
  
  -Original Message-
  From: Marek Kilimajer [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, October 16, 2002 4:26 PM
  To: PHP
  Subject: Re: [PHP] Blank PHP pages.
  
  
  Do you get at least any output, i.e. empty html document? Check in the
  logs if your server is not dying
  
  Angel Gabriel wrote:
  

  
  I checked and register_globals is set to on - so that can't be the
  problem
  
  -Original Message-
  From: Jay Blanchard [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, October 16, 2002 2:33 PM
  To: 'Angel Gabriel'; [EMAIL PROTECTED]
  Subject: RE: [PHP] Blank PHP pages.
  
  
  [snip]
   I've got PHP working, on my server, I know this because I used that
  small PHP script that shows all the variables, and that worked fine. The
  problem seems to be that every other script shows me a blank pages. I'm
  using redhat 7.3,  and I installed PHP, MySQL and Apache from RPM's and
  
  
  they

  
  are all up2date - I have no idea what I could have missed. Has anyone else
  encountered a similar problem, and if so, how did you remedy it? I have
  followed the install instructions to the letter, and I can't seem to find
  what the problem is. Any suggestions, hints or tips, greatfully recieved!
  Thanks in advance
  [/snip]
  
  Check register_globals in php.ini. It is probably set to off
  
  HTH!
  
  Jay
  
  
  
  
  ---
  Incoming mail is certified Virus Free
  Checked by AVG anti-virus system (http://www.grisoft.com)
  Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002
  
  ---
  Outgoing mail is certified Virus Free
  Checked by AVG anti-virus system (http://www.grisoft.com)
  Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002
  
  
  
  
  
  
  
  
  
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
  
  
  
  ---
  Incoming mail is certified Virus Free.
  Checked by AVG anti-virus system (http://www.grisoft.com).
  Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002
  
  ---
  Outgoing mail is certified Virus Free.
  Checked by AVG anti-virus system (http://www.grisoft.com).
  Version: 6.0.404 / Virus Database: 228 - Release Date: 10/15/2002
  
  

  
  
  
  -- 
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
  
  
 
 
 -- 
 Mika Tuupola  http://www.appelsiini.net/~tuupola/
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
-- 
Thank you,

Ray Hunter



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