Re: [PHP] index.php not loading up

2004-06-17 Thread Marek Kilimajer
Nguyen, Long P (Mission Systems) wrote --- napísal:: Doesn't look like it.. DocumentRoot /var/www/html short_open_tag is OFF. This means that ? does not mark the beginnig of PHP code. This: http://158.114.148.90/? echo $sys_graphics . alt=Keystone 2 / will result in this link:

Re: [PHP] index.php not loading up

2004-06-16 Thread John Nichel
Nguyen, Long P (Mission Systems) wrote: this is an entry in the php.ini file: error_reporting = E_ALL ~E_NOTICE where on the machine are the error logged to? Below that will be a line like this... display_errors = On If you setting is Off, change it to 'On', and restart your webserver. Also,

RE: [PHP] index.php not loading up

2004-06-16 Thread Nguyen, Long P (Mission Systems)
16, 2004 11:22 AM To: PHP Mailing Lists Subject: Re: [PHP] index.php not loading up Nguyen, Long P (Mission Systems) wrote: this is an entry in the php.ini file: error_reporting = E_ALL ~E_NOTICE where on the machine are the error logged to? Below that will be a line like

Re: [PHP] index.php not loading up

2004-06-16 Thread Greg Donald
On Wed, 16 Jun 2004 08:33:46 -0700, Nguyen, Long P (Mission Systems) [EMAIL PROTECTED] wrote: so going back to your original question - yes error set to display on, but I don't think I am seeing errors - where are the error logs? Depends on what web server software you're using. Mine are in

RE: [PHP] index.php not loading up

2004-06-16 Thread Nguyen, Long P (Mission Systems)
Systems) Cc: PHP Mailing Lists Subject: Re: [PHP] index.php not loading up On Wed, 16 Jun 2004 08:33:46 -0700, Nguyen, Long P (Mission Systems) [EMAIL PROTECTED] wrote: so going back to your original question - yes error set to display on, but I don't think I am seeing errors - where

RE: [PHP] index.php not loading up

2004-06-16 Thread R'twick Niceorgaw
Quoting Nguyen, Long P (Mission Systems) [EMAIL PROTECTED]: apache - and I would think that mine would also be /var/log/apache but that path does not exist - was this created automatically when apache was installed? probably its /var/log/httpd ? -R'twick -- This is a signature

RE: [PHP] index.php not loading up

2004-06-16 Thread Nguyen, Long P (Mission Systems)
: Wednesday, June 16, 2004 12:26 PM To: PHP Mailing Lists Subject: RE: [PHP] index.php not loading up Quoting Nguyen, Long P (Mission Systems) [EMAIL PROTECTED]: apache - and I would think that mine would also be /var/log/apache but that path does not exist - was this created automatically when

RE: [PHP] index.php not loading up

2004-06-16 Thread Michal Migurski
[Wed Jun 16 13:49:12 2004] [error] [client 158.114.144.121] File does not exist: /var/www/html/, referer: http://158.114.148.90/index.php3 [Wed Jun 16 13:49:14 2004] [error] [client 158.114.144.121] File does not exist: /var/www/html/, referer: http://158.114.148.90/index.php3 [Wed Jun 16

RE: [PHP] index.php not loading up

2004-06-16 Thread R'twick Niceorgaw
Quoting Nguyen, Long P (Mission Systems) [EMAIL PROTECTED]: Found it, thanks. The errors are: [Wed Jun 16 13:49:12 2004] [error] [client 158.114.144.121] File does not exist: /var/www/html/, referer: http://158.114.148.90/index.php3 /var/www/html/ check your httpd.conf file and see if

RE: [PHP] index.php not loading up

2004-06-16 Thread Nguyen, Long P (Mission Systems)
Doesn't look like it.. DocumentRoot /var/www/html -Original Message- From: R'twick Niceorgaw [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 16, 2004 1:10 PM To: [EMAIL PROTECTED] Subject: RE: [PHP] index.php not loading up Quoting Nguyen, Long P (Mission Systems) [EMAIL PROTECTED

[PHP] index.php not loading up

2004-06-15 Thread Nguyen, Long P (Mission Systems)
I am able to bring up a test.php file, but when I try to bring up this index.php file, the page does not load but the syntaxes below load up. Any ideas? Thank you. http://158.114.148.90/? echo $sys_graphics . alt=Keystone 2 / _ setCols(2); $loginBox-addRow('Username');

Re: [PHP] index.php not loading up

2004-06-15 Thread dave windsor
Assuming you're using apache and php 4, check httpd.conf for a the following data: LoadModule php4_module libexec/libphp4.so In the AddModule section: AddModule mod_php4.c AddType application/x-httpd-php .php .phtml If any of those aren't there, its possible that php

RE: [PHP] index.php not loading up

2004-06-15 Thread Nguyen, Long P (Mission Systems)
But if I am able to bring up test.php with the PHP configuration etc., then PHP is working right? -Original Message- From: dave windsor [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 15, 2004 10:47 AM To: Php-general Subject: Re: [PHP] index.php not loading up Assuming you're using

Re: [PHP] index.php not loading up

2004-06-15 Thread John Nichel
Nguyen, Long P (Mission Systems) wrote: But if I am able to bring up test.php with the PHP configuration etc., then PHP is working right? Do you have errors set to display in the php.ini? -- John C. Nichel KegWorks.com 716.856.9675 [EMAIL PROTECTED] -- PHP General Mailing List

Re: [PHP] index.php not loading up

2004-06-15 Thread Marek Kilimajer
Nguyen, Long P (Mission Systems) wrote --- napísal:: I am able to bring up a test.php file, but when I try to bring up this index.php file, the page does not load but the syntaxes below load up. Any ideas? Thank you. http://158.114.148.90/? echo $sys_graphics . alt=Keystone 2 / _