Hello,
I am having some difficulty getting php to work on my box. I am running Redhat 3.0 AS, Apache 2.0.49, PHP 5.0.2. The build, make and install went successfully. I copied the php.ini-dist to /usr/local/lib/php.ini
I added the following lines to the httpd.conf file for apache:
I then stopped and started apache. When I bring up this php page, I get a blank screen. my php files are 644 permissions:
Any other ideas as to where to look for a problem spot? funny thing, when I installed it on my other linux box, it went perfect the first time. Thanks in advance!
I am having some difficulty getting php to work on my box. I am running Redhat 3.0 AS, Apache 2.0.49, PHP 5.0.2. The build, make and install went successfully. I copied the php.ini-dist to /usr/local/lib/php.ini
I added the following lines to the httpd.conf file for apache:
Code:
LoadModule php5_module modules/libphp5.so
Code:
<IfModule mod_php5.c>
AddType application/x-httpd-php .php
AddType application/x-httpd-php .phtml
AddType application/x-httpd-php-source .phps
</IfModule>
Code:
<html>
<head>
<title>PHP Installation Test</title>
</head>
<body>
<?php phpinfo(); ?>
</body>
</html>
Any other ideas as to where to look for a problem spot? funny thing, when I installed it on my other linux box, it went perfect the first time. Thanks in advance!