// post · 629

Defensio

Defensio is an anti-spam service very similar to Akismet, except that they provide in depth spam statistics for your website.

I've just written a basic Defensio plugin for Bluetrait 2 and am giving it a test.

It looks pretty cool!
// post · 624

How to enable PHP on Mac OS Leopard

To enable php:
  1. open terminal
  2. cd /etc/
  3. sudo cp php.ini.default php.ini
  4. cd /private/etc/apache2/
  5. sudo nano httpd.conf
  6. uncomment the two modules: php5_module and fastcgi_module. They were at line 114 and 115 for me.
  7. Use ctrl and o to save
  8. reload apache (can be done from system preferences).