I've seen numerous guides to getting php working with Apache and am having problems displaying
<?php phpinfo(); ?>
What is the minimum I need to install?
Is this sufficient?
<?php phpinfo(); ?>
What is the minimum I need to install?
Is this sufficient?
sh:
cat <<EOF >/usr/local/etc/apache24/Includes/php.conf
<IfModule dir_module>
DirectoryIndex index.php index.html
<FilesMatch "\.php$">
SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch "\.phps$">
SetHandler application/x-httpd-php-source
</FilesMatch>
</IfModule>
EOF