-
PHP on Slackware 13 64
Hello,
I am trying to get PHP5 working on Apache 2.2.13. When loading the PHP file in the web browser, the server does not appear to be passing the php off to the interpreter. Instead, the browser just treats the first command as an HTML comment and displays the rest to the user.
Relevant lines from httpd.conf:
LoadModule php5_module lib64/httpd/modules/libphp5.so
AddType text/html .php
#AddType application/x-httpd-php .php
AddHandler php-script .php
The second AddType is commented out because it causes Firefox to try and download the php instead of displaying it.
-
Output from httpd -M:
Loaded Modules:
core_module (static)
mpm_prefork_module (static)
http_module (static)
so_module (static)
php5_module (shared)
.
.
.
.
-
Got it!
Got it working! Have the following lines in httpd.conf:
Code:
AddType text/html .php
AddType application/x-httpd-php .php
AddHandler php-script .php
<FilesMatch "\.php$">
SetHandler application/x-httpd-php
</FilesMatch>