2010
How to locate your php.ini file
When you need to know where the php.ini configuration file is on your server, here is a handy way to find it:
php -i | grep php.ini
Give it a try.
Popularity: 1% [?]
When you need to know where the php.ini configuration file is on your server, here is a handy way to find it:
php -i | grep php.ini
Give it a try.
Popularity: 1% [?]
The current import script (as of WordPress 2.8.6) is broken when it comes to successfully importing images from WordPress.com. The error you see is something like
Remote file error: Remote file returned error response 301 Moved Permanently
Fixing this involves adding a couple of lines to a core WordPress file. Hopefully a future version of WordPress will include the working version.
Note that these instructions are for WordPress 2.8.6. Your version may be different, and you may need to play with this to get it to work for you. This worked for me, YMMV.
wp-includes/functions.phpwp_get_http function.$headers['response'] = $response['response']['code'];, add the following code (around line 1227):
// added to fix 301 redirects for blog import code from WordPress.com
if ((string)$response['response']['code'] == '301') {
$response = wp_remote_request($headers['location'], $options);
$headers = wp_remote_retrieve_headers($response);
$headers['response'] = $response['response']['code'];
}
To fix the references to the images so they’re being served off your new blog, you can either go through every post and manually correct them all, (not very fun), or better yet, download the Search and Replace plugin, activate it and do a search for all instances of the WordPress.com image server URL in all your posts (something like http://BLOGNAME.files.wordpress.com/ with your own new URL — http://BLOGNAME.com/wp-content/uploads/). Don’t forget to test the new URL structure before you do the search and replace, otherwise you’ll have to go back and fix it.
Hat-tip to Bill Zitomer for pointing out the link to this WordPress support forum page that had a good clue to the solution.
Popularity: 1% [?]
One of the neat things about WordPress is how easy it is to add custom metadata to a given page or post that you can then use in a template to display structured information. I’ve been using this technique for a while now to extend the basic WordPress elements of title, body, excerpt, etc and allow the creation of easily editable information-rich content.
Before now I’ve used the built-in WordPress Custom Field functionality in the Add New screen where you select previously created custom fields from a drop-down list that is limited to only showing 30 items. This is quite cumbersome as you have select each field you want to add to the entry and enter the value, click the Add Custom Field button, then repeat for however many custom fields you want to use. Needless to say, this can be frustrating to have to remember to do every time, especially for non-technical clients.
During a recent site conversion to WordPress that involves 4-6 custom fields for each post, we finally decided that there must be a better way, and ended up finding a WordPress plugin that is so good that it should probably be added to WordPress core, it is so highly useful. The plugin is called Custom Field Template and is developed by Hiroaki Miyashita.
Using a simple set of options to define the template you want to use is easy. After downloading and activating the plugin, go to Settings > Custom Field Template to define your template. One is provided for you to show you the possible template values. You can set up two separate custom field template designs.
This is the code used to generate the Custom Field Template form shown in the screenshot above:
<strong>Story Template Metadata Instructions <em>(All fields are optional)</em></strong><br /><br />
1. Use this form to enter metadata about this story.<br />
2. Each item will get assigned to the correct Custom Field for use in the display template.<br />
3. Click the <strong>Save</strong> button to save the values.<br />
<br />
[summary_deck]
type = textarea
rows = 3
cols = 50
label = Summary Deck:
[byline_writer_name]
type = text
size = 35
label = Byline Writer Name:
[byline_writer_title]
type = text
size = 35
label = Byline Writer Title:
[byline_writer_picture_url]
type = text
size = 54
label = Byline Writer Picture URL:
[lead_photo_caption]
type = textarea
rows = 3
cols = 50
label = Lead Photo Caption:
[lead_photo_credit]
type = text
size = 35
label = Lead Photo Credit:
[lead_photo_url]
type = text
size = 54
label = Lead Photo URL:
Then set this setting to true by checking the box to make the form look prettier:

Next, I tweaked the Admin CSS settings to right-justify the labels:
#cft dl { clear:both; margin:0; padding:0; width:100%; }
#cft dt { float:left; font-weight:bold; margin:0; padding: 0 8px 0 0; text-align:right; width: 20%; }
#cft dt .hideKey { visibility:hidden; }
#cft dd { float:left; margin:0; text-align:left; width:70%; }
#cft dd p.label { font-weight:bold; margin:0; }
#cft_instruction { margin:10px; }
Click Update Options to save the settings and then go to Posts > Add New to see the form in action. You may need to go back and forth a couple of times to get your text field sizes just right and to put them in the right order you want them in.
So how do these values get displayed on your page?
Simply edit your template PHP file to look for custom field values and then display them where you want them if they’re present.
This is how I do it for the Principia Pilot site. This code goes at the top of the template for single.php
<?php
// Retrieve custom meta values from post if they're present
$byline_writer_name = htmlspecialchars(get_post_meta($post->ID, "byline_writer_name", true));
$byline_writer_title = htmlspecialchars(get_post_meta($post->ID, "byline_writer_title", true));
$byline_writer_picture_url = htmlspecialchars(get_post_meta($post->ID, "byline_writer_picture_url", true));
$lead_photo_url = htmlspecialchars(get_post_meta($post->ID, "lead_photo_url", true));
$lead_photo_credit = htmlspecialchars(get_post_meta($post->ID, "lead_photo_credit", true));
$lead_photo_caption = htmlspecialchars(get_post_meta($post->ID, "lead_photo_caption", true));
$summary_deck = wptexturize(get_post_meta($post->ID, "summary_deck", true));
?>
Now each of the possible Custom Fields are available as PHP variables that can be checked for content.
This code example shows the “summary deck” being displayed on the page if it has been entered on the create content screen:
<?php
// Show summary deck if we have one
if ($summary_deck != "") {
echo '<h3 class="summary-deck">' . $summary_deck . '</h3>';
}
?>
Using this excellent plugin, you can set up select lists, radio buttons, check boxes and more to help you populate your Custom Fields more easily if you prefer that to using simple text fields. You can also specify default values to use for the custom fields so you don’t have to type them in every time.
These are the default options included by the plugin:
[Plan]
type = text
size = 35
label = Where are you going to go?
[Plan]
type = textfield
size = 35
hideKey = true
[Favorite Fruits]
type = checkbox
value = apple # orange # banana # grape
default = orange # grape
[Miles Walked]
type = radio
value = 0-9 # 10-19 # 20+
default = 10-19
clearButton = true
[Temper Level]
type = select
value = High # Medium # Low
default = Low
[Hidden Thought]
type = textarea
rows = 4
cols = 40
tinyMCE = true
mediaButton = true
Which displays a form that looks like this:

This plugin addresses a key need when using Custom Meta Fields in a WordPress custom template design — making it as easy as possible to enter values time after time on multiple pages or posts. There are a bunch of other neat options this plugin offers to make the authoring experience even easier. This is now on my “must install” list of essential WordPress plugins.
If you use this and like it, I highly recommend sending a nice donation to the plugin author to help support ongoing development and to say thanks. This plugin will save you and your clients a lot of time and frustration. Thanks Hiroaki!
Requires WordPress 2.1 or higher.
Popularity: 9% [?]
VNC is a very useful program for accessing a computer remotely. These are instructions for accessing a remote machine using OS X, Chicken of the VNC, and Vine Server when there is a firewall in the way.

Normally it is a fairly straightforward process to connect from a VNC client to a VNC server running on a remote machine. A firewall in the middle can complicate the process a bit.
Normal:
MY MACHINE -> VNC CLIENT < - -> VNC SERVER < - REMOTE MACHINE
Behind firewall:
REMOTE MACHINE -> VNC SERVER -> SSH TUNNEL < - -> VNC CLIENT < - MY MACHINE
ssh vnc_user@MY_IP_ADDRESS -R 5900:127.0.0.1:5900
where MY_IP_ADDRESS is the IP address of MY MACHINE.
Notes:
Thanks to this article that describes how to do this and also includes an Applescript that makes the connection.
Popularity: 5% [?]
Let’s say, hypothetically, that you are a designer, and are working on a design comp for a Christian Science church or reading room, and you wanted a high resolution vector version of the logo to use in your mock-up so you didn’t have to chop out background garbage out of some low-resolution version of the logo you found on the web somewhere. What should you do?
In the Cross and Crown trademark licensing documentation, you will find the following instructions:
Two approvals are necessary:
(1) for your type of use (sign, etc.) and
(2) for the actual form of your use (how the sign appears).
Therefore, if you already have a sample or mock-up of the proposed use, please send it by e-mail or regular mail along with the Request Form, so both approvals can be done simultaneously. It will save you time later.
Unfortunately, they do not currently provide any links to a high-resolution version of their logo for purposes of laying out a design, which would be very helpful to all the designers out there trying to help their clients prepare a mock-up of the proposed usage.
Update: I’ve removed the instructions for how to extract a vector version of the logo out of a PDF since they’ve changed the PDF available on their site to only include a raster version now, and it would probably be more helpful to more people in the long run if they hear the need for a vector version for placement in design comps from a number of people rather than trying to work-around the system they’re offering.
My suggestion is you contact the trademark administrator directly and request a vector version of the logo if the high-resolution JPG version of the logo isn’t sufficient for your usage. Their email address is trademark@csps.com.
Popularity: 6% [?]