Tuesday, January 23, 2007

Installing Apache 2.2.3 and PHP5

Apache:

./configure --prefix=/usr/local/apache \
--enable-so\
--enable-cgi\
--enable-info\
--enable-rewrite\
--enable-speling\
--enable-usertrack\
--enable-deflate \
--enable-ssl\
--enable-mime-magic

PHP5

./configure \
--with-apxs2=/usr/local/apache/bin/apxs \
--with-mysql \
--prefix=/usr/local/apache/php \
--with-config-file-path=/usr/local/apache/php \
--enable-force-cgi-redirect \
--disable-cgi \
--with-zlib \
--with-gettext \
--with-gdbm

PostgreSQL and PHP5
Capistrano and CakePHP in Perfect Harmony - mmm, Capistrano and CakePHP, sweet. I really like Capistrano, it's a very nice way to deploy web applications, I use it all the time with my Ruby on Rails projects, and it's so nice to know that I can use it with CakePHP as well.

CakePHP manual
PHP on WikiBooks
PHP Manual
Vancouver PHP 2007 Conference - See you there!


BDD in Rails
rspec and rails install
rspec examples