How do you elevate a brand to an iconic status that transcends language barriers?
That’s exactly what has happened with “V Dub.” Fortunately, Jeff Steinhour - one of the brains behind VW’s wildly successful campaign - was in Houston to discuss the work the world is talking (or signaling) about. If you witnessed the Houston appearance of his Crispin Porter + Bogusky brethren, you know this was a must-see event.
Archive for February, 2007
More boring details on the blog setup
Published by February 10th, 2007 in Administrativia. 0 CommentsThe instructions from the first post worked to create pretty article links, but killed other things in our ISP’s PHP setup like image processing libraries and a host of other things. Time for a rethink of the permalink issue.
The solution comes down to reading in the existing PHP setup (in the form of the php.ini file) from the provider, and then adding on the two lines to fix the permalinks.
Boring details on the ADCH blog setup
Published by February 10th, 2007 in Administrativia. 0 CommentsThe host this blog resides on lets us use php and mysql, so the initial setup was not too difficult - just edit the Wordpress config file for the database, etc. The trick here was to get article permalinks relatively clean so they weren’t search-engine unfriendly IDs.
I found the following info helpful:
post on permalinks with IIS
The upshot is you create a file in the root directory of your web site called “php.ini” with the following in it:
cgi.fix_pathinfo = 1
cgi.force_redirect = 0
Then you set up your permalink structure as follows:
/index.php/%year%/%monthnum%/%day%/%postname%/
If we had access to IIS, there are some better options, such as ISAPI plug-ins and the like. In the meantime, this works pretty well.
For email handling, we found wPhpMailer.