Here’s my attempt at a PHP London logo. It’s just a bare logotype, but might form a basis for more elaborate designs:
It’s derived from the official PHP logo which is provided as a vector outline. I couldn’t find or identify the typeface – it looks a bit like Eurostile or ProFont (but it isn’t either) – so I redrew the characters to match.
Obviously there is scope for all kinds of arrangements (and not outlining), but at least we now have a "London" in a typeface that exactly matches the logo.
For those that like to twiddle, here is the Illustrator CS2 file (should be PDF compatible, probably need to right click to download it as it has a dumb mime type). The file also includes an uncombined version. Creative Commons License.
Php.ini not loading?
I beat my head against this one for hours. A recompiled version of PHP 5.1.6 on OS X was simply not loading my php.ini, even though a valid file existed in the place specified by the –with-config-file-path configure setting (/etc), and no other php.ini files existed on the system.
Eventually, after many rebuilds, I downloaded a clean copy of the source, rebuilt from scratch and voila – it worked. however, changing it and recompiling prodiced the broken results again. make distclean and a rebuild made it ork again. So, if you’re seeing this problem, a clean recompile (don’t forget to use config.nice) should make it all work again.
I’m not sure if this is a PHP bug or not – is it meant to work?