i just reinstalled FreeBSD 5.3 on my server and i've compilied apache 1.3.33, but the version of PHP in the ports collection (4.3.9) is not the latest. how would I get the latest version (4.3.10) into the ports collection?
just download that tar.gz file from www.php.net and compile it
cd into the dir where php was dled
tar zxvpf php-4.3.10.tar.gz
cd php-4.3.10
./configure --with-mysql=/path/to/mysql --with-apxs=/path/to/apache/bin/apxs
make
make install
i cant find libpng or libjpeg in the ports collection. the nearest i found was jpeg and png, which were already installed. i recompiled php and it still doesnt work. am i missing anything?
Comments
cd into the dir where php was dled
tar zxvpf php-4.3.10.tar.gz
cd php-4.3.10
./configure --with-mysql=/path/to/mysql --with-apxs=/path/to/apache/bin/apxs
make
make install
and your good, its that easy
And my server is a 333MHz Celery LOL
presumably i just add to the confgure line tom said?
EDIT: when i got to http://bod.no-ip.org/sig3.php
it says
"sig3.php cannot be displayed becuase it contains errors"
im recompliling again now
EDIT2: i tried that configure line above and it worked (dance)
Thanks Tom