Hi there, I have installed Apache 1.3.9 with PHP3:
# tar xvzf apache_1.3.9.tar.gz # tar xvzf php-3.0.12.tar.gz # cd apache_1.3.9 # ./configure --prefix=<apache-install-dir> # cd ../php-3.0.12 # ./configure --with-mysql=<path-to-mysql-src> --with-apache=../apache_1.3.9 --enable-track-vars # make; make install # cd ../apache_1.3.9 # ./configure --prefix=<apache-install-dir> --activate-module=src/modules/php3/libphp3.a # make # cd ../php-3.0.12 # cp php3.ini-dist /usr/local/lib/php3.ini The problem is: I didn't get any files on <apache-install-dir> ??? # ls -al <apache-install-dir> total 0 # How this could be, and how to solve the problem?