<?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>The PhenixbluE &#187; Upgrades</title>
	<atom:link href="http://phenix.thephenixblue.com/category/site/upgrades-site/feed/" rel="self" type="application/rss+xml" />
	<link>http://phenix.thephenixblue.com</link>
	<description>Bringing Nonsense to the Masses since 2003!</description>
	<lastBuildDate>Wed, 10 Mar 2010 22:26:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WP Post Scheduling Mishap</title>
		<link>http://phenix.thephenixblue.com/2009/12/wp-post-scheduling-mishap/</link>
		<comments>http://phenix.thephenixblue.com/2009/12/wp-post-scheduling-mishap/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 18:30:22 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Problems]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Upgrades]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[2.9]]></category>
		<category><![CDATA[scheduled posts]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=576</guid>
		<description><![CDATA[I recently had to help someone I host a site for solve a very strange issue with post scheduling after an upgrade to 2.9 on his WP site. I&#8217;ve hosted many WP sites over the years and have never had this problem personally, so I had to dig around a bit.
The Issue:
When the time allotted [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had to help someone I host a site for solve a very strange issue with post scheduling after an upgrade to 2.9 on his WP site. I&#8217;ve hosted many WP sites over the years and have never had this problem personally, so I had to dig around a bit.</p>
<p>The Issue:</p>
<p>When the time allotted for a scheduled post to be published occurs, the post is not published, and a message within the Admin panel only says &#8220;Missed Schedule.&#8221;</p>
<p>After perusing around the WP forums for a bit, I came to realize that this is a <a title="WP 2.9 Scheduled Posts Missed (Forum)" href="http://wordpress.org/support/topic/343080" onclick="urchinTracker('/outgoing/wordpress.org/support/topic/343080?referer=');">hot topic</a> for many 2.9 early adopters. After looking deeper into the forums, I found that this has been a potential issue with Wordpress versions since the release of 2.7. Some say the &#8220;Missed Schedule&#8221; mishap can be caused by a temporary &#8220;hiccup&#8221; with a site&#8217;s DNS. As I manage the DNS for the particular site I host, I knew this to not be the case. Further research did indeed provide me with a solution.</p>
<p>The Solution:</p>
<p>Apparently with all the new fancy upgrades to the WP core, a significant amount of time (in the web world this means milliseconds!) has been added to the time it takes to run the job that actually publishes a post. From what I can tell this is due to the number of hooks that data has to be run through to make it from the edit page as a draft, to the front page of your blog as a live post. The addition of running it through the scheduling cron job pushes it too far. Can&#8217;t we just extend the allowable time to publish a post you say? Here you go:</p>
<p>The time limit is set around line 230 in the /wp-includes/cron.php file. The default line will appear as such:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>230
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">wp_remote_post<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$cron_url</span><span style="color: #339933;">,</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'timeout'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color:#800080;">0.01</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'blocking'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'sslverify'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> apply_filters<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'https_local_ssl_verify'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>As you can see, the limit is set to 0.01 seconds by default. I tried increasing the value in increments, and finally decided on 20 seconds. You may find that this can very from server to server, so play around with it for a bit to optimize it for your setup. So here&#8217;s the updates line:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>230
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">wp_remote_post<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$cron_url</span><span style="color: #339933;">,</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'timeout'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color:#800080;">20.0</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'blocking'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'sslverify'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> apply_filters<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'https_local_ssl_verify'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>So there you go! If you&#8217;ve found yourself upgrading to a new version of WP and you are unable to successfully publish a scheduled post, try this out!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F12%2Fwp-post-scheduling-mishap%2F&amp;linkname=WP%20Post%20Scheduling%20Mishap" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F12_2Fwp-post-scheduling-mishap_2F_amp_linkname=WP_20Post_20Scheduling_20Mishap&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/12/wp-post-scheduling-mishap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ZebluePrime Gets New Digs!!!</title>
		<link>http://phenix.thephenixblue.com/2009/10/zeblueprime-gets-new-digs/</link>
		<comments>http://phenix.thephenixblue.com/2009/10/zeblueprime-gets-new-digs/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 15:16:55 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Upgrades]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=534</guid>
		<description><![CDATA[So ZebluePrime got new digs last night&#8230;&#8230;.errr maybe he just washed them really! I helped him setup his own domain (zeblueprime.com) to get him off of a sub-domain i let him borrow (previously evan.phenixblue.com). Along with the domain setup there were a few changes to make within his wordpress install to make everything go smooth.
I [...]]]></description>
			<content:encoded><![CDATA[<p>So <a title="ZebluePrime's Site" href="http://zeblueprime.com" onclick="urchinTracker('/outgoing/zeblueprime.com?referer=');">ZebluePrime</a> got new digs last night&#8230;&#8230;.errr maybe he just washed them really! I helped him setup his own domain (zeblueprime.com) to get him off of a sub-domain i let him borrow (previously evan.phenixblue.com). Along with the domain setup there were a few changes to make within his wordpress install to make everything go smooth.</p>
<p>I try to keep a directory structure similar to this within my webroot:</p>
<p>WEBROOT/</p>
<p style="padding-left: 30px">/domain1.com</p>
<p style="padding-left: 30px">/domain2.com</p>
<p style="padding-left: 60px">/domain2.com/sub1.domain.com</p>
<p style="padding-left: 60px">/domain2.com/sub2.domain.com</p>
<p><span style="color: #ff0000">/*********************DISCLAIMER***********************************/</span></p>
<p><span style="color: #ff0000">PLEASE BACKUP YOUR DATABASE AND FILES BEFORE PERFORMING ANY OF THE FOLLOWING!!!</span></p>
<h3>Step 1: Migrate files from old sub-domain to new domain directory</h3>
<ul>
<li><strong>Create new directory</strong></li>
</ul>
<p style="padding-left: 60px">

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#sudo mkdir /WEBROOT/zeblueprime.com</span></pre></div></div>

<ul>
<li><strong>Change to old directory</strong></li>
</ul>
<p style="padding-left: 60px">

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#cd /WEBROOT/phenixblue.com/evan.phenixblue.com/</span></pre></div></div>

<ul>
<li><strong>Copy files from old dir to new dir</strong></li>
</ul>
<p style="padding-left: 60px">

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#sudo cp -R  * ../../zeblueprime.com/</span></pre></div></div>

<ul>
<li><strong>Change to new directory, verify your files (including .htaccess) exist, and have proper permissions and ownership</strong></li>
</ul>
<p style="padding-left: 60px">

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#cd ../../zeblueprime.com/</span></pre></div></div>

<p style="padding-left: 60px">

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#ls -la</span></pre></div></div>

<p><span id="more-534"></span></p>
<address><span style="color: #00ccff">NOTE: I also moved Zeblue to a new MySQL DB to keep up with the naming conventions I use for DB&#8217;s (Migrating to a new DB is outside of the scope of this post)</span></address>
<address> </address>
<h3>Step 2: Update url information within the Database (all DB edits performed via phpMyAdmin)</h3>
<ul>
<li><strong>Update Site and Blog URL</strong></li>
</ul>
<p style="padding-left: 60px">Within the &#8220;wp_options&#8221; table, change the &#8220;option_values&#8221; for the following &#8220;option_name&#8221; rows</p>
<p style="padding-left: 90px">&#8220;siteurl&#8221; -  change to: http://zeblueprime.com/<br />
&#8220;home&#8221; &#8211; change to: http://zeblueprime.com/</p>
<ul>
<li><strong>Update file upload url</strong></li>
</ul>
<p style="padding-left: 60px">Within the &#8220;wp_options&#8221; table, change the following &#8220;option_value&#8221; where &#8220;option_name&#8221; is &#8220;upload_path&#8221; to</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>WEBROOT<span style="color: #000000; font-weight: bold;">/</span>zeblue.com<span style="color: #000000; font-weight: bold;">/</span>wp<span style="color: #000000; font-weight: bold;">/</span>wp-content<span style="color: #000000; font-weight: bold;">/</span>uploads</pre></div></div>

<ul>
<li><strong>Update Post URL&#8217;s</strong></li>
</ul>
<p style="padding-left: 60px">Run the following SQL</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">UPDATE</span> wp_posts <span style="color: #993333; font-weight: bold;">SET</span> guid <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span> <span style="color: #66cc66;">&#40;</span>
guid<span style="color: #66cc66;">,</span>
<span style="color: #ff0000;">'http://evan.phenixblue.com'</span><span style="color: #66cc66;">,</span>
<span style="color: #ff0000;">'http://zeblueprime.com'</span><span style="color: #66cc66;">&#41;</span>;</pre></div></div>

<ul>
<li><strong>Update URL&#8217;s within your Post&#8217;s content</strong></li>
</ul>
<p style="padding-left: 60px">Run the following SQL</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">UPDATE</span> wp_posts <span style="color: #993333; font-weight: bold;">SET</span> post_content <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span> <span style="color: #66cc66;">&#40;</span>
post_content<span style="color: #66cc66;">,</span>
<span style="color: #ff0000;">'http://evan.phenixblue.com'</span><span style="color: #66cc66;">,</span>
<span style="color: #ff0000;">'http://zeblueprime.com'</span><span style="color: #66cc66;">&#41;</span>;</pre></div></div>

<h3>Step 3: Verify your site works</h3>
<p style="padding-left: 30px">Navigate to your site in a web browser and verify your page. post, tag, category, etc. links work (I normally test a few, and then assume they all work!). Also log into the admin interface and navigate through a few menus.</p>
<p>This should conclude all of the required modifications to change the domain of your WP install. This is by no means the only way to do it, just the way I chose to. You can also check out the <a title="WP Codex: Change Site URL" href="http://codex.wordpress.org/Changing_The_Site_URL" onclick="urchinTracker('/outgoing/codex.wordpress.org/Changing_The_Site_URL?referer=');">Wordpress Codex</a> for other options.</p>
<p>P.S. I typed up all of this after the fact, so some of the commands may not be perfect, and there&#8217;s the slight chance I may have skipped a step, but most will be able read between the lines!</p>
<p>-Phenix</p>
<p style="padding-left: 60px">
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F10%2Fzeblueprime-gets-new-digs%2F&amp;linkname=ZebluePrime%20Gets%20New%20Digs%21%21%21" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F10_2Fzeblueprime-gets-new-digs_2F_amp_linkname=ZebluePrime_20Gets_20New_20Digs_21_21_21&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/10/zeblueprime-gets-new-digs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Server Migration</title>
		<link>http://phenix.thephenixblue.com/2009/07/server-migration/</link>
		<comments>http://phenix.thephenixblue.com/2009/07/server-migration/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 21:41:29 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Upgrades]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[imac]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=305</guid>
		<description><![CDATA[This Friday, July 24 2009, at approximately 5:00pm will take the server that hosts this site, and all other sites (*.thephenixblue.com, *.phenixblue.com, *.jmsearcy.com, *.vsumug.com, *.vsumug.org, *.vsusinfonia.org, *.firehouseink.com, *.ceramicsdiva.com, *.thewebroot.com) will go offline. During the offline period all sites will be migrated to new server hardware, as well as additional upgrades to Apache, PHP, and MySQL. [...]]]></description>
			<content:encoded><![CDATA[<p>This Friday, July 24 2009, at approximately 5:00pm will take the server that hosts this site, and all other sites (*.thephenixblue.com, *.phenixblue.com, *.jmsearcy.com, *.vsumug.com, *.vsumug.org, *.vsusinfonia.org, *.firehouseink.com, *.ceramicsdiva.com, *.thewebroot.com) will go offline. During the offline period all sites will be migrated to new server hardware, as well as additional upgrades to Apache, PHP, and MySQL. The current server is identical in hardware, but resides on Mac OS X 10.5 client alongside other applications and services. The new server uses Mac OS X 10.5 Server, and is a dedicated box that will have no console interaction other than System Administration. During the migration I will also be pruning some older directories no longer used and striving for a cleaner and leaner setup! The entire migration will hopefully only take a few hours (transfer WWWROOT &amp; MySQL DB&#8217;s, reassign permissions, account creation, create Virtual Hosts &amp; Directories, and update DNS). The DNS changes may take up to 24 hours to propegate (normally only 1-4 hours). That&#8217;s the ideal work flow&#8230;&#8230;pending any unforseen doom! I will keep everyone up to date via twitter (<a title="jmsearcy on Twitter" href="http://twitter.com/jmsearcy" onclick="urchinTracker('/outgoing/twitter.com/jmsearcy?referer=');">@jmsearcy</a>). Thanks in advance for your <span style="text-decoration: line-through">patients </span>patience!</p>
<h3>New Server Specs:</h3>
<ul>
<li>20&#8243; Aluminum iMac</li>
<li>2.0 Ghz Intel Core 2 Duo</li>
<li>4GB DDR2 (667Mhz) RAM</li>
<li>250GB SATA HD</li>
<li>Gigabit Ethernet</li>
<li>128 Mb ATI Radeon 2400HD Graphics</li>
<li>8Mb/s High Speed Cable Internet</li>
<li>Sitting on a desk next to the kitchen!</li>
</ul>
<p>If you don&#8217;t like the fact that I use an iMac for a web server send me money for an xserve!</p>
<p>If you don&#8217;t like the fact that that I hosts sites off of an 8Mb/s connection, send monet for OC3!</p>
<p>If you don&#8217;t like the fact that my server is on a desk next to my kitchen, send money for a Data Center!</p>
<p>-Phenix</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F07%2Fserver-migration%2F&amp;linkname=Server%20Migration" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F07_2Fserver-migration_2F_amp_linkname=Server_20Migration&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/07/server-migration/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Site Plans</title>
		<link>http://phenix.thephenixblue.com/2009/03/new-site-plans/</link>
		<comments>http://phenix.thephenixblue.com/2009/03/new-site-plans/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 14:00:25 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Additions]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Upgrades]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[plans]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=166</guid>
		<description><![CDATA[So I&#8217;ve got some new plans for this site: 

Site migration

This will including a possible migration to a standard WP install, rather than the current WP MU hosting. I&#8217;m also toying with a possible change in URL to http://thephenixblue.com or changing the overall domain to http://phenixblue.com (for overall better SEO).

Add 1-2 contributing authors in addition to myself

 I would like to get one person [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve got some new plans for this site: </p>
<ul>
<li><strong>Site migration</strong></li>
</ul>
<p style="padding-left: 60px">This will including a possible migration to a standard WP install, rather than the current WP MU hosting. I&#8217;m also toying with a possible change in URL to <span style="color: #3366ff">http://thephenixblue.com</span> or changing the overall domain to <span style="color: #3366ff">http://phenixblue.com</span> (for overall better SEO).</p>
<ul>
<li><strong>Add 1-2 contributing authors in addition to myself</strong></li>
</ul>
<p style="padding-left: 60px"> I would like to get one person to cover Technology topics focusing more on the Linux OS platform, in addition to having a good understanding of the Mac and Windows OS platforms. I&#8217;m looking for someone that can offer an open and unbiased opinion on hardware, software, security, and other accepted practices surrounding Linux, and other platforms. This will help me focus on a smaller scope of information, and still offer the same broad coverage I originally intended for this site.</p>
<p style="padding-left: 60px">I also want to add one person to cover some Artistic design tutorials. I&#8217;m looking for someone that has experience with Adobe, Macromedia, Corel, and other industry standard design software. This person would be responsible to writing general application tutorials, as well as tutorials covering standard, and non-standard creative tasks, works, and methods. I would prefer someone that has experience on both Mac and Windows platforms. Any experience with screen casting is a plus, as I would like to offer some video tutorials. </p>
<p style="padding-left: 30px">Anyone with the experience I&#8217;ve mentioned, that has an interest in contributing to this sites content, please use the<a title="Contact" href="/contact/"> contact form</a>, or send an e-mail to <a title="PhenixbluE Support Contact" href="mailto:support@thephenixblue.com">support@thephenixblue.com</a> with a list of credentials, and a brief explanation as to why you would like to write for a Free Public Technology News Site.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F03%2Fnew-site-plans%2F&amp;linkname=New%20Site%20Plans" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F03_2Fnew-site-plans_2F_amp_linkname=New_20Site_20Plans&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/03/new-site-plans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Future Plans for Web Server</title>
		<link>http://phenix.thephenixblue.com/2009/03/future-plans-for-web-serve/</link>
		<comments>http://phenix.thephenixblue.com/2009/03/future-plans-for-web-serve/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 18:22:24 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Additions]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Upgrades]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[failover]]></category>
		<category><![CDATA[load balancing]]></category>
		<category><![CDATA[replication]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=136</guid>
		<description><![CDATA[I have already tweeted a generic request for anyone with experience/expertise in the following areas:

Remote data Replication
Remote Load Balancing
Remote Failover

The ideal setup would be to have 1 web server (Server A) at ground zero that dynamically replicates it&#8217;s files to another web server (Server B) 20-100 miles away, while simultaneously sharing the load across the [...]]]></description>
			<content:encoded><![CDATA[<p>I have already tweeted a generic request for anyone with experience/expertise in the following areas:</p>
<ul>
<li>Remote data Replication</li>
<li>Remote Load Balancing</li>
<li>Remote Failover</li>
</ul>
<p>The ideal setup would be to have 1 web server (Server A) at ground zero that dynamically replicates it&#8217;s files to another web server (Server B) 20-100 miles away, while simultaneously sharing the load across the two, and also providing an automatic failover to the other in case one goes down. I have never before venrutred into the realm of any of these topics, so I barely have a surface knowldge if this scenario is even possible, let alone practical. Should I configure this setup differently? I have already reserahced and found (as well as been referenced to) <a title="rsync" href="http://www.samba.org/rsync/" onclick="urchinTracker('/outgoing/www.samba.org/rsync/?referer=');">rsync</a> for data replication. I will also note that all of this will be on the Mac OS X 10.5 platform (slight possibility to move to 10.5 server) using a residential ISP connection. Thanks in advanced to anyone that can help out,</p>
<p>-Phenix</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F03%2Ffuture-plans-for-web-serve%2F&amp;linkname=Future%20Plans%20for%20Web%20Server" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F03_2Ffuture-plans-for-web-serve_2F_amp_linkname=Future_20Plans_20for_20Web_20Server&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/03/future-plans-for-web-serve/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
