I installed apache-1.3.19, mysql-3.23.39, and php-3.0.18
to install apache I did "./configure --prefix=/usr/local/apache \ "
make
make install
when installing php I did
"./configure -with-apxs="/usr/local/apache/bin/apxs
make
make install"
I wrote a .php3 file and placed it into /usr/local/apache/htdocs
I was able to see the script in a browser!
I can verify that mysql is running by typing "./mysqladmin version" and seeing Server version 3.23.39
uptime: 26 sec
I can also create tables from the command line.
NOW COMES MY PROBLEM....I WANT TO RECOMPILE PHP WITH MYSQL SUPPORT SO THAT I CAN WRITE PHP SCRIPTS THAT INSERT DATA INTO TABLES.
TO RECOMPILE PHP, I TRIED
"./configure --prefix=/usr/local/apache \ -with-mysql=/usr/local/src/mysql
make
make install"
THEN WHEN I TRY TO RESTART APACHE.....
"./apachectl start"
CANNOT LOAD /USR/LOCAL/APACHE/LIBEXEC/LIBPHP3.SO INTO SERVER UNDEFINED SYMBOL:UNCOMPRESS"
What is going on??? the libphp3.so file DOES exist in the above directory!!