Okay, so I run a webserver with apache 1.3.27, MySQL 3.23, and php 4.2.0.
I had all three of them playing nicely until I upgraded to php 4.2.3. The web interface works fine. My problem is that I also need to use the CLI (command line interface) to php, usually located under /usr/bin/php. But it just is never installed for me when I run make install. Here's the initial configure that I ran before make and make install:
./configure \
--with-mysql=/usr/local/mysql \
--with-xml \
--with-apache=../apache_1.3.27 \
--enable-track-vars \
--enable-cli \
--prefix=/usr/local/php \
--enable-debug=no \
--enable-safe-mode \
--with-exec-dir=/usr/bin \
--with-config-file-path=/usr/local/lib
Someone told me that the CLI would not be installed if I ran a with-apache or with-apxs install, so I tried it without that and still no /usr/bin/php (I also checked /usr/local/bin, /usr/php/bin, and /usr/local/lib dirs for this file). Any ideas?