<?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>webhank &#187; Web Development</title>
	<atom:link href="http://www.webhank.com/category/web-development/feed" rel="self" type="application/rss+xml" />
	<link>http://www.webhank.com</link>
	<description>my two cents - by Hank Pantier</description>
	<lastBuildDate>Wed, 04 Aug 2010 19:42:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>One for my geek friends</title>
		<link>http://www.webhank.com/web-development/one-for-my-geek-friends</link>
		<comments>http://www.webhank.com/web-development/one-for-my-geek-friends#comments</comments>
		<pubDate>Tue, 23 Mar 2010 13:52:04 +0000</pubDate>
		<dc:creator>webhank</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.webhank.com/?p=429</guid>
		<description><![CDATA[This might be the funniest HTML joke I?ve ever seen. Of course you know the i tag has been deprecated in XHTML. repost from http://joeschmitt.tumblr.com/post/391725635/via-blueyesbrunet-this-might-be-the-funniest]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.webhank.com/wp-content/plugins/simple-post-thumbnails/timthumb.php?src=/wp-content/thumbnails/429.jpg&amp;w=530&amp;h=220&amp;zc=1&amp;ft=jpg' alt='post thumbnail' title="One for my geek friends" /></p>
<div class="MultiBoxHelp" id="MultiBoxHelp"><a href="http://www.rutschmann.biz" title="powered by WordPress Multibox Plugin v1.3.5" target="_blank"><img src="http://www.webhank.com/wp-content/plugins/wordpress-multibox-plugin/images/help.png" alt="powered by WordPress Multibox Plugin v1.3.5" title="powered by WordPress Multibox Plugin v1.3.5" /></a></div>
<p><a href="http://www.webhank.com/wp-content/uploads/tumblr_kxwp33RcVV1qacw02o1_400.jpg"  class="wmp" id="wmp2"><img class="alignnone size-full wp-image-430" title="tumblr_kxwp33RcVV1qacw02o1_400" src="http://www.webhank.com/wp-content/uploads/tumblr_kxwp33RcVV1qacw02o1_400.jpg" alt="tumblr kxwp33RcVV1qacw02o1 400 One for my geek friends" width="400" height="572" /></a></p>
<p>This might be the funniest HTML joke I?ve ever seen. Of course you know  the i tag has been deprecated in XHTML.</p>
<p>repost from <a href="http://joeschmitt.tumblr.com/post/391725635/via-blueyesbrunet-this-might-be-the-funniest">http://joeschmitt.tumblr.com/post/391725635/via-blueyesbrunet-this-might-be-the-funniest</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhank.com/web-development/one-for-my-geek-friends/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connecting to Magento via XML-RPC</title>
		<link>http://www.webhank.com/web-development/connecting-to-magento-via-xml-rpc</link>
		<comments>http://www.webhank.com/web-development/connecting-to-magento-via-xml-rpc#comments</comments>
		<pubDate>Thu, 12 Feb 2009 20:42:59 +0000</pubDate>
		<dc:creator>webhank</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.webhank.com/?p=194</guid>
		<description><![CDATA[I have been trying off and on for about a week to get a connection made to Magento&#8217;s API via a PHP script. Magento gives the following code snippet on their site, but I could not get it to work &#8211; souring the message boards didn&#8217;t really help either.  I am not sure if something [...]]]></description>
			<content:encoded><![CDATA[<p>I have been trying off and on for about a week to get a connection made to <a href="http://www.magentocommerce.com/support/magento_core_api">Magento&#8217;s API</a> via a PHP script.</p>
<p>Magento gives the following code snippet on their site, but I could not get it to work &#8211; souring the message boards didn&#8217;t really help either.  I am not sure if something was off with my installation instance or what.</p>
<div class="code php" style="font-family: monospace;">
<div class="code_bg">
<ol>
<li class="li1">
<div class="de1"><span class="re0">$client</span> = <span class="kw2">new</span> Zend_XmlRpc_Client<span class="br0">(</span><span class="st0">&#8216;http://youmagentohost/api/xmlrpc/&#8217;</span><span class="br0">)</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="co1">// If somestuff requires api authentification,</span></div>
</li>
<li class="li1">
<div class="de1"><span class="co1">// we should get session token</span></div>
</li>
<li class="li1">
<div class="de1"><span class="re0">$session</span> = <span class="re0">$client</span>-&gt;<span class="me1">call</span><span class="br0">(</span><span class="st0">&#8216;login&#8217;</span>, <span class="kw3">array</span><span class="br0">(</span><span class="st0">&#8216;apiUser&#8217;</span>, <span class="st0">&#8216;apiKey&#8217;</span><span class="br0">)</span><span class="br0">)</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="re0">$client</span>-&gt;<span class="me1">call</span><span class="br0">(</span><span class="st0">&#8216;call&#8217;</span>, <span class="kw3">array</span><span class="br0">(</span><span class="re0">$session</span>, <span class="st0">&#8216;somestuff.method&#8217;</span>, <span class="kw3">array</span><span class="br0">(</span><span class="st0">&#8216;arg1&#8242;</span>, <span class="st0">&#8216;arg2&#8242;</span>, <span class="st0">&#8216;arg3&#8242;</span><span class="br0">)</span><span class="br0">)</span><span class="br0">)</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="re0">$client</span>-&gt;<span class="me1">call</span><span class="br0">(</span><span class="st0">&#8216;call&#8217;</span>, <span class="kw3">array</span><span class="br0">(</span><span class="re0">$session</span>, <span class="st0">&#8216;somestuff.method&#8217;</span>, <span class="st0">&#8216;arg1&#8242;</span><span class="br0">)</span><span class="br0">)</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="re0">$client</span>-&gt;<span class="me1">call</span><span class="br0">(</span><span class="st0">&#8216;call&#8217;</span>, <span class="kw3">array</span><span class="br0">(</span><span class="re0">$session</span>, <span class="st0">&#8216;somestuff.method&#8217;</span><span class="br0">)</span><span class="br0">)</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="re0">$client</span>-&gt;<span class="me1">call</span><span class="br0">(</span><span class="st0">&#8216;multiCall&#8217;</span>, <span class="kw3">array</span><span class="br0">(</span><span class="re0">$session</span>,</div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">array</span><span class="br0">(</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">array</span><span class="br0">(</span><span class="st0">&#8216;somestuff.method&#8217;</span>, <span class="st0">&#8216;arg1&#8242;</span><span class="br0">)</span>,</div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">array</span><span class="br0">(</span><span class="st0">&#8216;somestuff.method&#8217;</span>, <span class="kw3">array</span><span class="br0">(</span><span class="st0">&#8216;arg1&#8242;</span>, <span class="st0">&#8216;arg2&#8242;</span><span class="br0">)</span><span class="br0">)</span>,</div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">array</span><span class="br0">(</span><span class="st0">&#8216;somestuff.method&#8217;</span><span class="br0">)</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">)</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">)</span><span class="br0">)</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="co1">// If you don&#8217;t need the session anymore</span></div>
</li>
<li class="li1">
<div class="de1"><span class="re0">$client</span>-&gt;<span class="me1">call</span><span class="br0">(</span><span class="st0">&#8216;endSession&#8217;</span>, <span class="kw3">array</span><span class="br0">(</span><span class="re0">$session</span><span class="br0">)</span><span class="br0">)</span>;</div>
</li>
</ol>
</div>
</div>
<p>After a bunch of trial and error &#8211; scouring the web etc &#8211; i was finally able to make a connection with the following script</p>
<pre>&lt;?php
ini_set("display_errors", 1);
error_reporting(E_ALL);
define("XMLRPC_DEBUG", 1);

require_once('../app/Mage.php');
$client = new Zend_XmlRpc_Client('http://www.domain.com/api/xmlrpc');

// If somestuff requires api authentification, we should get session token
$session = $client-&gt;call('login', array('user', 'key'));

echo "&lt;pre&gt;";
print_r($session);
echo "&lt;/pre&gt;";

// If you don't need the session anymore
$client-&gt;call('endSession', array($session));
?&gt;</pre>
<p>one strange thing to note is the path to the API &#8211; with a trailing slash, i could not get this to work&#8230;&#8217;</p>
<p>I hope that this helps someone else out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhank.com/web-development/connecting-to-magento-via-xml-rpc/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Error Fix</title>
		<link>http://www.webhank.com/web-development/wordpress-error-fix</link>
		<comments>http://www.webhank.com/web-development/wordpress-error-fix#comments</comments>
		<pubDate>Mon, 28 Jul 2008 17:03:33 +0000</pubDate>
		<dc:creator>webhank</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.webhank.com/?p=72</guid>
		<description><![CDATA[recently after installing a plugin i got an error from WordPress that looked something like this. Warning: mysql_error(): X is not a valid MySQL-Link resource in (path) on line Y (Warning: mysql_error(): 9 is not a valid MySQL-Link resource in /var/www/vhosts/XXX/httpdocs/wp-includes/wp-db.php on line 282) i found the solution here and thought that i might post [...]]]></description>
			<content:encoded><![CDATA[<p>recently after installing a plugin i got an error from WordPress that looked something like this.</p>
<p>Warning: mysql_error(): X is not a valid MySQL-Link resource in (path) on line Y</p>
<p>(<strong>Warning</strong>:  mysql_error(): 9 is not a valid MySQL-Link resource in <strong>/var/www/vhosts/XXX/httpdocs/wp-includes/wp-db.php</strong> on line <strong>282)</strong></p>
<p>i found the solution here and thought that i might post the fix</p>
<p><a href="http://scripts.indisguise.org/2007/04/05/using-non-plugin-third-party-scripts-with-wordpress-212/">http://scripts.indisguise.org/2007/04/05/using-non-plugin-third-party-scripts-with-wordpress-212/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhank.com/web-development/wordpress-error-fix/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Root ID from embeded pages</title>
		<link>http://www.webhank.com/web-development/getting-root-id-from-embeded-pages</link>
		<comments>http://www.webhank.com/web-development/getting-root-id-from-embeded-pages#comments</comments>
		<pubDate>Thu, 17 Apr 2008 17:20:47 +0000</pubDate>
		<dc:creator>webhank</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[example code]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.webhank.com/?p=64</guid>
		<description><![CDATA[For quite a while now I have been using the following script to show sub navigation on WordPress Sidebars. It utilizes the built in wp_list_pages function to show parent and child relationships on a sidebar (or where ever you choose to use it for that matter). &#60;?php if($post-&#62;post_parent) $children = wp_list_pages("title_li=&#38;child_of=".$post-&#62;post_parent."&#38;echo=0"); else $children = wp_list_pages("title_li=&#38;child_of=".$post-&#62;ID."&#38;echo=0"); [...]]]></description>
			<content:encoded><![CDATA[<pre>
<pre>
<pre>
<div class="MultiBoxHelp" id="MultiBoxHelp"><a href="http://www.rutschmann.biz" title="powered by WordPress Multibox Plugin v1.3.5" target="_blank"><img src="http://www.webhank.com/wp-content/plugins/wordpress-multibox-plugin/images/help.png" alt="powered by WordPress Multibox Plugin v1.3.5" title="powered by WordPress Multibox Plugin v1.3.5" /></a></div>

<a href="http://www.webhank.com/wp-content/uploads/wordpressicon-hanttula2.gif"  class="wmp" id="wmp4"><img class="alignright size-full wp-image-61" style="float: right;" title="wordpressicon-hanttula2" src="http://www.webhank.com/wp-content/uploads/wordpressicon-hanttula2.gif" alt="wordpressicon hanttula2 Getting Root ID from embeded pages" width="80" height="80" /></a></pre>
</pre>
</pre>
<p>For quite a while now I have been using the following script to show sub navigation on <a title="Customizing Your WordPress Sidebar" href="http://codex.wordpress.org/Customizing_Your_Sidebar" target="_blank">WordPress Sidebars</a>.  It utilizes the built in <a title="Wp List Pages link to codex" href="http://codex.wordpress.org/Template_Tags/wp_list_pages" target="_blank">wp_list_pages</a> function to show parent and child relationships on a sidebar (or where ever you choose to use it for that matter).</p>
<p><tt> </tt>&lt;?php</p>
<pre><tt>if($post-&gt;post_parent)
$children = wp_list_pages("title_li=&amp;child_of=".$post-&gt;post_parent."&amp;echo=0");
else $children = wp_list_pages("title_li=&amp;child_of=".$post-&gt;ID."&amp;echo=0");</tt> <tt>if ($children) { ?&gt;</tt> <tt> &lt;ul&gt; &lt;?php echo $children; ?&gt; &lt;/ul&gt; &lt;?php } ?&gt;</tt></pre>
<p>I like that it is simple, and that it can be re-written to show items only if they are child pages of a specific parent, ie:</p>
<pre>&lt;?php
// find out what the top level page is

global $post;
if($post-&gt;post_parent) $parentPG = $post-&gt;post_parent; // page is a child
else $parentPG = $post-&gt;ID; // page has children
?&gt;

&lt;?php

// marketing

if($parentPG==7){

// show items if the parent id is 7
}elseif($parentPG==8){
// show items if the parent id is 8
}
?&gt;</pre>
<p>This works great when you only need to make it work with parent and child pages.  Recently, however, I had the need to utilize this type of functionality on a project that required pages 3 levels deep (grandchildren?).  After a bit of Googling, and searching through the <a title="Link to the WordPress Codex" href="http://codex.wordpress.org/Main_Page" target="_blank">WordPress Codex</a> I realized that I was going to have to &#8220;roll my own&#8221; on this one.  So here you go &#8211; there are probably better ways of doing this.  If you know of one please let me know, but maybe this will help someone else searching for &#8220;wordpress list grandchildren&#8221;</p>
<pre>&lt;?php
// find out what the top level page is
global $post;
if($post-&gt;post_parent){
$parentPG = $post-&gt;post_parent; // page is a child

// check for grand children
$sql = "SELECT * FROM `".$wpdb-&gt;prefix."posts` WHERE ID=$parentPG";
$data = $wpdb-&gt;get_results($sql,ARRAY_A);

if(!empty($data[0][post_parent])) $parentPG=$data[0][post_parent];
}
else $parentPG = $post-&gt;ID; // page has children
?&gt;

&lt;?php

// marketing
if($parentPG==7){
// show stuff for parent 7
}elseif($parentPG==8){
// show stuff for parent 8
}
?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.webhank.com/web-development/getting-root-id-from-embeded-pages/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>testing wordpress 2.5 gallery</title>
		<link>http://www.webhank.com/web-development/testing-wordpress-25-gallery</link>
		<comments>http://www.webhank.com/web-development/testing-wordpress-25-gallery#comments</comments>
		<pubDate>Mon, 31 Mar 2008 18:06:40 +0000</pubDate>
		<dc:creator>webhank</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.webhank.com/?p=49</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<a href='http://www.webhank.com/web-development/testing-wordpress-25-gallery/attachment/img_0063' title='img_0063'><img width="150" height="150" src="http://www.webhank.com/wp-content/uploads/img_0063-150x150.jpg" class="attachment-thumbnail" alt="img 0063 150x150 testing wordpress 2.5 gallery" title="img_0063" /></a>
<a href='http://www.webhank.com/web-development/testing-wordpress-25-gallery/attachment/img_0064' title='img_0064'><img width="150" height="150" src="http://www.webhank.com/wp-content/uploads/img_0064-150x150.jpg" class="attachment-thumbnail" alt="img 0064 150x150 testing wordpress 2.5 gallery" title="img_0064" /></a>
<a href='http://www.webhank.com/web-development/testing-wordpress-25-gallery/attachment/img_0066' title='img_0066'><img width="150" height="150" src="http://www.webhank.com/wp-content/uploads/img_0066-150x150.jpg" class="attachment-thumbnail" alt="img 0066 150x150 testing wordpress 2.5 gallery" title="img_0066" /></a>
<a href='http://www.webhank.com/web-development/testing-wordpress-25-gallery/attachment/img_0067' title='img_0067'><img width="150" height="150" src="http://www.webhank.com/wp-content/uploads/img_0067-150x150.jpg" class="attachment-thumbnail" alt="img 0067 150x150 testing wordpress 2.5 gallery" title="img_0067" /></a>
<a href='http://www.webhank.com/web-development/testing-wordpress-25-gallery/attachment/img_0069' title='img_0069'><img width="150" height="150" src="http://www.webhank.com/wp-content/uploads/img_0069-150x150.jpg" class="attachment-thumbnail" alt="img 0069 150x150 testing wordpress 2.5 gallery" title="img_0069" /></a>
<a href='http://www.webhank.com/web-development/testing-wordpress-25-gallery/attachment/img_0070' title='img_0070'><img width="150" height="150" src="http://www.webhank.com/wp-content/uploads/img_0070-150x150.jpg" class="attachment-thumbnail" alt="img 0070 150x150 testing wordpress 2.5 gallery" title="img_0070" /></a>
<a href='http://www.webhank.com/web-development/testing-wordpress-25-gallery/attachment/img_0071' title='img_0071'><img width="150" height="150" src="http://www.webhank.com/wp-content/uploads/img_0071-150x150.jpg" class="attachment-thumbnail" alt="img 0071 150x150 testing wordpress 2.5 gallery" title="img_0071" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.webhank.com/web-development/testing-wordpress-25-gallery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.5 Debut</title>
		<link>http://www.webhank.com/web-development/wordpress-25-debut</link>
		<comments>http://www.webhank.com/web-development/wordpress-25-debut#comments</comments>
		<pubDate>Sun, 30 Mar 2008 15:19:45 +0000</pubDate>
		<dc:creator>webhank</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.webhank.com/?p=41</guid>
		<description><![CDATA[well it finally happened after what seems like a rather long wait, WordPress 2.5 with its completely re-designed admin system is hot off the presses and ready to install.  I have done the upgrade on a handful of blogs and sites so far and it&#8217;s been seamless.  I am very impressed with the new admin [...]]]></description>
			<content:encoded><![CDATA[<p>well it finally happened after what seems like a rather long wait, WordPress 2.5 with its completely re-designed admin system is hot off the presses and ready to install.  I have done the upgrade on a handful of blogs and sites so far and it&#8217;s been seamless.  I am very impressed with the new admin &#8211; all in all it&#8217;s taken a product that I think is great and only made it better.</p>
<p>Great Job!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhank.com/web-development/wordpress-25-debut/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.5 Admin</title>
		<link>http://www.webhank.com/web-development/wordpress-25-admin</link>
		<comments>http://www.webhank.com/web-development/wordpress-25-admin#comments</comments>
		<pubDate>Wed, 19 Mar 2008 16:24:49 +0000</pubDate>
		<dc:creator>webhank</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.webhank.com/?p=36</guid>
		<description><![CDATA[So i installed WordPress 2.5 release candidate 1 on this site so that i can familiarize myself with the new features, and I have to say, my first reaction is WOW!  The new admin is a much cleaner look and feel.  The new functionality is amazing.  There is integrated support for video, all I can [...]]]></description>
			<content:encoded><![CDATA[<p>So i installed <a title="Link to WordPress 2.5 release candidate 1" href="http://wordpress.org/development/2008/03/25-sneak-peek/" target="_blank">WordPress 2.5 release candidate 1</a> on this site so that i can familiarize myself with the new features, and I have to say, my first reaction is WOW!  The new admin is a much cleaner look and feel.  The new functionality is amazing.  There is integrated support for video, all I can say is I can&#8217;t wait until this is available as a full release.  It&#8217;s going to knock people&#8217;s socks off!</p>
<p>Way to go WordPress.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhank.com/web-development/wordpress-25-admin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.5 sneak peak</title>
		<link>http://www.webhank.com/web-development/wordpress-25-sneak-peak</link>
		<comments>http://www.webhank.com/web-development/wordpress-25-sneak-peak#comments</comments>
		<pubDate>Wed, 19 Mar 2008 00:01:14 +0000</pubDate>
		<dc:creator>webhank</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.webhank.com/web-development/wordpress-25-sneak-peak</guid>
		<description><![CDATA[http://wordpress.org/development/2008/03/25-sneak-peek/ sounds cool &#8211; i can hardly wait.]]></description>
			<content:encoded><![CDATA[<p>http://wordpress.org/development/2008/03/25-sneak-peek/</p>
<p>sounds cool &#8211; i can hardly wait.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhank.com/web-development/wordpress-25-sneak-peak/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modifications to Media Temple DV default configurations</title>
		<link>http://www.webhank.com/web-development/modifications-to-media-temple-dv-default-configurations</link>
		<comments>http://www.webhank.com/web-development/modifications-to-media-temple-dv-default-configurations#comments</comments>
		<pubDate>Fri, 14 Mar 2008 18:04:43 +0000</pubDate>
		<dc:creator>webhank</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Media Temple]]></category>

		<guid isPermaLink="false">http://www.webhank.com/web-development/modifications-to-media-temple-dv-default-configurations</guid>
		<description><![CDATA[At Invisible Window we have been hosting our client sites in addition to our own with Media Temple for quite some time. Media Temple&#8217;s service and support has been top-notch. There are a few things that we&#8217;ve had to figure out along the way and I hope that these links help someone else out there. [...]]]></description>
			<content:encoded><![CDATA[<p>At <a href="http://www.invisiblewindow.com" title="Web development with Invisible Window" target="_blank">Invisible Window</a> we have been hosting our client sites in addition to our own with <a href="http://mediatemple.net/" title="Media Temple Hosting" target="_blank">Media Temple</a> for quite some time.  Media Temple&#8217;s service and support has been top-notch.  There are a few things that we&#8217;ve had to figure out along the way and I hope that these links help someone else out there.</p>
<ol>
<li><strong>Disable root ssh access: </strong>instructions for disabling the root user and allowing another user to assume the root users permissions. This adds a layer of security requiring an additional username and password to be entered before gaining root user privileges.<br />
<a href="http://kb.mediatemple.net/article.php?id=713" title="Media Temple Knowledge Base Article on removing root ssh access" target="_blank">Media Temple Knowledge Base Article</a></li>
<li><strong>Performance Tuning: </strong>This article summarizes ways to optimize your (dv) to run with less memory / resources, increase stability, and to ensure higher availability under heavier loads.<br />
<a href="http://kb.mediatemple.net/article.php?id=771" title="Performance tuning a Media Temple DV server" target="_blank"> Media Temple Knowledge Base Article</a></li>
<li><strong>Raise Courier-IMAP Connections: </strong>Seeing this message when accessing your email? &#8220;Unable to connect to your IMAP server. You may have exceeded the maximum number of connections to this server.&#8221;By default, Plesk and the Courier-IMAP e-mail server drastically limit the number of inbound connections to prevent users from opening up too many concurrent sessions. Unfortunately, this restriction can impact legitimate users who have multiple computers connecting to the Courier-IMAP server.<br />
<a href="http://kb.mediatemple.net/article.php?id=259" title="change coruier-IMAP connections on a Media Temple Dedicated Virtual server" target="_blank"> Media Temple Knowledge Base Article</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.webhank.com/web-development/modifications-to-media-temple-dv-default-configurations/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>missing&#8230;WordPress 2.5</title>
		<link>http://www.webhank.com/web-development/missingwordpress-25</link>
		<comments>http://www.webhank.com/web-development/missingwordpress-25#comments</comments>
		<pubDate>Mon, 10 Mar 2008 20:12:33 +0000</pubDate>
		<dc:creator>webhank</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.webhank.com/web-development/missingwordpress-25</guid>
		<description><![CDATA[The blogsphere buzz surrounding the release of WordPress 2.5 has indicated that it will be released today&#8230;but as of yet, nothing. I am looking forward to this release as it has made significant upgrades to the admin system, and I am curious how all of the various themes and plugins jive with it. My plugin [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://en.wikipedia.org/wiki/Blogsphere" title="definition of blogsphere" target="_blank">blogsphere</a> buzz surrounding the release of WordPress 2.5 has indicated that it will be released today&#8230;but as of yet, nothing.  I am looking forward to this release as it has made significant upgrades to the admin system, and I am curious how all of the various themes and plugins jive with it.  My plugin curiosity especially surrounds <a href="http://www.invisiblewindow.com/wordpress/google-maps-wordpress-plugin" title="Google Mapper WordPress Plugin by Invisible Window" target="_blank">Google Mapper</a>, a plugin we wrote at Invisible Window.</p>
<p>So stay tuned&#8230;i will let you know when 2.5 decides to grace us with its presence.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webhank.com/web-development/missingwordpress-25/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
