i have problems installing php 4.0.6.
i have installed php for the first time
using:
./configure --with-apxs --with-config-file-path=/etc/ --with-pear --enable-ftp --with-gd --with-mysql
make
make install
it did work fine - that means it created php, working. in phpinfo(); shows the above configure command. i had no problems with this build.
now i try to do it again with the same source. i do it again > 'reconfigure', using another set of options:
./configure --with-apxs --with-gd --with-pdflib=/usr/local --with-jpeg-dir=/usr/lib/ --with-png-dir=/usr/lib/ --with-tiff-dir=/usr/lib --with-zlib-dir=/usr/lib
make
make install
it goes smoothly, no problems with paths, or anything. make and make install look as they worked. or shall work.
BUT IT LOOKS IT CAN'T OVERWRITE THE OLD PHP.
the /usr/lib/apache/libphp4.so has the last build date. the one with latest configure command. but the phpinfo(); shows same information as before (as it were not updated), including the 'old' configure command.
i am running i all as root, so there is no permission problem.
the php in fact behaves as it were not bulit new.
ARE THERE ANOTHER STEPS TO BE TAKEN WHEN UPDATING PHP?
thank you for your help.