about me about me
photography photography
software projects software projects
contact me contact me

I needed to compile the latest PHP5 from source so I could enable FPM support. The following packages needed installing to successfully complete compilation. Read the rest of this entry »

I was surprised to find PDO sqlite support wasn’t included by default with PHP 5 on my Ubuntu (10.04) virtual machine. You can check which drivers are available with this small snippet of code (assuming you run this from the command line):

foreach (PDO::getAvailableDrivers() as $driver) {
    echo $driver . PHP_EOL;
}

Read the rest of this entry »

27
Apr

MySQL bug

posted 2010 // tech // 0

I can’t remember the last time I stumbled across a bug in MySQL, however this morning I did.
Read the rest of this entry »

Not long now until Ubuntu Ibex is released. However, I ran into this issue again this morning so I thought I’d document the solution for others.
Read the rest of this entry »