Archive for June, 2007

symfony in a freebsd box

Fast and easy symfony framework installation in your FreeBSD would be through pear. Pear doesn’t bundle with FreeBSD apache + php installation from port installation. To roll pear in FreeBSD box,

cd /usr/ports/devel/pear
make install clean distclean

p/s: if you having problem with core dump 6, try doing this

After pear is installed, do this

pear channel-discover pear.symfony-project.com
pear install symfony/symfony

Check your symfony version

symfony -V
> symfony version 1.0.5

For My Reference, Gentoo’s emerge

I have 2 gentoo machines, but not use it often, sometime I couldn’t remember how to update the port.

emerge sync && update-eix
emerge -uDvp –newuse world

But, I think update world is not good for me, because I have some app still rely on old lib, I prefer to emerge update the port I would like to update.