Upgrade php from 5.2.6 to 5.2.9

Hello,

Im trying to upgrade my php to be PCI compliant, I tried using

portupgrade -fpb php5\*

which basically reinstalled the same version I had, does anyone know the correct way to do this ?

Thank You:)
 
Looks like that pretty much did the trick, however somehow i didn't, include the curl extension ? My script is complaining about it now. How to fix ?
 
part of the problem is this line here

=> curl-7.19.5 does not support both c-ares and IPv6 - disable one of them.
 
Code:
cd /usr/ports/ftp/curl
make config

Uncheck one of the conflicting options (by default: only openssl and proxy are checked)

Or use 'make rmconfig' to start with the default settings.

Code:
make deinstall clean && make install clean

From now on: do not check every single option available unless you're sure you need them!!. The defaults are sensible and quite enough 99% of the time.
 
Back
Top