Hi all, I've got a plan in mind but wanted to get it double checked. I have a box with Apache 1.3.27 that was configured as so:
SSL_BASE="/usr/opt/ssl" \
./configure \
"--with-layout=Apache" \
"--enable-module=rewrite" \
"--enable-module=log_agent" \
"--enable-module=log_referer" \
"--enable-module=ssl" \
"--prefix=/usr/local/apache/build" \
"--activate-module=src/modules/php4/libphp4.a" \
"--activate-module=src/modules/perl/libperl.a" \
The current version of PHP is 4.2.3 and was configured:
'./configure' \
'--enable-cli' \
'--prefix=/usr/opt/apache/build' \
'--with-gd=/usr/opt/apache/build' \
'--with-ldap=/usr/opt/apache/build' \
'--with-mysql=/usr/opt/apache/build' \
'--with-apache=/usr/opt/apache/apache_1.3.27' \
'--with-png-dir=/usr/opt/apache/build' \
'--with-zlib=/usr' \
"$@"
I need to upgrade to PHP 4.3.10. I've already downloaded the src and configured it the exact same way. I've also already ran 'make' and 'make install'.
Now I'm fuzzy as to my next steps. Do I?:
- stop current apache
- configure apache again the same way as above
- run make
- restart apache
or can I simply run 'configure' and 'make' and then do an 'apachectl restart'? I'm just having a hard time finding upgrade steps for static PHP installs.
Thanks for ANY input! 😃