I installed PHP3 using RPMS, but Apache isn processing the php3 pages! Whats going on here?

0
Posted

I installed PHP3 using RPMS, but Apache isn processing the php3 pages! Whats going on here?

0

• Assuming you installed Apache PHP completely with RPMS, you need to uncomment or add some or all of the following lines in your http.conf file: # Extra Modules AddModule mod_php.c AddModule mod_php3.c AddModule mod_perl.c # Extra Modules LoadModule php_module modules/mod_php.so LoadModule php3_module modules/libphp3.so LoadModule perl_module modules/libperl.so • And add: AddType application/x-httpd-php3 .php3 To the global properties, or to the properties of the VirtualDomain you want to have PHP3 support added to.

Related Questions