<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>41Square</title>
	
	<link>http://www.41square.com</link>
	<description>Blogging Experiments</description>
	<lastBuildDate>Sun, 26 Feb 2012 21:47:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/lifestrikes/ZkHJ" /><feedburner:info uri="lifestrikes/zkhj" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Fixed – WordPress Asks for FTP Connection to Install Plugin</title>
		<link>http://feedproxy.google.com/~r/lifestrikes/ZkHJ/~3/Xya0P7yWaGU/</link>
		<comments>http://www.41square.com/wordpress-asks-for-ftp/#comments</comments>
		<pubDate>Sun, 26 Feb 2012 19:38:29 +0000</pubDate>
		<dc:creator>Raghu</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">http://www.41square.com/?p=456</guid>
		<description><![CDATA[<p>Why does WordPress asks for FTP Connection details? WordPress allows to automatically install and upgrade plugins from within the the site without having to login into FTP. A common problem is that WordPress is unable to access the filesystem directly, which results in a page indicating following message “To perform the requested action, WordPress need [...]</p><p>This post - <a href="http://www.41square.com/wordpress-asks-for-ftp/">Fixed &#8211; WordPress Asks for FTP Connection to Install Plugin</a> is from <a href="http://www.41square.com">41Square</a>.</p>]]></description>
			<content:encoded><![CDATA[<p><em>Why does WordPress asks for FTP Connection details?</em></p>
<p>WordPress allows to automatically install and upgrade plugins from within the the site without having to login into FTP.</p>
<p>A common problem is that WordPress is unable to access the filesystem directly, which results in a page indicating following message</p>
<p>“<em>To perform the requested action, WordPress need to access your web server. Please enter your FTP credentials to proceed&#8230;&#8230;&#8221;.</em></p>
<div id="attachment_457" class="wp-caption aligncenter" style="width: 542px"><img class="wp-image-457   " title="wordpress-ftp-connection-plugins-install" src="http://www.41square.com/wp-content/uploads/2012/02/wordpress-ftp-connection-plugins-install.png" alt="Wordpress Asks for FTP" width="532" height="145" /><p class="wp-caption-text">Wordpress FTP connection</p></div>
<h2 style="text-align: left;">WordPress Asks FTP Credentials</h2>
<p>WordPress needs to make changes in the filesystem to install or upgrade the files.</p>
<p>Before modifying the files, WordPress need to have permission to make changes to the file system.</p>
<p>For WordPress to access the filesystem, functions that will write to the filesystem must be owned by the same user running  the apache process.</p>
<h3>Who Owns Apache</h3>
<p>There are 2 ways that I&#8217;m aware of finding apache owner.</p>
<p><strong>Option 1:</strong></p>
<p>Run the following command to find who owns apache</p>
<p style="padding-left: 30px;"><code>ps aux | grep apache</code></p>
<p><strong>Sample Output</strong></p>
<p>root@host [~]# ps aux | grep apache<br />
root      3335  0.0  0.5 158828 12644 ?        Ss   16:44   0:00 /usr/local/apache/bin/httpd -k start -DSSL<br />
<strong>nobody </strong>   9243  2.4  6.8 187336 158208 ?       S    18:08   0:34 /usr/local/apache/bin/httpd -k start -DSSL</p>
<p><strong>Option 2</strong>:</p>
<p>Run the following command</p>
<pre style="padding-left: 30px;"><code>egrep -iw --color=auto 'user|group' /etc/httpd/conf/httpd.conf</code></pre>
<div id="attachment_458" class="wp-caption aligncenter" style="width: 581px"><img class="size-full wp-image-458 " title="apache ownership" src="http://www.41square.com/wp-content/uploads/2012/02/apache-ownership.png" alt="Apache Owner" width="571" height="150" /><p class="wp-caption-text">Apache Owner</p></div>
<p>As you can see the User is <strong>nobody</strong> and he Group is <strong>nobody</strong>.</p>
<p>Go to wp-content folder and check its properties. Ownership should be either the username or root (whcih is why FTP credentials are required).</p>
<h2>Change Ownership and Group</h2>
<p>Using Win-SCP as FTP client you can change the ownership and group as follows (Right Click on Folder, select Properties)</p>
<p><img class=" wp-image-461 alignright" title="change-owner=wordpress" src="http://www.41square.com/wp-content/uploads/2012/02/change-ownerwordpress.png" alt="" width="224" height="272" /></p>
<ul>
<li>Change Owner and Group to nobody.</li>
<li>Checkbox Set permissions recursively</li>
<li>Repeat this for other wordpress folders in the wp-admin and wp-includes</li>
</ul>
<p>Alternatively, you can use chown command to ownership of the folders and files recursively.</p>
<p>Now try to  instal or upgrading the plugin. You shouldn&#8217;t be prompted for FTP connection credentials.</p>
<h2>Quick Fix</h2>
<p>If you don&#8217;t want to change the ownership of  folders within wordpress, here is another way to get around the FTP connection credentials prompt.</p>
<p>Open wp-config.php file located at /home/yourusername/public_html or /home/yourusername/</p>
<p>Add following 3 lines of code</p>
<p>define(&#8220;FTP_HOST&#8221;, &#8220;localhost&#8221;);<br />
define(&#8220;FTP_USER&#8221;, &#8220;ftp-username&#8221;);<br />
define(&#8220;FTP_PASS&#8221;, &#8220;ftp-password&#8221;);</p>
<p>Change the ftp-username and ftp-password.</p>
<p>Save the file.</p>
<p>Now, try to install or upgrade a plugin.</p>
<p>This should have fixed the wordpress FTP connection credentials prompt.</p>
<p>Now, happy installing or upgrading plugins and themes from within WordPress.</p>
<p>This post - <a href="http://www.41square.com/wordpress-asks-for-ftp/">Fixed &#8211; WordPress Asks for FTP Connection to Install Plugin</a> is from <a href="http://www.41square.com">41Square</a>.</p><img src="http://feeds.feedburner.com/~r/lifestrikes/ZkHJ/~4/Xya0P7yWaGU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.41square.com/wordpress-asks-for-ftp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.41square.com/wordpress-asks-for-ftp/</feedburner:origLink></item>
		<item>
		<title>WordPress File and Folder Permissions</title>
		<link>http://feedproxy.google.com/~r/lifestrikes/ZkHJ/~3/PKivEk1vSjA/</link>
		<comments>http://www.41square.com/wordpress-file-folder-permissions/#comments</comments>
		<pubDate>Sun, 26 Feb 2012 20:07:18 +0000</pubDate>
		<dc:creator>Raghu</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[File Permissions]]></category>

		<guid isPermaLink="false">http://www.41square.com/?p=473</guid>
		<description><![CDATA[<p>Wordpres Codex has following recommendations for WordPress File and Folder permissions. But, ownership and group can cause bit of an issue to perform automatic plugin install and upgrades.  Wordpress Asks for FTP details [Fixed] WordPress Permissions Files and Directories Some neat features of WordPress come from allowing various files to be writable by the web [...]</p><p>This post - <a href="http://www.41square.com/wordpress-file-folder-permissions/">WordPress File and Folder Permissions</a> is from <a href="http://www.41square.com">41Square</a>.</p>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="Wordpress logo" src="http://s.wordpress.org/about/images/logo-blue/blue-m.png" alt="Wordpress logo" width="100" height="100" />Wordpres Codex has following recommendations for WordPress File and Folder permissions.</p>
<p>But, ownership and group can cause bit of an issue to perform automatic plugin install and upgrades.</p>
<p><a title="Fixed – WordPress Asks for FTP Connection to Install Plugin" href="http://www.41square.com/wordpress-asks-for-ftp/"> Wordpress Asks for FTP details</a> [Fixed]</p>
<h2>WordPress Permissions Files and Directories</h2>
<p>Some neat features of WordPress come from allowing various files to be writable by the web server. However, allowing write access to your files is potentially dangerous, particularly in a shared hosting environment.</p>
<p>It is best to lock down your file permissions as much as possible and to loosen those restrictions on the occasions that you need to allow write access, or to create specific folders with less restrictions for the purpose of doing things like uploading files.</p>
<h3>Here is one possible permission scheme.</h3>
<p>All files should be owned by your user account, and should be writable by you. Any file that needs write access from WordPress should be group-owned by the user account used by the web server.</p>
<dl>
<dt><strong><code>/</code></strong> </dt>
<dd>The root WordPress directory: all files should be writable only by your user account, except <code>.htaccess</code> if you want WordPress to automatically generate rewrite rules for you.</dd>
<dt></dt>
<dt><strong><code>/wp-admin/</code> </strong></dt>
<dd>The WordPress administration area: all files should be writable only by your user account.</dd>
<dt></dt>
<dt><strong><code>/wp-includes/</code> </strong></dt>
<dd>The bulk of WordPress application logic: all files should be writable only by your user account.</dd>
<dd></dd>
<dt><strong><code>/wp-content/</code> </strong></dt>
<dd>User-supplied content: intended to be completely writable by all users (owner/user, group, and public).</dd>
</dl>
<p>Within <code>/wp-content/</code> you will find:</p>
<dl>
<dt><strong><code>/wp-content/themes/</code> </strong></dt>
<dd>Theme files. If you want to use the built-in theme editor, all files need to be group writable. If you do not want to use the built-in theme editor, all files can be writable only by your user account.</dd>
<dt></dt>
<dt><strong><code>/wp-content/plugins/</code> </strong></dt>
<dd>Plugin files: all files should be writable only by your user account.</dd>
</dl>
<p>Other directories that may be present with <code>/wp-content/</code> should be documented by whichever plugin or theme requires them. Permissions may vary.</p>
<h2>Right Permissions</h2>
<p>I plan to test the above listed WordPress File, Folder permissions and share the results here.</p>
<p>This post - <a href="http://www.41square.com/wordpress-file-folder-permissions/">WordPress File and Folder Permissions</a> is from <a href="http://www.41square.com">41Square</a>.</p><img src="http://feeds.feedburner.com/~r/lifestrikes/ZkHJ/~4/PKivEk1vSjA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.41square.com/wordpress-file-folder-permissions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.41square.com/wordpress-file-folder-permissions/</feedburner:origLink></item>
		<item>
		<title>Life Span of a Tweet, Facebook Share and Email</title>
		<link>http://feedproxy.google.com/~r/lifestrikes/ZkHJ/~3/s0XsOQ20-gQ/</link>
		<comments>http://www.41square.com/life-span-of-a-tweet-facebook-share-and-email/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 17:46:04 +0000</pubDate>
		<dc:creator>Raghu</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.lifestrikes.com/?p=453</guid>
		<description><![CDATA[<p>Interesting bit of information. Source &#8211; bitly’s science team. A tweet’s productive life span is 2.8 hours according to a 2011 study by bitly’s science team. The team also discovered the “half life” for Facebook shares is 3.2 hours and emails or IMs (3.4 hours).</p><p>This post - <a href="http://www.41square.com/life-span-of-a-tweet-facebook-share-and-email/">Life Span of a Tweet, Facebook Share and Email</a> is from <a href="http://www.41square.com">41Square</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>Interesting bit of information.</p>
<p>Source &#8211; bitly’s science team.</p>
<p>A tweet’s productive life span is 2.8 hours according to a 2011 study by bitly’s science team.</p>
<p>The team also discovered the “half life” for Facebook shares is 3.2 hours and emails or IMs (3.4 hours).</p>
<p>This post - <a href="http://www.41square.com/life-span-of-a-tweet-facebook-share-and-email/">Life Span of a Tweet, Facebook Share and Email</a> is from <a href="http://www.41square.com">41Square</a>.</p><img src="http://feeds.feedburner.com/~r/lifestrikes/ZkHJ/~4/s0XsOQ20-gQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.41square.com/life-span-of-a-tweet-facebook-share-and-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.41square.com/life-span-of-a-tweet-facebook-share-and-email/</feedburner:origLink></item>
		<item>
		<title>WordPress Auto Upgrade Failed – Installation Failed</title>
		<link>http://feedproxy.google.com/~r/lifestrikes/ZkHJ/~3/ymS0Ysmnj3M/</link>
		<comments>http://www.41square.com/wordpress-auto-upgrade-failed-installation-failed/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 21:42:04 +0000</pubDate>
		<dc:creator>Raghu</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Upgrade Fails]]></category>

		<guid isPermaLink="false">http://www.lifestrikes.com/?p=450</guid>
		<description><![CDATA[<p>Worpdress Upgrade/Installation failed while trying to upgrade this site to WordPress 3.3.1 &#160; Downloading update from http://wordpress.org/wordpress-3.3.1-no-content.zip… Unpacking the update… Verifying the unpacked files… Installing the latest version… Could not copy file.: /public_html/index.php Installation Failed Folder/File Permissions Typical wordpress upgrade failure from within wordpress Automatic updates are related to file/folder permissions. Problem wp-content folder owner [...]</p><p>This post - <a href="http://www.41square.com/wordpress-auto-upgrade-failed-installation-failed/">WordPress Auto Upgrade Failed &#8211; Installation Failed</a> is from <a href="http://www.41square.com">41Square</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>Worpdress Upgrade/Installation failed while trying to upgrade this site to WordPress 3.3.1</p>
<p>&nbsp;</p>
<p style="padding-left: 30px;">Downloading update from http://wordpress.org/wordpress-3.3.1-no-content.zip…</p>
<p style="padding-left: 30px;">Unpacking the update…</p>
<p style="padding-left: 30px;">Verifying the unpacked files…</p>
<p style="padding-left: 30px;">Installing the latest version…</p>
<p style="padding-left: 30px;">Could not copy file.: /public_html/index.php</p>
<p style="padding-left: 30px;">Installation Failed</p>
<h2>Folder/File Permissions</h2>
<p>Typical wordpress upgrade failure from within wordpress Automatic updates are related to file/folder permissions.</p>
<h3>Problem</h3>
<ul>
<li>wp-content folder owner was set to nobody</li>
<li>wp-content/upload owner was set to the FTP User.</li>
</ul>
<p><strong>Fix</strong> &#8211; Apache should have same owner as webserver owner.</p>
<p>By changing the WordPress File and Folder permissions, WordPress Auto Upgrade will work without any issues.</p>
<h4>Solution -</h4>
<p>I have explained how to fix WordPress Auto upgrade error as part of <a title="Fixed – WordPress Asks for FTP Connection to Install Plugin" href="http://www.41square.com/wordpress-asks-for-ftp/">WordPress asks for FTP details</a>.</p>
<p>This post - <a href="http://www.41square.com/wordpress-auto-upgrade-failed-installation-failed/">WordPress Auto Upgrade Failed &#8211; Installation Failed</a> is from <a href="http://www.41square.com">41Square</a>.</p><img src="http://feeds.feedburner.com/~r/lifestrikes/ZkHJ/~4/ymS0Ysmnj3M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.41square.com/wordpress-auto-upgrade-failed-installation-failed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.41square.com/wordpress-auto-upgrade-failed-installation-failed/</feedburner:origLink></item>
		<item>
		<title>[Fixed] Fatal error: Cannot redeclare stats_get_options()</title>
		<link>http://feedproxy.google.com/~r/lifestrikes/ZkHJ/~3/FE7x1DEKbFE/</link>
		<comments>http://www.41square.com/fixed-fatal-error-cannot-redeclare-stats_get_options/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 21:27:36 +0000</pubDate>
		<dc:creator>Raghu</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Fatal Error]]></category>

		<guid isPermaLink="false">http://www.lifestrikes.com/?p=448</guid>
		<description><![CDATA[<p>Fatal Error Message while trying to delete WordPress Stats Plugin (after WordPress Jetpack is installed and Activated) Fatal error: Cannot redeclare stats_get_options() (previously declared in /home/username/public_html/wp-content/plugins/jetpack/modules/stats.php:110) in /home/username/public_html/wp-content/plugins/stats/stats.php on line # Solution Deactivate Jetpack Plugin Delete WordPress Stats Plugin Re-Activate Jetpack Connect Jetpack to WordPress.com &#160;</p><p>This post - <a href="http://www.41square.com/fixed-fatal-error-cannot-redeclare-stats_get_options/">[Fixed] Fatal error: Cannot redeclare stats_get_options()</a> is from <a href="http://www.41square.com">41Square</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>Fatal Error Message while trying to delete WordPress Stats Plugin (after WordPress Jetpack is installed and Activated)</p>
<p style="padding-left: 30px;"><strong>Fatal error: Cannot redeclare stats_get_options() (previously declared in /home/username/public_html/wp-content/plugins/jetpack/modules/stats.php:110) in /home/username/public_html/wp-content/plugins/stats/stats.php on line #</strong></p>
<h3>Solution</h3>
<ul>
<li>Deactivate Jetpack Plugin</li>
<li>Delete WordPress Stats Plugin</li>
<li>Re-Activate Jetpack</li>
<li>Connect Jetpack to WordPress.com</li>
</ul>
<p>&nbsp;</p>
<p>This post - <a href="http://www.41square.com/fixed-fatal-error-cannot-redeclare-stats_get_options/">[Fixed] Fatal error: Cannot redeclare stats_get_options()</a> is from <a href="http://www.41square.com">41Square</a>.</p><img src="http://feeds.feedburner.com/~r/lifestrikes/ZkHJ/~4/FE7x1DEKbFE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.41square.com/fixed-fatal-error-cannot-redeclare-stats_get_options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.41square.com/fixed-fatal-error-cannot-redeclare-stats_get_options/</feedburner:origLink></item>
		<item>
		<title>[Fixed] – Fatal error: Call to undefined function is_rtl() – WordPress</title>
		<link>http://feedproxy.google.com/~r/lifestrikes/ZkHJ/~3/Ai3Pp8iuE0E/</link>
		<comments>http://www.41square.com/fatal-error-call-to-undefined-function-is_rtl-general-template/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 21:22:01 +0000</pubDate>
		<dc:creator>Raghu</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Fatal Error]]></category>

		<guid isPermaLink="false">http://www.lifestrikes.com/?p=445</guid>
		<description><![CDATA[<p>While trying to upgrade wordpress to 3.3.1 I got the following  Fatal Error Fatal error: Call to undefined function is_rtl() in /home/username/public_html/wp-includes/general-template.php on line While trying to visit dashboard (after the upgrade or trying to configure other plugins, above Fatal Error was displayed. Fix &#8211; Popup Domination Plugin If you have Popup Domination Plugin installed, [...]</p><p>This post - <a href="http://www.41square.com/fatal-error-call-to-undefined-function-is_rtl-general-template/">[Fixed] &#8211; Fatal error: Call to undefined function is_rtl() &#8211; WordPress</a> is from <a href="http://www.41square.com">41Square</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>While trying to upgrade wordpress to 3.3.1 I got the following  Fatal Error</p>
<p style="padding-left: 30px;"><strong>Fatal error: Call to undefined function is_rtl() in /home/username/public_html/wp-includes/general-template.php on line </strong></p>
<p>While trying to visit dashboard (after the upgrade or trying to configure other plugins, above Fatal Error was displayed.</p>
<h2>Fix &#8211; Popup Domination Plugin</h2>
<p>If you have <strong>Popup Domination Plugin</strong> installed, then you are more likely to see the above  Fatal Error.</p>
<ul>
<li>FTP to your plugins folder</li>
<li>Rename Popup Domination Plugin Folder Name</li>
<ul>
<li>Example <strong>popup-domination to popup-domination-deactivated</strong></li>
</ul>
<li>Try visiting wordpress dashboard</li>
<li>Everything should work as expected.</li>
</ul>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>This post - <a href="http://www.41square.com/fatal-error-call-to-undefined-function-is_rtl-general-template/">[Fixed] &#8211; Fatal error: Call to undefined function is_rtl() &#8211; WordPress</a> is from <a href="http://www.41square.com">41Square</a>.</p><img src="http://feeds.feedburner.com/~r/lifestrikes/ZkHJ/~4/Ai3Pp8iuE0E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.41square.com/fatal-error-call-to-undefined-function-is_rtl-general-template/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.41square.com/fatal-error-call-to-undefined-function-is_rtl-general-template/</feedburner:origLink></item>
		<item>
		<title>Why VPS.net RAM Usgae is Freaking High?</title>
		<link>http://feedproxy.google.com/~r/lifestrikes/ZkHJ/~3/ks1FIdMlRAQ/</link>
		<comments>http://www.41square.com/why-vps-net-ram-usgae-is-freaking-high/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 12:33:29 +0000</pubDate>
		<dc:creator>Raghu</dc:creator>
				<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[Dreamhost VPS]]></category>
		<category><![CDATA[KnownHost]]></category>
		<category><![CDATA[VPS.NET]]></category>

		<guid isPermaLink="false">http://www.lifestrikes.com/?p=436</guid>
		<description><![CDATA[<p>Its been 4 weeks since all the sites were migrated to to HY-2 VPS package with KnownHost. VPS.NET was really pissed me off,  after experiencing downtime, poor customer support. I have been observing the RAM usage between two hosting providers and I was surprised to see the huge difference. VPS.net &#8211; Average RAM &#8211; 3 [...]</p><p>This post - <a href="http://www.41square.com/why-vps-net-ram-usgae-is-freaking-high/">Why VPS.net RAM Usgae is Freaking High?</a> is from <a href="http://www.41square.com">41Square</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>Its been 4 weeks since all the sites were migrated to to HY-2 VPS package with <strong>KnownHost</strong>. VPS.NET was really pissed me off,  after experiencing downtime, poor customer support.</p>
<p>I have been observing the RAM usage between two hosting providers and I was surprised to see the huge difference.</p>
<ul>
<li>VPS.net &#8211; Average RAM &#8211; 3 GB</li>
<li>VPS.net &#8211; Average RAM after migration 2 GB</li>
<li>KnownHost &#8211; Average RAM 450MB (4 weeks)</li>
</ul>
<p>I&#8217;m trying to figure out, why there is 2.5GB difference in RAM usage for the same number of sites.</p>
<h2>VPS.NET Issues</h2>
<p>I decided to sing-up with VPS after seeing the &#8220;famous Yoast&#8217; setup.</p>
<p>I was quick to realize, VPS.Net doesn&#8217;t care about their customers. Their management was communicating at one level, where as support staff were communicating at another level.</p>
<p>SAN-Atlanta was down for over 36 hours during first week of September. When asked when sites will be backup</p>
<blockquote><p>Your VPS is in queue to be rebooted and will be online ASAP.</p></blockquote>
<p>If you are having a planned downtime, then you better know how long it takes to bring things backup and running. Plus, inform customers few days ahead of the planned downtime.</p>
<h2>Known Host</h2>
<p>Man O Man. Best customer service I have seen with hosting provider so far (Dreamhost, VPS and Knownhost).</p>
<p>When I submit a ticket, they respond within 15 minutes. On top of that, they explain how the issue was fixed, commands run to fix it (sometimes with screenshot).</p>
<p>I might downgrade Hybrid Hosting plan to HY1. If RAM usage is just 450 Mb, why pat for HY2?</p>
<p>With my experience so far, I strongly recommend <strong><a href="http://www.knownhost.com/affiliate/idevaffiliate.php?id=761">Known Host</a></strong>. (affiliate link)</p>
<p>This post - <a href="http://www.41square.com/why-vps-net-ram-usgae-is-freaking-high/">Why VPS.net RAM Usgae is Freaking High?</a> is from <a href="http://www.41square.com">41Square</a>.</p><img src="http://feeds.feedburner.com/~r/lifestrikes/ZkHJ/~4/ks1FIdMlRAQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.41square.com/why-vps-net-ram-usgae-is-freaking-high/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.41square.com/why-vps-net-ram-usgae-is-freaking-high/</feedburner:origLink></item>
		<item>
		<title>Google Adsene Page – Auto Refreshing?</title>
		<link>http://feedproxy.google.com/~r/lifestrikes/ZkHJ/~3/8xoxC9scAE8/</link>
		<comments>http://www.41square.com/google-adsene-page-auto-refreshing/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 12:06:58 +0000</pubDate>
		<dc:creator>Raghu</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Adsense]]></category>

		<guid isPermaLink="false">http://www.lifestrikes.com/?p=441</guid>
		<description><![CDATA[<p>I started to notice Google Adsense page getting auto refreshed. I have seen it 3 times in last 10 hours. First 2 times, I thought I must gave hit the refresh button. But, third time around, I saw the page was getting refreshed. I have to figure out what is the time interval for auto [...]</p><p>This post - <a href="http://www.41square.com/google-adsene-page-auto-refreshing/">Google Adsene Page &#8211; Auto Refreshing?</a> is from <a href="http://www.41square.com">41Square</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>I started to notice Google Adsense page getting auto refreshed.</p>
<p>I have seen it 3 times in last 10 hours. First 2 times, I thought I must gave hit the refresh button. But, third time around, I saw the page was getting refreshed.</p>
<p>I have to figure out what is the time interval for auto refresh.</p>
<p>This post - <a href="http://www.41square.com/google-adsene-page-auto-refreshing/">Google Adsene Page &#8211; Auto Refreshing?</a> is from <a href="http://www.41square.com">41Square</a>.</p><img src="http://feeds.feedburner.com/~r/lifestrikes/ZkHJ/~4/8xoxC9scAE8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.41square.com/google-adsene-page-auto-refreshing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.41square.com/google-adsene-page-auto-refreshing/</feedburner:origLink></item>
		<item>
		<title>[Fixed] You probably tried to upload too large file – phpmyadmin</title>
		<link>http://feedproxy.google.com/~r/lifestrikes/ZkHJ/~3/oGoIf_RYrJk/</link>
		<comments>http://www.41square.com/fixed-you-probably-tried-to-upload-too-large-file-phpmyadmin/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 22:51:51 +0000</pubDate>
		<dc:creator>Raghu</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[xwampp]]></category>

		<guid isPermaLink="false">http://www.lifestrikes.com/?p=437</guid>
		<description><![CDATA[<p>Find the config.inc.php file located in the phpmyadmin directory. In my case it is located here: C:xamppphpmyadminconfig.inc.php Find the line with $cfg['UploadDir'] on it and update it to: $cfg['UploadDir'] = &#8216;upload&#8217;; If above line doesn&#8217;t exist, then copy it from config.sample.inc.php Create a directory called ‘upload’ within the phpmyadmin directory. C:xamppappsphpmyadminupload Then place the move [...]</p><p>This post - <a href="http://www.41square.com/fixed-you-probably-tried-to-upload-too-large-file-phpmyadmin/">[Fixed] You probably tried to upload too large file &#8211; phpmyadmin</a> is from <a href="http://www.41square.com">41Square</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>Find the config.inc.php file located in the phpmyadmin directory.</p>
<p>In my case it is located here:</p>
<ul>
<li>C:xamppphpmyadminconfig.inc.php</li>
</ul>
<p>Find the line with $cfg['UploadDir'] on it and update it to:</p>
<ul>
<li>$cfg['UploadDir'] = &#8216;upload&#8217;;</li>
</ul>
<p>If above line doesn&#8217;t exist, then copy it from config.sample.inc.php</p>
<p>Create a directory called ‘upload’ within the phpmyadmin directory.</p>
<ul>
<li>C:xamppappsphpmyadminupload</li>
</ul>
<p>Then place the move the sql files into upload folder.</p>
<p>Now when you go to phpmyadmin import page you will see  a drop down with list of .sql files.</p>
<p>You can now select this and begin the import.</p>
<p>I&#8217;m using xampp for Windows 7.</p>
<p>This post - <a href="http://www.41square.com/fixed-you-probably-tried-to-upload-too-large-file-phpmyadmin/">[Fixed] You probably tried to upload too large file &#8211; phpmyadmin</a> is from <a href="http://www.41square.com">41Square</a>.</p><img src="http://feeds.feedburner.com/~r/lifestrikes/ZkHJ/~4/oGoIf_RYrJk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.41square.com/fixed-you-probably-tried-to-upload-too-large-file-phpmyadmin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.41square.com/fixed-you-probably-tried-to-upload-too-large-file-phpmyadmin/</feedburner:origLink></item>
		<item>
		<title>KnownHost Hybrid VPS Review (migrated from VPS.NET)</title>
		<link>http://feedproxy.google.com/~r/lifestrikes/ZkHJ/~3/ZxFRavWjYtE/</link>
		<comments>http://www.41square.com/knownhost-hybrid-vps-review/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 06:00:49 +0000</pubDate>
		<dc:creator>Raghu</dc:creator>
				<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[KnownHost]]></category>

		<guid isPermaLink="false">http://www.lifestrikes.com/?p=428</guid>
		<description><![CDATA[<p>I moved all the sites including this one to VPS.Net to get that famous Yoast Setup (Litespeed with APC). Page loading speed definitely improved. I was aware that VPS.Net was un-managed hosting  and they offered to migrate all the sites from Dreamhost. I have been with VPS.Net for about 4 months, but not without issues. [...]</p><p>This post - <a href="http://www.41square.com/knownhost-hybrid-vps-review/">KnownHost Hybrid VPS Review (migrated from VPS.NET)</a> is from <a href="http://www.41square.com">41Square</a>.</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.41square.com/go/knownhost/" target="_blank"><img class="alignright" style="border: 0pt none;" src="http://www.knownhost.com/affiliate/banners/knownhost_234_60_1.gif" alt="" width="234" height="60" border="0" /></a><br />
I moved all the sites including this one to VPS.Net to get that famous Yoast Setup (Litespeed with APC).</p>
<p>Page loading speed definitely improved. I was aware that VPS.Net was un-managed hosting  and they offered to migrate all the sites from Dreamhost.</p>
<p>I have been with VPS.Net for about 4 months, but not without issues.</p>
<ul>
<li>Auto Scaling Reboot</li>
<li>Invoice Error</li>
<li>Poor Communication and Customer service with extended downtime&#8217;s</li>
</ul>
<p>There is really no point in bashing VPS.net. Let me share my experience with Known Host for last 10 days.</p>
<h2>Known Host Hybrid VPS</h2>
<p>After experiencing lengthy downtime followed, I started looking for Managed Dedicated Servers with following requirements</p>
<ul>
<li>4 GB of RAM</li>
<li>Good support</li>
<li>Budget was less than $200.</li>
</ul>
<p>Finding dedicated servers was a challenge and I narrowed down to Servint and <a href="http://www.41square.com/go/knownhost/" target="_blank">KnownHost</a>.</p>
<p>One of the main reason to look for 4 GB machines was VPS RAM usgae (which was about 3 GB of RAM).</p>
<p>There were pros and cons with Dedicated Servers offered by both hosting providers.</p>
<p>After exchanging few email with ServInt, I realized, virtual layer will be added to dedicated machines. I wasn&#8217;t interested in having a dedicated box with virtual layer.</p>
<p>Then I read the reviews about Awesome Customer support with <a href="http://www.41square.com/go/knownhost/" target="_blank">Knownhost</a> and highest Uptime for their VPS machines. So, I settled down with Hybrid 2 VPS option in Known Host.</p>
<p>Now, I have been with KH for 10 days, I can give 5 star rating for their customer support.</p>
<h3>KnownHost &#8211; Customer Support</h3>
<p>When support folks reply to the tickets, they provided detailed explanations on  how problem was fixed and commands used to fix them. This helps in the learning process about managing a web server.</p>
<p>Now, I have hosted sites with 3 different hosting providers (Dreamhost, VPS.Net and KH). Customer support with KH is the best among them.</p>
<p>Also, I have realized that true face of hosting providers will be visible only when hosting box fails or when other data center bring down the site. If they can handle the downtime with proper communication, then they have a long term customer.</p>
<p>Monthly hosting expense for <a href="http://www.41square.com/go/knownhost/" target="_blank">KnownHost HY2</a> comes to around $145 (with 15% discount for life)</p>
<p><em>Disclaimer &#8211; Links to Known Host is affiliate Link. If you sing-up for account with VPS through the link in this page, I will get small  affiliate fee.</em></p>
<p>&nbsp;</p>
<p>This post - <a href="http://www.41square.com/knownhost-hybrid-vps-review/">KnownHost Hybrid VPS Review (migrated from VPS.NET)</a> is from <a href="http://www.41square.com">41Square</a>.</p><img src="http://feeds.feedburner.com/~r/lifestrikes/ZkHJ/~4/ZxFRavWjYtE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.41square.com/knownhost-hybrid-vps-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.41square.com/knownhost-hybrid-vps-review/</feedburner:origLink></item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Database Caching using apc
Object Caching 1228/1308 objects using apc

Served from: www.41square.com @ 2012-02-26 16:47:09 -->

