PhpDelicious - a wrapper class for the del.icio.us API
Wednesday, April 9th, 2008PhpDelicious 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.
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.
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
It only works this way if you haven’t chosen a “Posts page”. Maybe it’s just an undocumented feature?
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.
This is how I set up my windows laptop for development with Apache/MySQL/PHP/Symfony (XAMPP with Symfony).