<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How to: Install WordPress on a GoGrid Server in less than 10 minutes</title>
	<atom:link href="http://blog.gogrid.com/2008/06/30/how-to-install-wordpress-on-a-gogrid-server-in-less-than-10-minutes/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.gogrid.com/2008/06/30/how-to-install-wordpress-on-a-gogrid-server-in-less-than-10-minutes/</link>
	<description>&#34;Complex Infrastructure Made Easy™&#34;</description>
	<lastBuildDate>Wed, 22 May 2013 15:20:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jim Hunt</title>
		<link>http://blog.gogrid.com/2008/06/30/how-to-install-wordpress-on-a-gogrid-server-in-less-than-10-minutes/#comment-1935</link>
		<dc:creator>Jim Hunt</dc:creator>
		<pubDate>Tue, 21 Jul 2009 10:15:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gogrid.com/?p=203#comment-1935</guid>
		<description><![CDATA[Just had a WordPress problem myself with Centos LAMP. Support suggested: 
 
The simple steps to the problems with a missing MYSQL connection module in PHP is as follows: 
 
1)Perform a &#8216;yum update&#8217;  
2)Perform a &#8216;yum install php-mysql&#8217;  
3)Restart HTTPD 
 
That worked for me. 
 
N.B. the config files mentioned above are now split into assorted new locations!   
 
Jim  ]]></description>
		<content:encoded><![CDATA[<p>Just had a WordPress problem myself with Centos LAMP. Support suggested: </p>
<p>The simple steps to the problems with a missing MYSQL connection module in PHP is as follows: </p>
<p>1)Perform a &lsquo;yum update&rsquo;<br />
2)Perform a &lsquo;yum install php-mysql&rsquo;<br />
3)Restart HTTPD </p>
<p>That worked for me. </p>
<p>N.B. the config files mentioned above are now split into assorted new locations!   </p>
<p>Jim  </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryan Levine</title>
		<link>http://blog.gogrid.com/2008/06/30/how-to-install-wordpress-on-a-gogrid-server-in-less-than-10-minutes/#comment-334</link>
		<dc:creator>Bryan Levine</dc:creator>
		<pubDate>Wed, 13 Aug 2008 16:19:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gogrid.com/?p=203#comment-334</guid>
		<description><![CDATA[gomundo, 

You have to set Apache to recognize &lt;code&gt;.php&lt;/code&gt; extension files in your &lt;code&gt;httpd.conf &lt;/code&gt;file. Navigate to &lt;code&gt;/etc/httpd/conf &lt;/code&gt;and edit the file &lt;code&gt;httpd.conf &lt;/code&gt;with the command &lt;code&gt;vi httpd.conf&lt;/code&gt;. 

Locate the section looks like the following:


&lt;code&gt;# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
    DirectoryIndex index.html
#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#&lt;/code&gt;
 
Modify the line &lt;code&gt;DirectoryIndex index.html&lt;/code&gt; by adding &lt;code&gt;index.php&lt;/code&gt; in front of &lt;code&gt;index.html &lt;/code&gt;so that it looks like this: 

&lt;code&gt;DirectoryIndex index.php index.html&lt;/code&gt;

Save and exit the file. Now you have to restart Apache, so enter the command &lt;code&gt;service httpd restart&lt;/code&gt;. That should fix the problem. 

-Bryan]]></description>
		<content:encoded><![CDATA[<p>gomundo, </p>
<p>You have to set Apache to recognize <code>.php</code> extension files in your <code>httpd.conf </code>file. Navigate to <code>/etc/httpd/conf </code>and edit the file <code>httpd.conf </code>with the command <code>vi httpd.conf</code>. </p>
<p>Locate the section looks like the following:</p>
<p><code># DirectoryIndex: sets the file that Apache will serve if a directory<br />
# is requested.<br />
#<br />
    DirectoryIndex index.html<br />
#<br />
# The following lines prevent .htaccess and .htpasswd files from being<br />
# viewed by Web clients.<br />
#</code></p>
<p>Modify the line <code>DirectoryIndex index.html</code> by adding <code>index.php</code> in front of <code>index.html </code>so that it looks like this: </p>
<p><code>DirectoryIndex index.php index.html</code></p>
<p>Save and exit the file. Now you have to restart Apache, so enter the command <code>service httpd restart</code>. That should fix the problem. </p>
<p>-Bryan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gomundo</title>
		<link>http://blog.gogrid.com/2008/06/30/how-to-install-wordpress-on-a-gogrid-server-in-less-than-10-minutes/#comment-292</link>
		<dc:creator>gomundo</dc:creator>
		<pubDate>Thu, 07 Aug 2008 01:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gogrid.com/?p=203#comment-292</guid>
		<description><![CDATA[Thanks bryan I did that on the wordpress and drupal installs to finish the installs, but even after successful installs still the default is to browse directory rather than load a default page in the browser, could this be an .htaccess file issue, i do not see one in the www directory or the wp or dru directories....tried to add but I really suck at this, im definately a gui kinda guy....]]></description>
		<content:encoded><![CDATA[<p>Thanks bryan I did that on the wordpress and drupal installs to finish the installs, but even after successful installs still the default is to browse directory rather than load a default page in the browser, could this be an .htaccess file issue, i do not see one in the www directory or the wp or dru directories&#8230;.tried to add but I really suck at this, im definately a gui kinda guy&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryan Levine</title>
		<link>http://blog.gogrid.com/2008/06/30/how-to-install-wordpress-on-a-gogrid-server-in-less-than-10-minutes/#comment-286</link>
		<dc:creator>Bryan Levine</dc:creator>
		<pubDate>Wed, 06 Aug 2008 15:38:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gogrid.com/?p=203#comment-286</guid>
		<description><![CDATA[@ gomundo,

Append the URL with install.php and it will bring up the installation screen. For example, http://208.113.X.XX/install.php. That should solve your problem. 

Thanks, 

Bryan Levine]]></description>
		<content:encoded><![CDATA[<p>@ gomundo,</p>
<p>Append the URL with install.php and it will bring up the installation screen. For example, <a href="http://208.113.X.XX/install.php" rel="nofollow">http://208.113.X.XX/install.php</a>. That should solve your problem. </p>
<p>Thanks, </p>
<p>Bryan Levine</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gomundo</title>
		<link>http://blog.gogrid.com/2008/06/30/how-to-install-wordpress-on-a-gogrid-server-in-less-than-10-minutes/#comment-280</link>
		<dc:creator>gomundo</dc:creator>
		<pubDate>Wed, 06 Aug 2008 05:26:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gogrid.com/?p=203#comment-280</guid>
		<description><![CDATA[Trying to learn the linux stuff...followed instructions, so far have installed wordpress and drupal. I have the same problem in both installs, when I browse to directory rather than rendering the default page in the directory the browser shows the directory structure. Also what is the best way to connect to a linux gui from a windows box...thanks in advance]]></description>
		<content:encoded><![CDATA[<p>Trying to learn the linux stuff&#8230;followed instructions, so far have installed wordpress and drupal. I have the same problem in both installs, when I browse to directory rather than rendering the default page in the directory the browser shows the directory structure. Also what is the best way to connect to a linux gui from a windows box&#8230;thanks in advance</p>
]]></content:encoded>
	</item>
</channel>
</rss>
