<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Pale Blue Bytes</title>
	<atom:link href="http://palebluebytes.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://palebluebytes.com</link>
	<description>my fraction of a dot</description>
	<lastBuildDate>Fri, 20 Jan 2012 21:17:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WordPress: How to get custom fields outside the loop</title>
		<link>http://palebluebytes.com/2012/01/20/wordpress-how-to-get-custom-fields-outside-the-loop/</link>
		<comments>http://palebluebytes.com/2012/01/20/wordpress-how-to-get-custom-fields-outside-the-loop/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 21:16:23 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://palebluebytes.com/?p=191</guid>
		<description><![CDATA[Displaying custom field data from a WordPress page, post, or custom post type is very easy. Simply access WordPress&#8217; global query and grab the custom field you need! global $wp_query; $postid = $wp_query-&#62;post-&#62;ID; echo get_post_meta&#40;$postid, 'customFieldSlug', true&#41;;]]></description>
			<content:encoded><![CDATA[<p>Displaying custom field data from a WordPress page, post, or custom post type is very easy. Simply access WordPress&#8217; global query and grab the custom field you need!</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$wp_query</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$postid</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wp_query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$postid</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'customFieldSlug'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://palebluebytes.com/2012/01/20/wordpress-how-to-get-custom-fields-outside-the-loop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Missing User Library in OS X Lion</title>
		<link>http://palebluebytes.com/2011/07/21/missing-user-library-in-os-x-lion/</link>
		<comments>http://palebluebytes.com/2011/07/21/missing-user-library-in-os-x-lion/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 17:01:32 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://palebluebytes.com/?p=164</guid>
		<description><![CDATA[Like many others, we started playing around with Lion today at Elon. And by we, I really mean Mike. We&#8217;re not releasing it into the wild yet, making sure that from both a user and administration standpoint it is compatible with the various systems and software we use on campus. We&#8217;ve already noticed some issues [...]]]></description>
			<content:encoded><![CDATA[<p>Like many others, we started playing around with Lion today at Elon. And by we, I really mean <a href="http://mikespike.org" target="_blank">Mike</a>. We&#8217;re not releasing it into the wild yet, making sure that from both a user and administration standpoint it is compatible with the various systems and software we use on campus. We&#8217;ve already noticed some issues with binding to Active Directory and user profiles for network/mobile users, though to be fair we&#8217;ve not spent much time with it.</p>
<p>While poking around we happened to notice that the User Library was missing. It didn&#8217;t take us but a moment to realize that it was simply hidden. Power users and administrators access this directory frequently and the most common solution (changing the defaults to display all hidden files and directories) isn&#8217;t ideal since it will reveal all hidden items. So I thought I&#8217;d share a little UNIX trick I picked up in ACSA deployment training for unhiding a single directory.</p>
<p>Simply launch Terminal and use the following command to unhide the User Library:</p>
<p><code>chflags nohidden ~/Library/</code></p>
<p>Open Finder and visit your User directory to ensure the Library is now revealed.</p>
]]></content:encoded>
			<wfw:commentRss>http://palebluebytes.com/2011/07/21/missing-user-library-in-os-x-lion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatically Empty WordPress Trash</title>
		<link>http://palebluebytes.com/2011/06/28/automatically-empty-wordpress-trash/</link>
		<comments>http://palebluebytes.com/2011/06/28/automatically-empty-wordpress-trash/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 20:20:48 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://palebluebytes.com/?p=157</guid>
		<description><![CDATA[WordPress 2.9 introduced a new useful feature that has saved me several headaches since its release. Your posts, pages, comments, and custom post types now have a &#8220;recycling bin&#8221; that temporarily stores content that you&#8217;ve deleted. These items remain there for 30 days before WordPress automatically purges the trash. Sometimes 30 days proves to be more time that [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress 2.9 introduced a new useful feature that has saved me several headaches since its release. Your posts, pages, comments, and custom post types now have a &#8220;recycling bin&#8221; that temporarily stores content that you&#8217;ve deleted. These items remain there for 30 days before WordPress automatically purges the trash.</p>
<p>Sometimes 30 days proves to be more time that you need to store trash items. Sometimes you might want to keep these items longer. Some people might even find it useful to keep these trash items indefinitely. After browsing through the Codex, I came across an option made available to use which allows us to control the length of time items are kept in the trash.</p>
<p>To turn off simply add the following code to your wp-config.php file:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'EMPTY_TRASH_DAYS'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>To shorten the time items are cleared, 10 days for example, simply change the second variable:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'EMPTY_TRASH_DAYS'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">10</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Or to increase the time, say&#8230; 60 days:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'EMPTY_TRASH_DAYS'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">60</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>As I mentioned before, leaving this option alone will default to 30 days.</p>
]]></content:encoded>
			<wfw:commentRss>http://palebluebytes.com/2011/06/28/automatically-empty-wordpress-trash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sort Custom Post Types in WordPress Admin</title>
		<link>http://palebluebytes.com/2011/06/26/sort-custom-post-types-in-wordpress-admin/</link>
		<comments>http://palebluebytes.com/2011/06/26/sort-custom-post-types-in-wordpress-admin/#comments</comments>
		<pubDate>Sun, 26 Jun 2011 23:39:55 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://palebluebytes.com/?p=139</guid>
		<description><![CDATA[My favorite addition to WordPress 3 is the ability to easily add custom post types. I&#8217;ve utilized this feature in nearly all my new projects, and now I&#8217;m not quite sure what I ever did without them. One thing that wasn&#8217;t included in their release was the ability to easily sort these post types in [...]]]></description>
			<content:encoded><![CDATA[<p>My favorite addition to WordPress 3 is the ability to easily add <a href="http://codex.wordpress.org/Post_Types">custom post types</a>. I&#8217;ve utilized this feature in nearly all my new projects, and now I&#8217;m not quite sure what I ever did without them. One thing that wasn&#8217;t included in their release was the ability to easily sort these post types in the WordPress admin. By default the admin sorts them alphabetical by title, which isn&#8217;t ideal for most situations. The easiest way to achieve this without using one of the various sorting plugins out there is by applying a filter to WordPress&#8217; parse_query hook.</p>
<p>You can sort by all of the typical WordPress query variables. Below is an example to sort your custom posts in reverse chronological order by post date, as you&#8217;re accustomed to with WordPress&#8217; default Post type.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">add_filter<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'parse_query'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'order_by_query'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">function</span> order_by_query<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$query</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$pagenow</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> is_admin<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #000088;">$pagenow</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">'edit.php'</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'post_type'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'post_type'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">'your_post_type'</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$wp_query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">query</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'orderby'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span>  <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">query_vars</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'orderby'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'date'</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$query</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">query_vars</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'order'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'DESC'</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Simply add the above filter to your themes functions.php file, plugin, or alongside wherever you <a href="http://codex.wordpress.org/Function_Reference/register_post_type">register your custom post type</a>.</p>
<p>&nbsp;</p>
<p><em>Edit: As Bruce noted below in the original example I neglected to include making the list actively sortable. The above function now includes this. Thanks, Bruce.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://palebluebytes.com/2011/06/26/sort-custom-post-types-in-wordpress-admin/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Import Large MySQL dumps with BigDump</title>
		<link>http://palebluebytes.com/2011/04/10/import-large-mysql-dumps-with-bigdump/</link>
		<comments>http://palebluebytes.com/2011/04/10/import-large-mysql-dumps-with-bigdump/#comments</comments>
		<pubDate>Sun, 10 Apr 2011 22:17:38 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[dump]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://palebluebytes.com/?p=128</guid>
		<description><![CDATA[Importing large MySQL dumps can be difficult, especially depending on your web host and the level of access to your MySQL server. phpMyAdmin is great for exporting (&#8220;dumping&#8221;) your existing database, but due to most hosting limitations doesn&#8217;t necessarily foot the bill for importing. Enter BigDump. BigDump is a Staggered MySQL dump importer developed by Alexey [...]]]></description>
			<content:encoded><![CDATA[<p>Importing large MySQL dumps can be difficult, especially depending on your web host and the level of access to your MySQL server. phpMyAdmin is great for exporting (&#8220;dumping&#8221;) your existing database, but due to most hosting limitations doesn&#8217;t necessarily foot the bill for importing. Enter <a title="BigDump Staggered MySQL Database Import Tool" href="http://www.ozerov.de/bigdump.php">BigDump</a>. BigDump is a Staggered MySQL dump importer developed by <a href="http://www.ozerov.de/">Alexey Ozerov</a>, and made available under the GNU General Public License. From the BigDump site:</p>
<blockquote><p>Staggered import of large and very large MySQL Dumps (like <a href="http://www.phpmyadmin.net/">phpMyAdmin</a> 2.x Dumps) even through the web servers with hard runtime limit and those in safe mode. The script executes only a small part of the huge dump and restarts itself. The next session starts where the last was stopped.</p></blockquote>
<p>&nbsp;</p>
<h3>Why use BigDump?</h3>
<blockquote><p>To restore the very large backup of your mySQL database (or a part of it) into the new or the same mySQL database. You can&#8217;t access the server shell and you can&#8217;t import the dump using phpMyAdmin or any other scripts due to hard memory resp. runtime limit of the web server.</p></blockquote>
<p>&nbsp;</p>
<h3><strong>What you&#8217;ll need to use BigDump</strong></h3>
<ul>
<li>The <a href="http://www.ozerov.de/bigdump.zip">BigDump file</a></li>
<li>The <a href="http://codex.wordpress.org/Backing_Up_Your_Database#Using_phpMyAdmin">MySQL dump</a> from your existing database.</li>
<li>Existing database server, database name, username, and password information.</li>
<li>FTP access to your web server.</li>
<li>A text editor to exit the BigDump configuration file.</li>
<li>Common knowledge about PHP, MySQL, phpMyAdmin, FTP and HTTP are a plus.</li>
</ul>
<p>&nbsp;</p>
<h3>How to use BigDump</h3>
<p><strong>STEP 1: Setup BigDump</strong></p>
<p>The first step will be to configure BigDump to connect to your database.</p>
<p><strong><div class='et-box et-warning'>
					<div class='et-box-content'>NOTE: This is the database which you&#8217;re importing into. If BigDump detects tables in this database that match those which you&#8217;re trying to import, it will fail.</div></div></strong></p>
<p>Open the <strong>bigdump.php </strong>file which you downloaded in your favorite editor. (TextEdit for Mac, or Notepad for Windows will work fine.) The only lines <strong>required</strong> for BigDump to function are those for the database configuration, which you will see below:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// Database configuration</span>
<span style="color: #000088;">$db_server</span>   <span style="color: #339933;">=</span> <span style="color: #0000ff;">'localhost'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$db_name</span>     <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$db_username</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$db_password</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span></pre></div></div>

<p>Here you will need to enter the database name, usermane, password, and server. If your MySQL server is located on the same server as your web services, simply leave this set to localhost. Otherwise, enter the server address for your SQL server.</p>
<p><strong>Now save the file and upload it to your web server via FTP.</strong> <em>(I suggest creating a separate directory for BigDump file, as we&#8217;ll also be placing your SQL dumps in this directory.)</em></p>
<p>&nbsp;</p>
<p><strong>STEP 2: Upload Your SQL Dump to the Web Server</strong></p>
<p>Your MySQL dump file has to be in the same directory as BigDump, so place your dump in the same location that you just uploaded <strong>bigdump.php.</strong></p>
<p>&nbsp;</p>
<p><strong>STEP 3: Execute the BigDump Script</strong></p>
<ul>
<li>Access your BigDump file at: http://<em>www.yourdomain.com</em>/<em>dump-directory</em>/bigdump.php</li>
<li>Locate the MySQL dump file in the list of available databases.</li>
<li>Click the <em><strong>&#8220;Start Import&#8221;</strong></em> link.</li>
<li>Wait for the import to finish. <strong>Do not</strong> close your browser window/tab while it&#8217;s running.</li>
<li>Once finished a confirmation will be displayed (displayed below).</li>
</ul>
<p><a href="http://palebluebytes.com/wp-content/uploads/2011/04/Screen-shot-2011-04-10-at-6.12.13-PM.png"><img class="aligncenter size-full wp-image-135" title="Screen shot 2011-04-10 at 6.12.13 PM" src="http://palebluebytes.com/wp-content/uploads/2011/04/Screen-shot-2011-04-10-at-6.12.13-PM.png" alt="" width="551" height="231" /></a></p>
<p>From here you should be done and your imported database should be ready to use. Use phpMyAdmin (or any other tool) to verify the database tables have been successfully imported.</p>
<p><strong>REMEMBER: FOR SECURITY DELETE THE BIGDUMP.PHP FILE AND SQL DATABASES FROM THE WEB SERVER WHEN DONE.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://palebluebytes.com/2011/04/10/import-large-mysql-dumps-with-bigdump/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 4: &#8220;Even More Awesomeness&#8221;</title>
		<link>http://palebluebytes.com/2011/03/24/firefox-4-even-more-awesomeness/</link>
		<comments>http://palebluebytes.com/2011/03/24/firefox-4-even-more-awesomeness/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 04:26:23 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Browsers]]></category>

		<guid isPermaLink="false">http://palebluebytes.com/?p=115</guid>
		<description><![CDATA[Firefox 4 dropped yesterday,  and I recommend you go pick it up. It&#8217;s not replacing Chrome for me just yet&#8230; but I have to say the speed improvements are substantial.  So far, I&#8217;m impressed with JägerMonkey&#8217;s performance.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mozilla.com/en-US/firefox/new/"><img class="alignright size-medium wp-image-116" title="Screen shot 2011-03-24 at 12.18.28 AM" src="http://palebluebytes.com/wp-content/uploads/2011/03/Screen-shot-2011-03-24-at-12.18.28-AM-300x108.png" alt="" width="300" height="108" /></a>Firefox 4 dropped yesterday,  and I recommend you <a href="http://www.mozilla.com/en-US/firefox/new/">go pick it up</a>. It&#8217;s not replacing Chrome for me just yet&#8230; but I have to say the speed improvements are <a href="http://www.mozilla.com/en-US/firefox/performance/">substantial</a>.  So far, I&#8217;m impressed with <a href="http://blog.mozilla.com/dmandelin/2010/09/08/presenting-jagermonkey/">JägerMonkey&#8217;s</a> performance.</p>
]]></content:encoded>
			<wfw:commentRss>http://palebluebytes.com/2011/03/24/firefox-4-even-more-awesomeness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook: Post &amp; Comment as Fan Page Name</title>
		<link>http://palebluebytes.com/2011/03/24/facebook-post-comment-as-fan-page-name/</link>
		<comments>http://palebluebytes.com/2011/03/24/facebook-post-comment-as-fan-page-name/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 04:05:06 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Social Networking]]></category>

		<guid isPermaLink="false">http://palebluebytes.com/?p=108</guid>
		<description><![CDATA[I&#8217;ve had several people ask me if it was possible to post and/or comment on individuals Facebook profiles or fan pages as their business name, and not their personal profile. My answer has always been the same&#8230; it can&#8217;t be done (directly, anyway). Some people used Facebook&#8217;s recent &#8220;@&#8221; feature work around, but that&#8217;s not [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had several people ask me if it was possible to post and/or comment on individuals Facebook profiles or fan pages as their business name, and not their personal profile. My answer has always been the same&#8230; it can&#8217;t be done (directly, anyway). Some people used Facebook&#8217;s recent &#8220;@&#8221; feature work around, but that&#8217;s not ideal in some cases.</p>
<p><a href="http://palebluebytes.com/wp-content/uploads/2011/03/Screen-shot-2011-03-23-at-11.57.55-PM.png"><img class="alignright size-full wp-image-109" title="Screen shot 2011-03-23 at 11.57.55 PM" src="http://palebluebytes.com/wp-content/uploads/2011/03/Screen-shot-2011-03-23-at-11.57.55-PM.png" alt="" width="282" height="132" /></a>I was just poking around the interwebs and realized Facebook released a new feature last month that solves this problem. To post or comment under your Facebook fan page name simply:</p>
<ul>
<li>Login to your Facebook account which is an admin of your fan page</li>
<li>Visit your fan page</li>
<li>Click the link in the right sidebar that says: &#8220;Use Facebook as <strong><em>Your Page Name</em></strong>&#8220;</li>
</ul>
<p><em>Kudos</em> to Facebook for finally implementing this. <em>Shame</em> on me for just finding this out. Yes, I blog about old news.</p>
]]></content:encoded>
			<wfw:commentRss>http://palebluebytes.com/2011/03/24/facebook-post-comment-as-fan-page-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automattic&#8217;s Jetpack now available for WordPress Self-Hosted Sites</title>
		<link>http://palebluebytes.com/2011/03/09/automattic-jetpack-now-available-for-wordpress-self-hosted-sites/</link>
		<comments>http://palebluebytes.com/2011/03/09/automattic-jetpack-now-available-for-wordpress-self-hosted-sites/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 19:03:53 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://palebluebytes.com/?p=102</guid>
		<description><![CDATA[Today Automattic announced they are releasing a plugin called Jetpack for WordPress.org self-hosted websites. This plugin will bring in many features which before today were only accessible on WordPress.com hosted blogs. Among some of these features are: WordPress.com Stats (Previously available via standalone plugin.) Twitter Widget (Already several 3rd party variations out there, but this [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://palebluebytes.com/wp-content/uploads/2011/03/jetpack-logo.png"><img class="alignright size-full wp-image-104" title="jetpack-logo" src="http://palebluebytes.com/wp-content/uploads/2011/03/jetpack-logo.png" alt="" width="300" height="225" /></a>Today Automattic <a href="http://en.blog.wordpress.com/2011/03/09/jetpack-boost/">announced</a> they are releasing a plugin called <strong><a href="http://jetpack.me/">Jetpack</a></strong> for WordPress.org self-hosted websites. This plugin will bring in many features which before today were only accessible on WordPress.com hosted blogs. Among some of these features are:</p>
<ul>
<li>WordPress.com Stats (Previously available via standalone plugin.)</li>
<li>Twitter Widget (Already several 3rd party variations out there, but this is the same one available to WordPress.com blogs.)</li>
<li>Gravatar Hovercards</li>
<li>WP.me Shortlinks</li>
<li>Sharedaddy (Again, most dot.org folks were using  AddToAny or some other variation.)</li>
<li>LaTex (for the uber-geeky)</li>
<li>After the Deadline (More grammar, spelling, styling assist.)</li>
<li>Shortcode Embeds (For embedding videos and other media.)</li>
</ul>
<p>From Automattic:</p>
<blockquote><p>In this spirit, we have great news. We are now making the power of WordPress.com available to almost all WordPress blogs, regardless of where they are hosted.</p>
<p>With <strong>Jetpack, </strong>a new plugin from Automattic, people not on WordPress.com can now access features that depend on WordPress.com. Jetpack also provides convenience features that don’t use the cloud, but are now easier to install, or were unavailable as plugins before.</p>
<p>&nbsp;</p></blockquote>
<p>Matt Mullenweg explained the reasoning behind their decision to Open Source these features:</p>
<blockquote><p>The dot.org users can get the best of WordPress.com without giving up control, which might be the future of open source in general. &#8230;If you’re on WordPress you’re part of the family, it shouldn’t matter if we host you or not.</p></blockquote>
<p>Thanks Matt!</p>
<p>&nbsp;</p>
<p>I&#8217;ll be testing out this plugin over the next couple days and will come back with some thoughts and opinions for those not already familiar with the Jetpack lineup.</p>
]]></content:encoded>
			<wfw:commentRss>http://palebluebytes.com/2011/03/09/automattic-jetpack-now-available-for-wordpress-self-hosted-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Developer Tools: WP Developer Assistant</title>
		<link>http://palebluebytes.com/2011/02/25/wordpress-developer-tools-wp-developer-assistant/</link>
		<comments>http://palebluebytes.com/2011/02/25/wordpress-developer-tools-wp-developer-assistant/#comments</comments>
		<pubDate>Fri, 25 Feb 2011 05:37:11 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://palebluebytes.com/?p=92</guid>
		<description><![CDATA[If you&#8217;re like me, you like to try and keep everything in one place when developing for WordPress. That&#8217;s what initially attracted me to the WP Developer Assistant plugin. Download and install this plugin and have access to many great developers tools: Query your WP database without SSH or another browser based GUI tool (like [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://palebluebytes.com/wp-content/uploads/2011/02/Screen-shot-2011-02-24-at-11.20.22-PM.png"><img class="size-full wp-image-93 alignright" title="Screen shot 2011-02-24 at 11.20.22 PM" src="http://palebluebytes.com/wp-content/uploads/2011/02/Screen-shot-2011-02-24-at-11.20.22-PM.png" alt="" width="166" height="194" /></a>If you&#8217;re like me, you like to try and keep everything in one place when developing for WordPress. That&#8217;s what initially attracted me to the <a href="http://wordpress.org/extend/plugins/wp-developer-assistant/">WP Developer Assistant</a> plugin. Download and install this plugin and have access to many great developers tools:</p>
<ul>
<li>Query your WP database without SSH or another browser based GUI tool (like phpMyAdmin).</li>
<li>Upload themes, plugins, or other files without needing to switch over to your FTP client. (Great tool for when you&#8217;re not at your main workstation and find yourself without an FTP client.)</li>
<li>Quick access a list of WP filters and hooks.</li>
<li>Enable error mode for your admin users, while suppressing them for other users.</li>
<li>Quick access to your PHP config info.</li>
<li>Quick access to a full list of defined options and constants, with the ability to easily edit serialized content.</li>
</ul>
<p>You&#8217;re not discovering anything new here, just brining it all under one roof. Check it out and let me know what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://palebluebytes.com/2011/02/25/wordpress-developer-tools-wp-developer-assistant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: Fatal error: Allowed memory size of xxx bytes exhausted</title>
		<link>http://palebluebytes.com/2011/02/24/wordpress-fatal-error-allowed-memory-size-of-xxx-bytes-exhausted/</link>
		<comments>http://palebluebytes.com/2011/02/24/wordpress-fatal-error-allowed-memory-size-of-xxx-bytes-exhausted/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 14:53:52 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://palebluebytes.com/?p=48</guid>
		<description><![CDATA[Since WordPress 3.1 dropped yesterday I&#8217;ve had several people ask me about a (not-so) unusual memory error when trying to upgrade. WordPress 3+ packs a bit more under the hood compared to it&#8217;s 2.x predecessors, so if you&#8217;ve previously upgraded to one of the v3 dot releases then theres a chance you&#8217;ve come across this [...]]]></description>
			<content:encoded><![CDATA[<p>Since WordPress 3.1 dropped yesterday I&#8217;ve had several people ask me about a (not-so) unusual memory error when trying to upgrade. WordPress 3+ packs a bit more under the hood compared to it&#8217;s 2.x predecessors, so if you&#8217;ve previously upgraded to one of the v3 dot releases then theres a chance you&#8217;ve come across this before.  The error will look something like this:</p>
<div class='et-box et-warning'>
					<div class='et-box-content'>Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 393216 bytes) in&#8230;</div></div>
<p>The quick way to attempt a fix is to add the following to your WordPress installations <strong>wp-config.php:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'WP_MEMORY_LIMIT'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'64M'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>I believe by default WordPress defines the WP_MEMORY_LIMIT variable as 32M, so in most cases this should quickly resolve your problem.  If you&#8217;re running WordPress Multi-User (or a very heavy WP site in general) then you might need a bit more, which might require some fine-tuning to your servers php.ini file to increase the servers PHP memory limit.  Most shared hosting doesn&#8217;t allow this so ask your hosting provider. If you have access to this file simply add or update the <span style="text-decoration: underline;"><strong>memory_limit</strong></span> variable to match or exceed that of WP_MEMORY_LIMIT.</p>
<p>If after you define the WP_MEMORY_LIMIT variable you&#8217;re still receiving this error then you might want to check out the <a href="http://wordpress.org/extend/plugins/tpc-memory-usage/">TCP! Memory Usage plugin</a>. This will give you some brief statistics on your servers and WordPress installation memory limits and usage, and indicate your memory requirements.</p>
]]></content:encoded>
			<wfw:commentRss>http://palebluebytes.com/2011/02/24/wordpress-fatal-error-allowed-memory-size-of-xxx-bytes-exhausted/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

