Randy Patterson wrote:
> Hey,
>
> [Note:] This is a different problem from the one I posted earlier today.
>
> I can't get my LAMP server setup to run PHP script.
>
> As returned by apache2ctl, I am running;
>
> Apache/2.2.4 (Debian) PHP/5.2.3-1+b1
>
> I point my browser to;
>
> http://localhost/apache2-default/test.php
>
> The file test.php contains this code;
>
> <html><body>
> <h1>PHP Test</h1>
> <br />
> <?php print "Hello World!"; ?>
> </body></html>
>
> The browser outputs only;
>
> PHP Test
>
Check in your httpd.conf that you have all of the following:
LoadModule php5_module modules/libphp5.so
AddHandler php5-script php
AddType text/html php
Make sure they're in there and uncommented. And that you restart httpd.
brian