Hello All
I'm new at the linux stuff so I've used a script in the past to install/compile mysql/apache/ssl/php .. I'm trying to add a flag to the php configure to (--with-jpeg-dir) however when I run the script to install php then it still doesn't take with I do a phpinfo().
'./configure' '--with-apxs=/usr/local/apache/bin/apxs' '--with-config-file-path=/usr/local/apache/conf' '--enable-versioning' '--with-mysql' '--enable-ftp' '--with-gd=/usr/local/gd1.3' '--enable-bcmath' '--disable-debug' '--enable-memory-limit=yes' '--enable-trans-sid' '--enable-track-vars'
Thus no --with-jpeg-dir
This my install script..
/usr/local/apache/bin/apachectl stop
cd php-4.0.4pl1
./configure \
--with-apxs=/usr/local/apache/bin/apxs \
--with-config-file-path=/usr/local/apache/conf \
--enable-versioning \
--with-mysql \
--enable-ftp \
--with-gd=/usr/local/gd1.3 \
--enable-bcmath \
--disable-debug \
--enable-memory-limit=yes \
--enable-trans-sid \
--enable-track-vars \
--with-jpeg-dir
make
make install
cp /usr/local/php-4.0.4pl1/php.ini-dist /usr/local/apache/conf/php.ini
Start Apache:
/usr/local/apache/bin/apachectl startssl
This seems to copy over the new .so file to the libexec on apache but for some reason the new tag doesn't load..?
Thanks All