Click to See Complete Forum and Search --> : PHP 4.3.2 and Apache 1.3.28 libphp4.so missing??


flea2k
07-25-2003, 02:07 PM
What am I doing wrong this keeps happening and it is driving me crazy. When I install Apache then do a make install of php it gives the following error message:

[activating module `php4' in /www/conf/httpd.conf]
cp libs/libphp4.so /www/libexec/libphp4.so
cp: cannot stat `libs/libphp4.so': No such file or directory
apxs:Break: Command failed with rc=1
make: *** [install-sapi] Error 1


These are the instructions I am using to install:

tar -xvzf apache-1.3.28.tar.gz
cd apache-1.3.28
./configure --prefix=/www –enable-module-so
make
make install
cd ..

tar -xvzf php-4.3.2.tar.gz
cd php-4.3.1

./configure --prefix=/www/php --with-apxs=/www/bin/apxs --with-config- filepath=/www/php --enable-sockets --with-mysql=/usr/local/mysql --with-zlib-dir=/usr/local --with-gd

make
make install

tsinka
07-26-2003, 02:06 AM
Hi,

which Linux distribution do you use (or which Unix if you don't use Linux).

There is a white space in --with-config- filepath=/www/php between - and filepath. Is this a typo ?


Thomas