configure php with apache

A

Anonymous

Guest
have you tried to restart the apache service after changing the httpd.conf?
 
Put the library files in this dir
/usr/lib/php4/

and check in /etc/php.ini file that extension Directory path is set to

extension_dir=/usr/lib/php4

restart your httpd

service httpd restart

if it still not work add this line to php.ini file below extension_dir line
extention = libraryname (libphp4.so)
 
Back
Top