FreeBSD and console logging

Most of FreeBSD's i have are servers without X11 or any desktop environment and as i know from previous Linux situations many informations are outputed on the console tty, so you kinda need to have a monitor turned on and mandatory have to be present there to read it... so FreeBSD has a very nice way to help us: /var/log/console.log!
It's not enabled by default but:

# touch /var/log/console.log
# chmod 600 /var/log/console.log
# vim /etc/syslog.conf

And uncomment the setting: console.info /var/log/console.log

# /etc/rc.d/syslogd restart

FreeBSD Lighttpd with both PHP 5.3.2 and 5.2.13

install PHP 5.3.2 normally using ports and get PHP 5.2.x fron php.net and configure it like so with CGI(for lighty):

./configure --enable-fastcgi --with-zlib --with-layout=GNU --with-config-file-path=/usr/local/bin/php5.2/etc/addini --with-config-file-scan-dir=/usr/local/bin/php5.2/etc --build=amd64-portbld-freebsd7.2 --with-mysql=/usr/local/bin/mysql --with-mysqli=/usr/local/bin/mysql_config --with-curl=/usr/local/include --prefix=/usr/local/bin/php5.2

so from this php will get it's php.ini config file from /usr/local/bin/php5.2/etc (/usr/local/bin/php5.2/etc/php.ini) and the additional ini will be phrased from /usr/local/bin/php5.2/etc/addini (so an extensions.ini: /usr/local/bin/php5.2/etc/addini/extensions.ini)

edit Lighttpd config file and change the php binary path as:
"bin-path" => "/usr/local/bin/php5.2/bin/php-cgi",


this post will be edites as i go along