Hi there I'm trying to instal PHP 4.2.3 + Apache 1.3 on a RH8 machine (the mysql installation is ok), here are the steps I'm following when compilling:
cd /path_to_apache_source
./configure --prefix=/path_to_apache_install_dir
cd ..
cd /path_to_php _install
./configure --with-mysql=/path_to_mysql_install_dir --with-apache=/path_to_apache_source
make
make install
cp php.ini-dist /usr/local/lib/php.ini
cd ..
cd /path_to_apache_source
./configure --prefix=/path_to_apache_install_dir --activate-module=src/modules/php4/libphp4.a
make
make install
But when I try to run apachectl start I get :
Syntax error on line 6 of /etc/httpd/conf.d/php.conf:
Cannot load /etc/httpd/modules/libphp4.so into server: /etc/httpd/modules/libphp4.so: undefined symbol: ap_block_alarms
What's happpening???
Thanks to all ...