fluffigt.com *poof* said fluff…

5Jun/080

CakePHP: the rapid development php framework. Home

9Apr/080

PhpDelicious – a wrapper class for the del.icio.us API

PhpDelicious is a PHP 5 library for accessing the del.icio.us API. It combines data from the main REST and JSON APIs and presents a consolidated interface.

4Apr/080

No 404 page when using a static front page

I was setting up a wordpress blog (latest version, 2.5) a couple of days ago, and added the great plugin Google XML Sitemaps. I wanted a static frontpage with a couple of blog posts below it, so I modified the Kubrick theme a bit (added another template to use for that page, no biggie).

When taking a look at Google Sitemaps (somewhere under Google Webmaster Tools) I found that WordPress didn't respond to non-existing pages with a 404 not found, but all my pages after each other, rather like the posts on a dynamic front page.

Again I thought - no biggie! I modified the 404.php template to begin with the following:

<?php
ob_start();
header("HTTP/1.1 404 Not Found");
header("Status: 404 Not Found");
...

Still, no luck. Then I saw that WordPress didn't even read the 404.php page! I tried turning off the static front page and voilà, 404 works okay again.

I've searched a bit for this in the WordPress forums, but I'll report a bug ticket for them. Hopefully it will work in the next release :)

Newsflash:

It only works this way if you haven't chosen a "Posts page". Maybe it's just an undocumented feature?

1Apr/080

Hardened-PHP Project – PHP Security – Suhosin

Suhosin is an advanced protection system for PHP installations. It was designed to protect servers and users from known and unknown flaws in PHP applications and the PHP core.

1Apr/082

Symfony development with XAMPP on Windows

This is how I set up my windows laptop for development with Apache/MySQL/PHP/Symfony (XAMPP with Symfony).

  1. Download XAMPP Installer package.
  2. Install XAMPP - this is really just a case of next -> next -> okay.
  3. Since I'm not only using my laptop for development I chose not to start any services except for XAMPP when windows starts.
  4. Start (from XAMPP Control Panel) Apache and MySQL (and whatever other services you need).
  5. Add PHP to your PATH.
    1. Right-click "This Computer", choose properties.
    2. Advanced tab -> Systam variables (not sure, my system is in Swedish ;) )
    3. Add C:\xampp\php;C:\xampp\mysql\bin (if installed in default location) to the PATH variable.
  6. Upgrade Pear - pear upgrade pear
  7. Find Symfony - pear channel-discover pear.symfony-project.com
  8. Install Symfony - pear install symfony/symfony
  9. Done! Start playing around...
31Mar/080

exuberant ctags with PHP in Vim – phly, boy, phly

31Mar/080

Vim Productivity Tips for PHP Developers – phly, boy, phly

Tagged as: , , No Comments
21Feb/080

eGroupWare: Home

21Feb/080

PHProjekt :: an open source groupware suite

5Feb/080

James McGlinn » Symfony HTTP Authentication Filter