<?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/" version="2.0">

<channel>
	<title>Kavoir</title>
	
	<link>http://www.kavoir.com</link>
	<description>Web Development Tips: HTML, CSS, JavaScript, PHP, MySQL, Apache, Linux, Web Applications (+ Security) and User Flow</description>
	<lastBuildDate>Tue, 09 Feb 2010 08:12:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Kavoir" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="kavoir" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">Kavoir</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>PHP: Why you should use dirname(__FILE__).’/include.php’ instead of just ‘include.php’</title>
		<link>http://www.kavoir.com/2010/02/php-why-you-should-use-dirname__file__-include-php-instead-of-just-include-php.html</link>
		<comments>http://www.kavoir.com/2010/02/php-why-you-should-use-dirname__file__-include-php-instead-of-just-include-php.html#comments</comments>
		<pubDate>Tue, 09 Feb 2010 02:06:18 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[PHP Tips & Tutorials]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2010/02/php-why-you-should-use-dirname__file__-include-php-instead-of-just-include-php.html</guid>
		<description><![CDATA[When you need to include or require a php file that is in the same directory as the currently running one, most people come up with this simple line in the current script:

include('include.php');
While this approach doesn’t present obvious breaches, it is slightly inefficient than the following way:
include(dirname(__FILE__).'/include.php');
You will type a little more but the extra [...]]]></description>
			<content:encoded><![CDATA[<p>When you need to include or require a php file that is in the same directory as the currently running one, most people come up with this simple line in the current script:</p>

<pre><code>include('include.php');</code></pre>
<p>While this approach doesn’t present obvious breaches, it is slightly inefficient than the following way:</p>
<pre><code>include(<a href="http://www.kavoir.com/2009/04/php-get-directory-or-filename-from-a-full-path-or-url.html">dirname</a>(__FILE__).'/include.php');</code></pre>
<p>You will type a little more but the extra code frees PHP from iterating through the <em><a href="http://php.net/manual/en/ini.core.php#ini.include-path">include_path</a></em> in the attempt to locate ‘include.php’ because dirname(__FILE__) has explicitly returned the absolute path to the file. The constant <strong>__FILE__</strong> in PHP always returns the absolute path to the script file that’s currently active &#8211; the PHP file in which the code line is being run right now. Function <strong>dirname()</strong> returns the directory part of the given path.</p>
<p>A better approach would be:</p>
<pre><code>include('./include.php');</code></pre>
<p>Which explicitly commands PHP to look for the file ‘include.php’ in the current directory, yet comes without the overhead of the function dirname().</p>
<p>Thanks to <a href="http://stackoverflow.com/questions/2220443/whats-better-of-requiredirname-file-myparent-php-than-just-require">Gumbo, alexef and Justin at Stack Overflow</a>.</p>
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/04/php-get-directory-or-filename-from-a-full-path-or-url.html" rel="bookmark" title="April 22, 2009">PHP: Getting Directory Path and Filename from A Full Path or URL</a></li>
<li><a href="http://www.kavoir.com/2009/04/php-create-a-temporary-file.html" rel="bookmark" title="April 22, 2009">PHP: Create a Temporary File</a></li>
<li><a href="http://www.kavoir.com/2009/04/php-change-current-working-directory.html" rel="bookmark" title="April 22, 2009">PHP: Change Current Working Directory</a></li>
<li><a href="http://www.kavoir.com/2009/01/php-file-upload-class.html" rel="bookmark" title="January 15, 2009">PHP: File Upload Script (HTML Form + PHP Handler Class)</a></li>
<li><a href="http://www.kavoir.com/2009/05/php-hide-the-real-file-url-and-provide-download-via-a-php-script.html" rel="bookmark" title="May 18, 2009">PHP: Hide the Real File URL and Provide Download via a PHP Script</a></li>
</ul>
<p><!-- Similar Posts took 2.369 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2010/02/php-why-you-should-use-dirname__file__-include-php-instead-of-just-include-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2 reasons you should host all static content on a different domain</title>
		<link>http://www.kavoir.com/2010/01/2-reasons-you-should-host-all-static-content-on-a-different-domain.html</link>
		<comments>http://www.kavoir.com/2010/01/2-reasons-you-should-host-all-static-content-on-a-different-domain.html#comments</comments>
		<pubDate>Sun, 24 Jan 2010 07:19:19 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[Domains]]></category>
		<category><![CDATA[HTTP Tips & Tutorials]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2010/01/2-reasons-you-should-host-all-static-content-on-a-different-domain.html</guid>
		<description><![CDATA[That is, to host all static content such as ready-made images, scripts, style sheets on a different domain rather than the primary one that hosts the page of the current URL. For example, if you intend to add static images to the web page located at http://www.example.com/page.html, you should not place the images on www.example.com, [...]]]></description>
			<content:encoded><![CDATA[<p>That is, to host all static content such as ready-made images, scripts, style sheets on a different domain rather than the primary one that hosts the page of the current URL. For example, if you intend to add static images to the web page located at <strong>http://www.example.com/page.html</strong>, you should not place the images on <strong>www.example.com</strong>, instead, put them somewhere else such as <strong>example-static.com</strong> or <strong>static.example.com</strong>.</p>

<p>The first reasoning for this is that browsers load web assets one by one or sequentially from a single host. They will not start requesting and downloading the next asset until they are finished with the previous one from the same domain. Therefore, doubling the hosts or domains can accelerate the downloading speed by about 100% because browsers can simultaneously download stuff from 2 different domains.</p>
<p>Another reasoning is that if cookie or session is enabled on your website, the browser would send the session cookie every time it makes a request to the domain, which sort of is useless because it’s static content – the server doesn’t need the cookie at all to serve static content such as images. It’s not only a waste of bandwidth but also a waste of communication time. To avoid this, serve all static content from a domain that is not cookie enabled. For instance, if you have set cookie with <strong>example.com</strong>, you can host all static content at static.example.com, however, if you have enabled cookie by <strong>*.example.com</strong> instead of just example.com, you will need to register a whole different domain to host the static content to steer clear of the useless overhead.</p>
<p>Not much for a small site, but this would be a major improvement regarding user experience for established, popular websites.<br />
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/08/php-session-id-changes-automatically-at-every-request-page-load.html" rel="bookmark" title="August 26, 2009">PHP: Session ID changes automatically at every request / page load</a></li>
<li><a href="http://www.kavoir.com/2009/04/php-curl-fetching-url-and-sending-request-with-cookies.html" rel="bookmark" title="April 22, 2009">PHP cURL: Fetching URL and Sending Request with Cookies</a></li>
<li><a href="http://www.kavoir.com/2009/09/safely-and-quickly-transfer-files-between-your-hosts-hosting-accounts-servers-with-scp-command.html" rel="bookmark" title="September 18, 2009">Safely and Quickly Transfer Files between Your Hosts / Hosting Accounts / Servers with scp command</a></li>
<li><a href="http://www.kavoir.com/2009/01/free-reverse-domain-ip-tool-for-other-websites-or-domains-on-the-same-server.html" rel="bookmark" title="January 11, 2009">Free Reverse Domain &amp; IP Tool for Other Websites or Domains on the Same Server</a></li>
<li><a href="http://www.kavoir.com/2009/07/bulk-domain-name-availability-checker-tool-to-batch-check-domain-availability.html" rel="bookmark" title="July 25, 2009">Bulk Domain Name Availability Checker Tool to Batch Search Available Domains</a></li>
</ul>
<p><!-- Similar Posts took 2.043 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2010/01/2-reasons-you-should-host-all-static-content-on-a-different-domain.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to install the Go programming language on your server or VPS?</title>
		<link>http://www.kavoir.com/2009/12/how-to-install-the-go-programming-language-on-your-vps.html</link>
		<comments>http://www.kavoir.com/2009/12/how-to-install-the-go-programming-language-on-your-vps.html#comments</comments>
		<pubDate>Mon, 28 Dec 2009 02:31:43 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[Go Tutorials & Tips]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/?p=1576</guid>
		<description><![CDATA[Assuming you&#8217;ve logged in as root in Debian 5.0, to install the Go programming language by Google,

Add these environmental variables for Go in .bash_profile:
export GOROOT=$HOME/go
export GOARCH=386  # for 32 bit architectures. Use GOARCH=amd64 for 64 bit architectures
export GOOS=linux
export GOBIN=$HOME/bin
PATH=$PATH:$GOBIN


Install the Mercurial &#8216;hg&#8217; command:
aptitude install mercurial

Fetch the sources of Go and put them at $GOROOT:
hg [...]]]></description>
			<content:encoded><![CDATA[<p>Assuming you&#8217;ve logged in as root in Debian 5.0, to install <a href="http://golang.org">the Go programming language</a> by Google,<span id="more-1576"></span></p>
<ol>
<li>Add these environmental variables for Go in .bash_profile:
<pre><code>export GOROOT=$HOME/go
export GOARCH=386  # for 32 bit architectures. Use GOARCH=amd64 for 64 bit architectures
export GOOS=linux
export GOBIN=$HOME/bin
PATH=$PATH:$GOBIN
</code></pre>
</li>
<li>Install the Mercurial &#8216;hg&#8217; command:
<pre><code>aptitude install mercurial</code></pre>
</li>
<li>Fetch the sources of Go and put them at $GOROOT:
<pre><code>hg clone -r release https://go.googlecode.com/hg/ $GOROOT</code></pre>
</li>
<li>Fetch compilers and related utilities:
<pre><code>aptitude install bison gcc libc6-dev ed make</code></pre>
</li>
<li>Create the directory $HOME/bin by:
<pre><code>mkdir $HOME/bin</code></pre>
<p>and compile Go:</p>
<pre><code>cd $GOROOT/src
make all</code></pre>
</li>
</ol>
<p>Done. You can now go about writing your first <a href="http://www.kavoir.com/backyard/showthread.php?3-Wrote-a-rather-basic-tutorial-on-how-to-install-Go-on-your-server">hello world program</a>. If you haven&#8217;t got a server yet, I recommend <a href="http://www.kavoir.com/go/linode">Linode VPS</a> and <a href="http://www.kavoir.com/2009/11/rackspace-cloud-promotion-code.html">Rackspace Cloud</a>.<br />
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/09/linux-how-to-open-and-extract-an-rar-zipped-file-or-unrar-the-archive.html" rel="bookmark" title="September 19, 2009">Linux: How to open and extract an RAR zipped file and unrar the archive?</a></li>
<li><a href="http://www.kavoir.com/2009/04/php-get-directory-or-filename-from-a-full-path-or-url.html" rel="bookmark" title="April 22, 2009">PHP: Getting Directory Path and Filename from A Full Path or URL</a></li>
<li><a href="http://www.kavoir.com/2009/09/linux-change-directory-or-cd-to-the-previous-directory-last-path.html" rel="bookmark" title="September 5, 2009">Linux: Change Directory or CD to the Previous Directory / Last Path</a></li>
<li><a href="http://www.kavoir.com/2009/04/php-change-current-working-directory.html" rel="bookmark" title="April 22, 2009">PHP: Change Current Working Directory</a></li>
<li><a href="http://www.kavoir.com/2007/03/essential-ssh.html" rel="bookmark" title="March 29, 2007">Essential SSH &#8211; 19 Linux SSH Commands You Simply Cannot Live Without</a></li>
</ul>
<p><!-- Similar Posts took 2.913 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/12/how-to-install-the-go-programming-language-on-your-vps.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rackspace Referral Discount</title>
		<link>http://www.kavoir.com/2009/12/rackspace-referral-discount.html</link>
		<comments>http://www.kavoir.com/2009/12/rackspace-referral-discount.html#comments</comments>
		<pubDate>Wed, 23 Dec 2009 12:28:32 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[Coupons and Promo Codes]]></category>
		<category><![CDATA[Hosting Tips & Deals]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/12/rackspace-referral-discount.html</guid>
		<description><![CDATA[By Rackspace I mean Rackspace.com the managed dedicated hosting service, not RackspaceCloud.com the cloud hosting. I’ve been talking a lot lately about Rackspace Cloud so I thought I’d make it clear. ;)

Check them out, they are pretty much the most expensive host you can find on the web. Their most basic server costs over $400 [...]]]></description>
			<content:encoded><![CDATA[<p>By Rackspace I mean <a href="http://www.rackspace.com">Rackspace.com</a> the managed dedicated hosting service, not <a href="http://www.rackspacecloud.com">RackspaceCloud.com</a> the <a href="http://www.shanghaiwebhosting.com/web-hosting/what-is-cloud-hosting-cloud-computing">cloud hosting</a>. I’ve been talking a lot lately about <a href="http://www.rackspacecloudreview.com">Rackspace Cloud</a> so I thought I’d make it clear. ;)</p>

<p>Check them out, they are pretty much the most expensive host you can find on the web. Their most basic server costs over $400 a month with 2TB monthly bandwidth. It’s by all means not a generous offer but it’s probably the most reliable and responsive platform you will ever need to know. They have the best uptime across the entire industry. A profitable online business deserves an uptime of 100%, because every minute of down time costs you money – no matter how solid and perfect your website is, it’s nothing when it’s down.</p>
<p>Rackspace provides the best support to its clients. They are not just a hosting provider, they are the all-around IT company who you can trust your entire IT infrastructure with. They take over everything from creating to optimizing, and monitoring to troubleshooting. When something goes wrong, chances are they have actively found and fixed it even before you know it. Many of the top players use Rackspace for their hosting needs. <a href="http://www.webhostingtalk.com">WHT</a>, the Internet’s No.1 web hosting forum, has been with them for years. In a word, Rackspace is the kind of hosting you need when every <strong>second</strong> of your business counts.</p>
<h3>5% Referral Discount for You</h3>
<p>Anyway, as I’m a partner of Rackspace, I can earn or give <strong>5%</strong> discount off any of their managed dedicated server packages. <a href="http://www.kavoir.com/contact">Shoot me a message</a> about your intention to host with them, so I can get you the <strong>5%</strong> discount and ask them to contact you. I’m currently not relying on this to make a living so, it’s better to pass along the favor than letting my partnership with them sitting in dust.</p>
<p>As per FTC requirement, I’m not making any money off this at all. ;)</p>
<h3>Cloud Hosting</h3>
<p>If you find their dedicated service a little more privileged than you can afford, their cloud hosting may be a better deal. Use this <a href="http://www.kavoir.com/2009/11/rackspace-cloud-promotion-code.html">promo code for Rackspace Cloud</a> to get a discount off their cloud hosting plans.</p>
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/11/rackspace-cloud-promotion-code.html" rel="bookmark" title="November 30, 2009">Rackspace Cloud Promo Code</a></li>
<li><a href="http://www.kavoir.com/2009/01/web-hosting-mosso-discount-coupon-code-control-panel-demo-email-demo.html" rel="bookmark" title="January 20, 2009">Rackspace Cloud $50 Referral Promo Code (Coupon Code for Cloud Sites Discount)</a></li>
<li><a href="http://www.kavoir.com/2009/09/yet-another-the-planet-dedicated-hosting-coupon-code.html" rel="bookmark" title="September 11, 2009">Yet another The Planet dedicated hosting coupon code</a></li>
<li><a href="http://www.kavoir.com/2009/06/rackspace-cloud-hosting-launched.html" rel="bookmark" title="June 25, 2009">RackSpace Cloud Hosting Launched!</a></li>
<li><a href="http://www.kavoir.com/2009/09/the-planet-dedicated-server-coupon-promo-code-for-50-70-off.html" rel="bookmark" title="September 2, 2009">The Planet Coupon Promo Code for 50% &#8211; 70% Off Dedicated Servers</a></li>
</ul>
<p><!-- Similar Posts took 2.069 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/12/rackspace-referral-discount.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP: Subject String Length Limit of Regular Expression Matching Functions</title>
		<link>http://www.kavoir.com/2009/12/php-regular-expression-matching-input-subject-string-length-limit.html</link>
		<comments>http://www.kavoir.com/2009/12/php-regular-expression-matching-input-subject-string-length-limit.html#comments</comments>
		<pubDate>Sat, 12 Dec 2009 02:35:45 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[PHP Tips & Tutorials]]></category>
		<category><![CDATA[Regular Expression Tips & Tutorials]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/?p=1542</guid>
		<description><![CDATA[Here&#8217;s a quick tip for those who have encountered this very same problem that all regular expression functions of PHP such as preg_match() and preg_replace() stop working when the input string (subject string to be searched or matched) is too long or large. If you believe your regular expressions should work but didn&#8217;t and the [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick tip for those who have encountered this very same problem that all <strong>regular expression functions</strong> of PHP such as preg_match() and preg_replace() stop working when the input string (subject string to be searched or matched) is too long or large. If you believe your regular expressions should work but didn&#8217;t and the string to be searched is perhaps over 100kB in length, you have hit the match string length limit or <a href="http://www.php.net/manual/en/pcre.configuration.php#ini.pcre.backtrack-limit">PCRE&#8217;s backtracking limit</a> set by configuration variable <strong>pcre.backtrack_limit</strong>.</p>

<p>To solve this issue and lift the length limit, to perhaps 10 times the original, you have to reset the default value of <a href="http://www.php.net/manual/en/pcre.configuration.php#ini.pcre.backtrack-limit">pcre.backtrack_limit</a> in one of the following ways:</p>
<ol>
<li>If you are using cPanel, create a text file named <strong>php.ini</strong> and put it in the directory wherein you need to break the limit. Append this line in the file:<br />
<code>pcre.backtrack_limit = 1000000</code></li>
<li>If you operate your own dedicated / vps server, modify php.ini and put this line at the end of the file:<br />
<code>pcre.backtrack_limit = 1000000</code><br />
Refer to this article to <a href="http://www.kavoir.com/2009/06/where-is-phpini-located.html">find out where your php.ini is</a>.</li>
<li>Use runtime configuration function <a href="http://php.net/ini_set">ini_set</a>() to set it at runtime:<br />
<code>ini_set('pcre.backtrack_limit', 1000000)</code></li>
</ol>
<p>This seems to be only affecting PHP 5.2.<br />
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/05/how-to-change-vim-syntax-highlighting-colors.html" rel="bookmark" title="May 26, 2009">How to change Vim syntax highlighting colors?</a></li>
<li><a href="http://www.kavoir.com/2008/04/colorful-unix-bash-console-by-alias-and-bash_profile.html" rel="bookmark" title="April 19, 2008">Colorful Linux Bash Console by .alias and .bash_profile</a></li>
<li><a href="http://www.kavoir.com/2009/06/javascript-split-and-divide-text-string-by-a-delimiter.html" rel="bookmark" title="June 16, 2009">JavaScript: Split and Divide Text String by A Delimiter</a></li>
<li><a href="http://www.kavoir.com/2009/01/php-string-length-function-to-get-length-of-strings-in-php.html" rel="bookmark" title="January 10, 2009">PHP String Length function to Get Length of Strings in PHP</a></li>
<li><a href="http://www.kavoir.com/2009/02/php-generating-summary-abstract-from-a-text-or-html-string-limiting-by-words-or-sentences.html" rel="bookmark" title="February 28, 2009">PHP: Generating Summary Abstract from A Text or HTML String, Limiting by Words or Sentences</a></li>
</ul>
<p><!-- Similar Posts took 2.048 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/12/php-regular-expression-matching-input-subject-string-length-limit.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Simple PHP Contact Form Script</title>
		<link>http://www.kavoir.com/2009/12/a-basic-php-contact-form-script.html</link>
		<comments>http://www.kavoir.com/2009/12/a-basic-php-contact-form-script.html#comments</comments>
		<pubDate>Thu, 10 Dec 2009 01:04:00 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[Free PHP Classes & Library]]></category>
		<category><![CDATA[PHP Tips & Tutorials]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/?p=1531</guid>
		<description><![CDATA[It’s also a free one and a rather easy one too. You should be able to do it yourself. To create a working contact form, you  need the front end and the back end. The front end presents the form to the website user and the back end accepts the data sent from the [...]]]></description>
			<content:encoded><![CDATA[<p>It’s also a free one and a rather easy one too. You should be able to do it yourself. To create a working contact form, you  need the front end and the back end. The <strong>front end</strong> presents the form to the website user and the <strong>back end</strong> accepts the data sent from the form by the user  and take any necessary actions such as relaying the message to your email.<span id="more-1531"></span></p>
<h3>Front end (HTML)</h3>
<p>Simply copy this HTML form and paste it into your web pages where you want it to be, such as on the sidebar so a visitor can send you a contact message on any page.</p>
<pre><code>&lt;form action=&quot;/cf.php&quot; method=&quot;post&quot;&gt;
	&lt;p&gt;&lt;label for=&quot;input-email&quot;&gt;Your Email: &lt;/label&gt;&lt;br/&gt;&lt;input type=&quot;text&quot; name=&quot;email&quot; id=&quot;input-email&quot; size=&quot;40&quot;/&gt;&lt;/p&gt;
	&lt;p&gt;&lt;label for=&quot;input-message&quot;&gt;Your Message: &lt;/label&gt;&lt;br/&gt;&lt;textarea type=&quot;text&quot; name=&quot;message&quot; id=&quot;input-message&quot; rows=&quot;10&quot; cols=&quot;40&quot;&gt;&lt;/textarea&gt;&lt;/p&gt;
	&lt;p&gt;&lt;button type=&quot;submit&quot; name=&quot;submit&quot;&gt;Send&lt;/button&gt;&lt;/p&gt;
&lt;/form&gt;</code></pre>
<p>You may also want to style this form a little bit to make it look fancier. But make sure you don&#8217;t change any of the properties inside the tags such as <strong>action=&#8221;&#8230;&#8221;</strong> and <strong>name=&#8221;&#8230;&#8221;</strong>.</p>
<h3>Back end (PHP)</h3>
<p>Copy and paste these PHP code into a file named <strong>cf.php</strong>, change <strong>youremail@yoursite.com</strong> to your own email address that you wish to receive the messages. Put the file at the root directory of your domain so that everyone can access it at <strong>http://www.yoursite.com/cf.php</strong>. </p>
<pre><code>&lt;?php

if (isset($_GET['success'])) {

	?&gt;&lt;p&gt;&lt;span style=&quot;color:green;&quot;&gt;Message successfully sent.&lt;/span&gt; Thank you!&lt;/p&gt;&lt;?php

} else {

	if (!empty($_POST['email']) &amp;&amp; !empty($_POST['message'])) {

		$to = '<strong>youremail@yoursite.com</strong>'; // your email address, can be @gmail.com, etc.
		$subject = 'Contact from <strong>yoursite.com</strong>'; // change yoursite.com to your own domain name
		$message = $_POST['message'].&quot;\r\n\r\nSender IP: &quot;.$_SERVER[&quot;REMOTE_ADDR&quot;];
		$headers = 'From: '.$_POST['email'].&quot;\r\n&quot;.
					'Reply-To: '.$_POST['email'].&quot;\r\n&quot;;
		mail($to, $subject, $message, $headers);

		header(&quot;Location: /cf.php?success&quot;); // redirects the sender to success page so he or she doesn't accidentally send multiple identical messages

	} else {

		?&gt;&lt;p&gt;&lt;span style=&quot;color:red;&quot;&gt;Error detected.&lt;/span&gt; Please make sure you have filled all fields. Press back button to go back.&lt;/p&gt;&lt;?php

	}

}

?&gt;</code></pre>
<p>Should be functioning properly. Thus far this contact form script has been successfully tested on <a href="http://www.kavoir.com/2009/01/web-hosting-mosso-discount-coupon-code-control-panel-demo-email-demo.html">Rackspace Cloud</a>, <a href="http://www.kavoir.com/2009/05/dreamhost-review-pros-and-cons-plus-uptime-charts.html">DreamHost</a> and <a href="http://www.kavoir.com/2009/09/moving-from-slicehost-to-linode-an-initial-vps-hosting-review.html">Linode</a>.</p>
<p>There are a lot more that can be done to create a sophisticated contact form. For starters, you can implement a <a href="http://recaptcha.net/">spam catcher</a> and a <a href="http://www.kavoir.com/2009/01/php-file-upload-class.html">file upload</a> control that <a href="http://www.kavoir.com/2009/08/php-email-attachment-class.html">sends the user uploaded file as attachment</a> to your email. You could also have on-page error detection but that&#8217;d need a lot more coding.<br />
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/04/php-read-from-keyboard-get-user-input-from-keyboard-console-by-typing.html" rel="bookmark" title="April 22, 2009">PHP: Read from Keyboard &#8211; Get User Input from Keyboard Console by Typing</a></li>
<li><a href="http://www.kavoir.com/2009/04/php-send-html-email-mail.html" rel="bookmark" title="April 23, 2009">PHP: Send HTML Email (mail)</a></li>
<li><a href="http://www.kavoir.com/2009/02/styling-file-upload-select-input-control-input-typefile.html" rel="bookmark" title="February 8, 2009">CSS: Styling File Upload / Select Input Control &lt;input type=&quot;file&quot; &hellip; /&gt;</a></li>
<li><a href="http://www.kavoir.com/2009/01/how-to-pass-variable-values-in-url-from-page-to-page-with-php.html" rel="bookmark" title="January 5, 2009">How to pass variable values in URL from page to page with PHP?</a></li>
<li><a href="http://www.kavoir.com/2009/08/php-email-attachment-class.html" rel="bookmark" title="August 6, 2009">PHP: Email Attachment Class</a></li>
</ul>
<p><!-- Similar Posts took 2.178 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/12/a-basic-php-contact-form-script.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rackspace Cloud Promo Code</title>
		<link>http://www.kavoir.com/2009/11/rackspace-cloud-promotion-code.html</link>
		<comments>http://www.kavoir.com/2009/11/rackspace-cloud-promotion-code.html#comments</comments>
		<pubDate>Mon, 30 Nov 2009 05:08:07 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[Coupons and Promo Codes]]></category>
		<category><![CDATA[Hosting Tips & Deals]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/11/rackspace-cloud-promotion-code.html</guid>
		<description><![CDATA[As the entrenched leader in cloud hosting, Rackspace Cloud is the cloud products division of Rackspace, the world renowned managed dedicated hosting provider. To make a long story short, cloud hosting is simply multiple servers (a pool of servers) simultaneously hosting for your websites and web applications. It&#8217;s the base of SaaS hosting. With the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.kavoir.com/2009/01/web-hosting-mosso-discount-coupon-code-control-panel-demo-email-demo.html"><img class="alignright" title="Rackspace Cloud Promo or Referral Code: REF-YY" src="http://www.rackspacecloudpromocode.com/the-rackspace-cloud.png" alt="Rackspace Cloud Promo or Referral Code: REF-YY" /></a>As the entrenched leader in cloud hosting, <a href="http://www.rackspacecloud.com">Rackspace Cloud</a> is the cloud products division of Rackspace, the world renowned managed dedicated hosting provider. To make a long story short, cloud hosting is simply multiple servers (a pool of servers) simultaneously hosting for your websites and web applications. It&#8217;s the base of SaaS hosting. With the <span style="border-bottom: 1px dotted #555;">Rackspace Cloud promo code</span>:<span id="more-1509"></span></p>
<blockquote style="font-size: 2em; font-style: normal; color: #000; margin-left:1em;"><p><strong>REF-YY</strong></p></blockquote>
<p>You can try their Cloud Sites, the managed cloud hosting package for <em>30 days on unconditional money back policy</em> in addition to an extra <strong>$25</strong> discount off the first month (rebate to your credit card).</p>
<h3>What are the Cloud benefits?</h3>
<ol>
<li>It handles usage / traffic spikes much better than any other types of hosting can. Because it <strong>automatically scales</strong> and distribute computing resources on demand on the fly!</li>
<li>It provides <strong>failover</strong> that no single dedicated server can, drastically reducing the chance of down times by instantly switching to a redundant server in the cloud. Well, actually not that much of a redundant server because that server is part of the cloud all the time. Because each of your sites is hosted simultaneously on a couple of distributed servers, if one server fails or falls off the network grid, the service is still online on the other servers.</li>
<li>It bills you in the manner of <strong>utility</strong>, thus no mountainous sunk cost ever for businesses to build up information technology infrastructure of their own. Use as much as you need and pay only for what you use.</li>
</ol>
<h3>What are there?</h3>
<p>At Rackspace Cloud, they have created 3 distinct product lines, namely <strong>Cloud Sites</strong>, <strong>Cloud Servers</strong> and <strong>Cloud Files</strong>. Each plan has its own scaling model. Aside from their unique online application to manage your account and websites, you know, creating and editing stuff such as databases, email accounts and down line clients, you will also be allocated certain amount of hosting capacity.</p>
<p>With Cloud Sites at the base price $100 per month, you will have:</p>
<ol>
<li>50GB disk storage</li>
<li>500GB monthly transfer</li>
<li>10,000 cloud computing cycles (roughly equal to the full capacity of a 2.8 GHz modern processor for a month)</li>
<li>24 x 7 x 365 online live chat and toll free phone support backed by <strong>Fanatical Support™</strong></li>
<li>Both Linux (for LAMP projects) and Windows (for .NET projects) platforms are available at your convenience</li>
<li>Cloud clustering: automatic scaling to the highest capacity available</li>
<li><a href="http://www.rackspacecloudreview.com/review/28">Resource floors</a>: contrary to Amazon EC2 using ceilings to restrict hosting resource usage, Rackspace Cloud guarantees a floor (minimum resource capacity that will always be exclusively available to you) and gives you as much extra resource as possible when you need them most.</li>
</ol>
<h3>Rackspace Cloud promotion code</h3>
<p>You can get all these plus <strong>$25</strong> discount by using the <a href="http://www.rackspacepromocode.com">Rackspace Cloud promo code</a>:</p>
<blockquote style="font-size: 2em; font-style: normal; color: #000; margin-left:1em;"><p><strong>REF-YY</strong></p></blockquote>
<p>Simply enter the code <strong>REF-YY</strong> into the <em>Promo or Referral Code</em> box when you are <a href="http://www.rackspacecloud.com/signup">ordering</a> Cloud Sites:</p>
<p><img src="http://www.rackspacecloudpromocode.com/how-to-use.png" alt="Enter the promo code in the Promo or Referral Code text box" /></p>
<p>The discount is available to you at the end of the month as a <strong>rebate</strong> once you pass the 30-day risk free trial threshold – yes, you can cancel any time you want <a href="http://www.rackspacepromocode.com/advantages/30-day-money-back-guarantee.php">without risking any money</a> at all. Absolutely free trial in the first 30 days.</p>
<p>This referral code also applies for Cloud Servers and gives you $10 discount off the first month.<br />
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/12/rackspace-referral-discount.html" rel="bookmark" title="December 23, 2009">Rackspace Referral Discount</a></li>
<li><a href="http://www.kavoir.com/2009/09/the-planet-dedicated-server-coupon-promo-code-for-50-70-off.html" rel="bookmark" title="September 2, 2009">The Planet Coupon Promo Code for 50% &#8211; 70% Off Dedicated Servers</a></li>
<li><a href="http://www.kavoir.com/2009/06/rackspace-cloud-hosting-launched.html" rel="bookmark" title="June 25, 2009">RackSpace Cloud Hosting Launched!</a></li>
<li><a href="http://www.kavoir.com/2009/01/web-hosting-mosso-discount-coupon-code-control-panel-demo-email-demo.html" rel="bookmark" title="January 20, 2009">Rackspace Cloud $50 Referral Promo Code (Coupon Code for Cloud Sites Discount)</a></li>
<li><a href="http://www.kavoir.com/2009/05/just-signed-up-with-mosso-cloud-servers.html" rel="bookmark" title="May 24, 2009">Just signed up with Mosso Cloud Servers</a></li>
</ul>
<p><!-- Similar Posts took 2.806 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/11/rackspace-cloud-promotion-code.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cool Suffixes and Prefixes for Brandable Domain Name Registration</title>
		<link>http://www.kavoir.com/2009/11/cool-suffixes-and-prefixes-for-brandable-domain-name-registration.html</link>
		<comments>http://www.kavoir.com/2009/11/cool-suffixes-and-prefixes-for-brandable-domain-name-registration.html#comments</comments>
		<pubDate>Tue, 24 Nov 2009 11:31:34 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[Domains]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/?p=1520</guid>
		<description><![CDATA[With all the good ones taken, branding the common keywords / keyphrases may be a better approach in this era of web. Below is a list of short but sweet prefixes and suffixes that I have come up with and that you can use to brand the generic keywords to have an available domain name [...]]]></description>
			<content:encoded><![CDATA[<p>With all the good ones taken, branding the common keywords / keyphrases may be a better approach in this era of web. Below is a list of short but sweet prefixes and suffixes that I have come up with and that you can use to brand the generic keywords to have an available domain name for registration:</p>

<p>#edge<br />
very#<br />
orbit#<br />
#orbit<br />
#scape<br />
#walk<br />
much#<br />
quick#<br />
rapid#<br />
almost#<br />
#hub<br />
#pro<br />
#book<br />
#zilla<br />
#direct<br />
direct#<br />
#wise<br />
smart#<br />
#guide<br />
#kids<br />
#kid<br />
only#<br />
super#<br />
crazy#<br />
#worth<br />
#worthY<br />
#away<br />
#pulse<br />
#hour<br />
#time<br />
#ever<br />
ever#<br />
#now<br />
#web<br />
#den<br />
#world<br />
#spot<br />
#board<br />
#station<br />
#advisor<br />
next#<br />
find#<br />
#plex<br />
#ground<br />
#academy<br />
#school<br />
#library<br />
#desk<br />
#tutor<br />
#city<br />
#park<br />
#shop<br />
#professor<br />
#source<br />
your#<br />
wild#<br />
insane#<br />
#link<br />
#pages<br />
#page<br />
#paradise<br />
#radar<br />
#planet<br />
#space<br />
#sea<br />
#forest<br />
#ocean<br />
all#<br />
#chat<br />
#talk<br />
#workshop<br />
#muse<br />
#brain<br />
#talent<br />
#stop<br />
#site<br />
#expert<br />
#zone<br />
#line<br />
live#<br />
killer#<br />
#truck<br />
#train<br />
#reloaded<br />
#mania<br />
#mart<br />
get#<br />
#cluster<br />
#junk<br />
#yard<br />
#junkyard<br />
#junction<br />
#ready<br />
#mind<br />
#lounge<br />
know#<br />
#bar<br />
#house<br />
kick#<br />
rock#<br />
#club<br />
#chief<br />
#index<br />
#week<br />
#one<br />
one#<br />
#path<br />
search#<br />
#search<br />
#pedia<br />
#spy<br />
#mall<br />
#central<br />
#articles<br />
#pool<br />
#well<br />
well#<br />
#vision<br />
#user<br />
#land<br />
#watch<br />
#mag<br />
#journal<br />
#note<br />
#mill<br />
#factory<br />
dear#<br />
holy#<br />
#depot<br />
#max<br />
max#<br />
#queen<br />
inside#<br />
mighty#<br />
#beat<br />
#sense<br />
#fact<br />
#data<br />
#eden<br />
dot#<br />
#ark<br />
#clip<br />
just#<br />
#scout<br />
#master<br />
a#<br />
b#<br />
c#<br />
d#<br />
e#<br />
f#<br />
g#<br />
h#<br />
i#<br />
j#<br />
k#<br />
l#<br />
m#<br />
n#<br />
o#<br />
p#<br />
q#<br />
r#<br />
s#<br />
t#<br />
u#<br />
v#<br />
w#<br />
x#<br />
y#<br />
z#</p>
<p>Simply copy and paste these into a text editor, then search and replace &#8216;#&#8217; with the generic keywords you want. Copy and paste the results into the <a href="http://www.kavoir.com/2009/07/bulk-domain-name-availability-checker-tool-to-batch-check-domain-availability.html">bulk domain search tool</a> to search and register the available ones that look nice and brandable.<br />
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/06/modify-index-homepage-title-of-mybb-forum.html" rel="bookmark" title="June 13, 2009">Modify Index Homepage Title of MyBB Forum</a></li>
<li><a href="http://www.kavoir.com/2007/06/what-is-wrong-with-supplemental-result.html" rel="bookmark" title="June 3, 2007">What is wrong with &#8216;Supplemental result&#8217;?</a></li>
<li><a href="http://www.kavoir.com/2009/09/how-to-get-a-web-address-top-level-domain.html" rel="bookmark" title="September 9, 2009">How to get a web address (top level domain)?</a></li>
<li><a href="http://www.kavoir.com/2008/11/how-to-count-files-get-the-number-of-files-under-a-directory-in-linux.html" rel="bookmark" title="November 18, 2008">How to count files (get the number of files) under a directory in Linux?</a></li>
<li><a href="http://www.kavoir.com/2009/05/verisign-data-analyzer-the-most-authoritative-type-in-traffic-analysis-tool-for-unregistered-domains-misspelled-domains.html" rel="bookmark" title="May 1, 2009">VeriSign Data Analyzer – The Most Authoritative Type-in Traffic Analysis Tool for Unregistered Domains / Misspelled Domains</a></li>
</ul>
<p><!-- Similar Posts took 2.354 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/11/cool-suffixes-and-prefixes-for-brandable-domain-name-registration.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change CJ password? (of Commission Junction)</title>
		<link>http://www.kavoir.com/2009/11/how-to-change-cj-password-of-commission-junction.html</link>
		<comments>http://www.kavoir.com/2009/11/how-to-change-cj-password-of-commission-junction.html#comments</comments>
		<pubDate>Sat, 21 Nov 2009 15:18:08 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[Affiliate Programs]]></category>
		<category><![CDATA[Make Money Online]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/?p=1513</guid>
		<description><![CDATA[This question has been asked a thousand times on the web and Commission Junction has apparently decided to make  it harder for the affiliate publishers to find out how to change the password of  their account.

To change your CJ account password,

Log into the account area or control panel,
Click “Account” of the top menu,
In [...]]]></description>
			<content:encoded><![CDATA[<p>This question has been asked a thousand times on the web and <a href="http://www.cj.com/">Commission Junction</a> has apparently decided to make  it harder for the affiliate publishers to find out how to change the password of  their account.</p>

<p>To change your CJ account password,</p>
<ol>
<li>Log into the account area or control panel,</li>
<li>Click “Account” of the top menu,</li>
<li>In the “User Settings” fieldset at the bottom of the page, you must have a  user that’s the Superuser of the current CJ account, edit this user account by  clicking “Edit”,</li>
<li>A small window should pop up, asking the you for the current password to continue,</li>
<li>Enter your current CJ account password and click &#8220;OK&#8221;,</li>
<li>The subsequent screen should look like this,<br />
<a href="http://www.kavoir.com/wp-content/uploads/2009/11/change-cj-password.gif"><img class="alignnone size-full wp-image-1514" title="change cj password" src="http://www.kavoir.com/wp-content/uploads/2009/11/change-cj-password.gif" alt="change cj password" width="376" height="341" /></a></li>
<li><a href="http://www.kavoir.com/wp-content/uploads/2009/11/change-cj-password.gif"></a>Click &#8220;Create new&#8221; and the password changing fields should appear,</li>
<li>Type in a new password and click &#8220;Save&#8221;.</li>
</ol>
<p>Kind of elusive, huh?<br />
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2007/03/essential-ssh.html" rel="bookmark" title="March 29, 2007">Essential SSH &#8211; 19 Linux SSH Commands You Simply Cannot Live Without</a></li>
<li><a href="http://www.kavoir.com/2009/06/reset-mysql-root-password-after-you-forgot-or-lost-it.html" rel="bookmark" title="June 20, 2009">How to Recover or Reset MySQL root Password after You Forgot and Lost It</a></li>
<li><a href="http://www.kavoir.com/2008/12/use-twitter-in-windows-active-desktop-to-post-anytime.html" rel="bookmark" title="December 30, 2008">Use twitter in Windows active desktop to post anytime!</a></li>
<li><a href="http://www.kavoir.com/2009/06/what-is-this-font-an-online-tool-to-detect-or-guess-font-typography-in-images.html" rel="bookmark" title="June 5, 2009">What is this font? An online tool to detect or guess font typography in images</a></li>
<li><a href="http://www.kavoir.com/2009/05/accidental-ctrls-locks-and-freezes-linux-terminal-ssh-telnet.html" rel="bookmark" title="May 26, 2009">Accidental Ctrl+S Locks and Freezes Linux Terminal / SSH / Telnet</a></li>
</ul>
<p><!-- Similar Posts took 2.277 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/11/how-to-change-cj-password-of-commission-junction.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to recover lost Firefox bookmarks? Where is my Firefox bookmarks folder?</title>
		<link>http://www.kavoir.com/2009/11/how-to-recover-lost-firefox-bookmarks-where-is-my-firefox-bookmarks-folder.html</link>
		<comments>http://www.kavoir.com/2009/11/how-to-recover-lost-firefox-bookmarks-where-is-my-firefox-bookmarks-folder.html#comments</comments>
		<pubDate>Thu, 12 Nov 2009 13:21:20 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[3rd Party Scripts and Softwares]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/11/how-to-recover-lost-firefox-bookmarks-where-is-my-firefox-bookmarks-folder.html</guid>
		<description><![CDATA[IE records all bookmarks or favorite web shortcuts in a folder named Favorites, but where does Firefox store all the bookmarks?

Below are a list of very probable locations where Firefox would save your bookmarks by the OS you are using.

Windows 95 (without Desktop Update)       C:/Windows/Mozilla 
Windows 95 (with Desktop [...]]]></description>
			<content:encoded><![CDATA[<p>IE records all bookmarks or favorite web shortcuts in a folder named Favorites, but where does Firefox store all the bookmarks?</p>

<p>Below are a list of very probable locations where Firefox would save your bookmarks by the OS you are using.</p>
<ol>
<li><strong>Windows 95 (without Desktop Update)</strong>       <br /><em>C:/Windows/Mozilla</em> </li>
<li><strong>Windows 95 (with Desktop Update)/98/Me</strong>       <br /><em>C:/Windows/Application Data/Mozilla        <br /></em><em>C:/Windows/Profiles/&lt;Windows login or user name&gt;/Application Data/Mozilla</em> </li>
<li><strong>Windows NT 4.x</strong>       <br /><em>C:/Winnt/Profiles/&lt;Windows login or user name&gt;/Application Data/Mozilla</em> </li>
<li><strong>Windows 2000 and XP</strong>       <br /><em>C:/Documents and Settings/&lt;Windows login or user name&gt;/Application Data/Mozilla</em> </li>
<li><strong>Windows Vista</strong>       <br /><em>C:/Users/&lt;Windows login or user name&gt;/AppData/Roaming/Mozilla</em> </li>
<li><strong>Unix</strong>       <br />~/.mozilla/ </li>
<li><strong>Mac OS X</strong>       <br /><em>~/Library/Mozilla/        <br /></em><em>~/Library/Application Support/</em> </li>
</ol>
<p>With Windows systems, make sure you have selected to display all hidden files or some of the folders such as “Application Data” may not show themselves by default. Also you should replace the “&lt;Windows login or user name&gt;” part to your own login name, which in most cases would be “Administrator”.</p>
<p>Take Windows XP + Firefox 2.0.0.20 / Firefox 3.5 for example, my Firefox stores the current bookmarks in the file:</p>
<pre><code>C:\Documents and Settings\Administrator\Application Data\Mozilla\Firefox\Profiles\gsbmusic.default\<strong>bookmarks.html</strong></code></pre>
<p>If you have mistakenly deleted a bookmark or all of them, don’t panic. Firefox backs things up pretty well and you can find historical bookmarks backups in this folder:</p>
<pre><code>C:\Documents and Settings\Administrator\Application Data\Mozilla\Firefox\Profiles\gsbmusic.default\<strong>bookmarkbackups</strong></code></pre>
<p>Files in this folder are backups of Firefox bookmarks in the past few days. They are text files in JSON format, hard to read manually but you sure can rescue and recover your lost bookmarks in there, just search “http://” using a text editor.</p>
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/11/firefox-2-download-the-latest-version-of-firefox-2-because-firefox-3-sucks-big-time.html" rel="bookmark" title="November 12, 2009">Firefox 2 Download: The Latest Version of Firefox 2 &ndash; Because Firefox 3 Sucks Big Time!</a></li>
<li><a href="http://www.kavoir.com/2009/09/dropbox-review-the-most-intuitive-online-backup-storage-data-synchronizing-and-files-sharing-application.html" rel="bookmark" title="September 23, 2009">Dropbox review – the most intuitive online backup storage, data synchronizing and files sharing software</a></li>
<li><a href="http://www.kavoir.com/2009/08/how-to-change-the-browser-window-status-bar-text-of-firefox-with-javascript.html" rel="bookmark" title="August 22, 2009">How to change the browser window status bar text of Firefox with JavaScript?</a></li>
<li><a href="http://www.kavoir.com/2009/06/apache-php-get-client-browser-http-request-headers-information.html" rel="bookmark" title="June 2, 2009">Apache, PHP: Get Client Browser HTTP Request Headers Information</a></li>
<li><a href="http://www.kavoir.com/2008/12/use-twitter-in-windows-active-desktop-to-post-anytime.html" rel="bookmark" title="December 30, 2008">Use twitter in Windows active desktop to post anytime!</a></li>
</ul>
<p><!-- Similar Posts took 2.321 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/11/how-to-recover-lost-firefox-bookmarks-where-is-my-firefox-bookmarks-folder.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 2 Download: The Latest Version of Firefox 2 – Because Firefox 3 Sucks Big Time!</title>
		<link>http://www.kavoir.com/2009/11/firefox-2-download-the-latest-version-of-firefox-2-because-firefox-3-sucks-big-time.html</link>
		<comments>http://www.kavoir.com/2009/11/firefox-2-download-the-latest-version-of-firefox-2-because-firefox-3-sucks-big-time.html#comments</comments>
		<pubDate>Thu, 12 Nov 2009 12:46:31 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[3rd Party Scripts and Softwares]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/11/firefox-2-download-the-latest-version-of-firefox-2-because-firefox-3-sucks-big-time.html</guid>
		<description><![CDATA[Bloated! Simply bloated to a point that’s not geeky any more.

We need to revert to Firefox 2 and this is the download link of Firefox 2 setup executable file, the latest version Firefox 2.0.0.20, for Windows.
http://releases.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/en-US/Firefox%20Setup%202.0.0.20.exe
Otherwise, you can view a list of historical releases of Firefox from the Mozilla team.
Not convinced? Let’s do some googling.

intitle:&#34;ie [...]]]></description>
			<content:encoded><![CDATA[<p>Bloated! Simply bloated to a point that’s not geeky any more.</p>

<p>We need to revert to Firefox 2 and this is the download link of Firefox 2 setup executable file, the latest version Firefox 2.0.0.20, for Windows.</p>
<p><a title="http://releases.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/en-US/Firefox%20Setup%202.0.0.20.exe" href="http://releases.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/en-US/Firefox%20Setup%202.0.0.20.exe">http://releases.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/win32/en-US/Firefox%20Setup%202.0.0.20.exe</a></p>
<p>Otherwise, you can view a list of <a href="http://releases.mozilla.org/pub/mozilla.org/firefox/releases/">historical releases of Firefox</a> from the Mozilla team.</p>
<p>Not convinced? Let’s do some googling.</p>
<ol>
<li><strong>intitle:&quot;ie 7 sucks&quot;</strong> -&#160; Results <b>1</b> &#8211; <b>10</b> of about <strong>1,190</strong> for <b>intitle:&quot;ie 7 sucks&quot;</b>. (<b>0.10</b> seconds) </li>
<li><strong>intitle:&quot;ie 8 sucks&quot;</strong> -&#160; Results <b>1</b> &#8211; <b>10</b> of about <strong>152</strong> for <b>intitle:&quot;ie 8 sucks&quot;</b>. (<b>0.26</b> seconds) </li>
<li><strong>intitle:&quot;firefox 3 sucks&quot;</strong> -&#160; Results <b>1</b> &#8211; <b>10</b> of about <strong>11,300</strong> for <b>intitle:&quot;firefox 3 sucks&quot;</b>. (<b>0.35</b> seconds) </li>
</ol>
<p>Huh?</p>
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/11/how-to-recover-lost-firefox-bookmarks-where-is-my-firefox-bookmarks-folder.html" rel="bookmark" title="November 12, 2009">How to recover lost Firefox bookmarks? Where is my Firefox bookmarks folder?</a></li>
<li><a href="http://www.kavoir.com/2009/10/dreamhost-discount-code-firefox-3-sucks.html" rel="bookmark" title="October 27, 2009">DreamHost Discount Code: Firefox 3 Sucks!</a></li>
<li><a href="http://www.kavoir.com/2009/06/google-restrict-search-results-by-searching-only-the-anchor-text-page-title-page-url-or-filetype.html" rel="bookmark" title="June 13, 2009">Google: Restrict matching results by searching only the anchor text, page title, page URL, page text or filetype</a></li>
<li><a href="http://www.kavoir.com/2009/08/how-to-change-the-browser-window-status-bar-text-of-firefox-with-javascript.html" rel="bookmark" title="August 22, 2009">How to change the browser window status bar text of Firefox with JavaScript?</a></li>
<li><a href="http://www.kavoir.com/2009/01/how-to-do-keyword-research-from-keyword-seed-list-to-a-profitable-niche.html" rel="bookmark" title="January 9, 2009">How to Do Keyword Research &ndash; From Keyword Seed List to a Profitable Niche</a></li>
</ul>
<p><!-- Similar Posts took 2.231 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/11/firefox-2-download-the-latest-version-of-firefox-2-because-firefox-3-sucks-big-time.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If you are not a professional designer and don’t want to look stupid</title>
		<link>http://www.kavoir.com/2009/11/if-you-are-not-a-professional-designer-and-dont-want-to-look-stupid.html</link>
		<comments>http://www.kavoir.com/2009/11/if-you-are-not-a-professional-designer-and-dont-want-to-look-stupid.html#comments</comments>
		<pubDate>Sun, 08 Nov 2009 12:52:09 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[Web Design Tips and Insights]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/11/if-you-are-not-a-professional-designer-and-dont-want-to-look-stupid.html</guid>
		<description><![CDATA[I have a few tips for you:

Stick to simple white design.
Use no more than 4 colors other than grey scale (white, black, grey). Actually 2 would be perfectly enough for text information intensive sites.
Design the site as if it&#8217;s a chapter in a print book.
Plan blank areas.
Be goal oriented and GET RID of EVERYTHING that&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>I have a few tips for you:</p>
<ol>
<li>Stick to simple white design.</li>
<li>Use no more than 4 colors other than grey scale (white, black, grey). Actually 2 would be perfectly enough for text information intensive sites.</li>
<li>Design the site as if it&#8217;s a chapter in a print book.</li>
<li>Plan blank areas.</li>
<li>Be goal oriented and GET RID of EVERYTHING that&#8217;s not closely contributing to the goal. You achieve perfect by having nothing to peel off instead of the other way around.</li>
</ol>
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/08/key-differences-between-the-web-design-of-google-microsoft-and-yahoo.html" rel="bookmark" title="August 5, 2009">Key Differences between the Web Design of Google, Microsoft and Yahoo</a></li>
<li><a href="http://www.kavoir.com/2009/06/css-definition-what-is-css-defined-and-explained.html" rel="bookmark" title="June 16, 2009">CSS Definition: What is CSS Defined and Explained</a></li>
<li><a href="http://www.kavoir.com/2009/07/be-simple.html" rel="bookmark" title="July 6, 2009">Being simple as a bless for development cost</a></li>
<li><a href="http://www.kavoir.com/2009/05/mysql-counting-number-of-records-by-foreign-key.html" rel="bookmark" title="May 17, 2009">MySQL: Counting Number of Records or Rows by a Foreign Column (from Another Table)</a></li>
<li><a href="http://www.kavoir.com/2009/06/t-shirt-affiliate-program.html" rel="bookmark" title="June 15, 2009">T-shirt Affiliate Program</a></li>
</ul>
<p><!-- Similar Posts took 2.145 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/11/if-you-are-not-a-professional-designer-and-dont-want-to-look-stupid.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create and moderate your own hosted vBulletin forums, free!</title>
		<link>http://www.kavoir.com/2009/11/create-and-moderate-your-own-hosted-vbulletin-forums-free.html</link>
		<comments>http://www.kavoir.com/2009/11/create-and-moderate-your-own-hosted-vbulletin-forums-free.html#comments</comments>
		<pubDate>Fri, 06 Nov 2009 15:15:55 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[3rd Party Scripts and Softwares]]></category>
		<category><![CDATA[Hosting Tips & Deals]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/11/create-and-moderate-your-own-hosted-vbulletin-forums-free.html</guid>
		<description><![CDATA[Jointly Hosted Forum is now open for forum applications. Please follow the steps outlined in this post to get your own forums.

You will own a section of forums dedicated to topics of your choice (must be family-friendly) and be a moderator of the forums and users.
The service is completely free for all, though we reserve [...]]]></description>
			<content:encoded><![CDATA[<p>Jointly Hosted Forum is now open for forum applications. Please follow the steps outlined in this post to get your own forums.</p>

<p>You will own a section of forums dedicated to topics of your choice (must be family-friendly) and be a <strong>moderator</strong> of the forums and users.</p>
<p>The service is completely free for all, though we reserve the right to suspend any inappropriate forums at our sole discretion. Other than that, forums inactive for more than 3 months may be suspended.</p>
<p>On top of that, enjoy having your discussion board!</p>
<p><strong>Be a moderator and have your own vBulletin forum!</strong></p>
<p>(This free service is only available to members having 100 or more posts.)</p>
<p>Ever want to <strong>create</strong> and <strong>run</strong> your own forum boards? Ever want to be a <strong>moderator</strong> and administer your own forums and users? Let alone on <strong>vBulletin™</strong> which is simply the best and most globally recognized forum software out there?</p>
<p>Now anyone can have his or her own section of forums like this! Just follow these 4 steps:</p>
<ol style="list-style-type: decimal;">
<li>Register an account at Jointly Hosted Forum.</li>
<li>Post around until you have at least 100 posts.</li>
<li> Apply by starting a thread in this board with these information:
<ul>
<li><strong>Your name</strong>: full name would be preferrable</li>
<li><strong>Username of registration</strong>: your account username at JHF that you would like to be the moderator<a href="http://www.jointlyhosted.com/forum/" target="_blank"><br />
</a></li>
<li><strong>Your website URL</strong>: preferrably the one associated with your forums, but it&#8217;s totally ok if you don&#8217;t have any</li>
<li><strong>Forum purpose</strong>: what you are going to use the forums for</li>
<li><strong>Forum section title</strong>: such as &#8220;<em>Make A Website</em>&#8221; for this one</li>
<li><strong>Forum boards</strong>: a <em>title</em> as well as a <em>short description</em> for each of them, such as these</li>
</ul>
</li>
<li>To be notified on the thread after we have created the forums and granted moderation privileges to your account.</li>
</ol>
<p><strong>Note</strong>: Forums inactive for 3 months may be suspended, albeit your user account will always be fine.<br />
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/11/introducing-kavoir-forums.html" rel="bookmark" title="November 4, 2009">Introducing Kavoir Backyard</a></li>
<li><a href="http://www.kavoir.com/2009/10/how-to-get-rid-of-powered-by-vbulletin-in-the-homepage-title-of-a-vbulletin-forum.html" rel="bookmark" title="October 28, 2009">How to get rid of &ldquo;Powered by vBulletin&rdquo; in the homepage title of a vBulletin forum?</a></li>
<li><a href="http://www.kavoir.com/2009/11/vbulletin-enable-signature-after-certain-number-of-posts-or-days-of-registration.html" rel="bookmark" title="November 3, 2009">vBulletin: Enable Signature after Certain Number of Posts or Days of Registration</a></li>
<li><a href="http://www.kavoir.com/2009/03/phpbb-spam-control-phpbb-anti-spam-options-for-fresh-forum-installations.html" rel="bookmark" title="March 15, 2009">phpBB Spam Control – phpBB Anti-Spam Options for Fresh Forum Installations</a></li>
<li><a href="http://www.kavoir.com/2009/06/modify-index-homepage-title-of-mybb-forum.html" rel="bookmark" title="June 13, 2009">Modify Index Homepage Title of MyBB Forum</a></li>
</ul>
<p><!-- Similar Posts took 2.241 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/11/create-and-moderate-your-own-hosted-vbulletin-forums-free.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing Kavoir Backyard</title>
		<link>http://www.kavoir.com/2009/11/introducing-kavoir-forums.html</link>
		<comments>http://www.kavoir.com/2009/11/introducing-kavoir-forums.html#comments</comments>
		<pubDate>Wed, 04 Nov 2009 13:19:45 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[Oh My Ramblings]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/11/introducing-kavoir-forums.html</guid>
		<description><![CDATA[Update: I finally decided to move the whole vbulletin installation over from jointlyhosted.com to kavoir.com. It&#8217;s called Kavoir Backyard.

I created a sub-forums section at Jointly Hosted for Kavoir.com, feel free to register an account, it’s here: http://www.jointlyhosted.com/forum/forumdisplay.php?f=4
For now, almost all the boards are dedicated to technical topics (HTML, CSS, JavaScript, PHP, MySQL, etc.) of web [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color: #008000;">Update:</span></strong> I finally decided to move the whole vbulletin installation over from jointlyhosted.com to kavoir.com. It&#8217;s called <a href="http://www.kavoir.com/backyard/">Kavoir Backyard</a>.</p>

<p>I created a sub-forums section at Jointly Hosted for <a href="http://www.kavoir.com">Kavoir.com</a>, feel free to register an account, it’s here: http://www.jointlyhosted.com/forum/forumdisplay.php?f=4</p>
<p>For now, almost all the boards are dedicated to technical topics (HTML, CSS, JavaScript, PHP, MySQL, etc.) of web development. If you have any questions regarding <a href="http://www.kavoir.com">developing a website</a>, post them there, interested people and I will try to help you as much as we can. Should these forums become popular, we will add more forums that appeal to webmasters.</p>
<p>To reduce spam, we have disabled signature for all new registrations, you will need 15 posts to be able to use signature which will be automatically enabled for you after your exceeding 15 in the number of posts.</p>
<p>Enjoy! ;)<br />
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/11/vbulletin-enable-signature-after-certain-number-of-posts-or-days-of-registration.html" rel="bookmark" title="November 3, 2009">vBulletin: Enable Signature after Certain Number of Posts or Days of Registration</a></li>
<li><a href="http://www.kavoir.com/2009/11/create-and-moderate-your-own-hosted-vbulletin-forums-free.html" rel="bookmark" title="November 6, 2009">Create and moderate your own hosted vBulletin forums, free!</a></li>
<li><a href="http://www.kavoir.com/2009/04/mysql-add-statistics-column-for-the-number-count-of-records-from-another-table.html" rel="bookmark" title="April 25, 2009">MySQL: Add Statistics Column for the Number Count of Records from Another Table</a></li>
<li><a href="http://www.kavoir.com/2009/02/wordpress-show-recent-posts-on-homepage-or-in-sidebar.html" rel="bookmark" title="February 27, 2009">WordPress: Show Recent Posts on Homepage or in Sidebar</a></li>
<li><a href="http://www.kavoir.com/2009/06/best-php-books-for-learning-php-and-mysql.html" rel="bookmark" title="June 17, 2009">Best PHP Books for Learning PHP Development and Programming (with MySQL)</a></li>
</ul>
<p><!-- Similar Posts took 2.223 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/11/introducing-kavoir-forums.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vBulletin: Enable Signature after Certain Number of Posts or Days of Registration</title>
		<link>http://www.kavoir.com/2009/11/vbulletin-enable-signature-after-certain-number-of-posts-or-days-of-registration.html</link>
		<comments>http://www.kavoir.com/2009/11/vbulletin-enable-signature-after-certain-number-of-posts-or-days-of-registration.html#comments</comments>
		<pubDate>Tue, 03 Nov 2009 07:15:59 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[3rd Party Scripts and Softwares]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/11/vbulletin-enable-signature-after-certain-number-of-posts-or-days-of-registration.html</guid>
		<description><![CDATA[vBulletin allows all newly registered users to create and edit signatures by default, which potentially increases the spam in user registrations. Someone would just sign up and put a few spamming backlinks in the signature and leave, without contributing a little bit to the community, probably writing 1 or 2 spamming posts as well. Therefore, [...]]]></description>
			<content:encoded><![CDATA[<p>vBulletin allows all newly registered users to create and edit signatures by default, which potentially increases the spam in user registrations. Someone would just sign up and put a few spamming backlinks in the signature and leave, without contributing a little bit to the community, probably writing 1 or 2 spamming posts as well. Therefore, allowing signature / signature links does no good to the forum.</p>

<p>To prevent this from happening and encourage users to actively engage in the community, a good approach is to open or enable signature only to those who have had certain amount of posts, say 20; or have passed a certain length of time after registration, say 10 days.</p>
<h5><span style="color: green">Step 1:</span> Disable signature for “Registered Users”</h5>
<p>Go to the AdminCP of your vBulletin, follow the left menu: Usergroups =&gt; Usergroup Manager =&gt; Edit “<strong>Registered Users</strong>” by clicking the corresponding “Go” =&gt; In the “Signature Permissions” section, select “No” for “Can Use Signatures”. Now all newly registered users will have no signature privileges at all by default.</p>
<h5><span style="color: green">Step 2:</span> Add a new Usergroup “Acknowledged Users” with signature capabilities</h5>
<p>Create a new Usergroup by: Usergroups =&gt; Add New Usergroup =&gt; Select “<strong>Registered Users</strong>” for “Create Usergroup Based off of Usergroup” and click “Go” =&gt; Name this Usergroup, eg. “<strong>Acknowledged Users</strong>” =&gt; In the “Signature Permissions” section, select “Yes” for “Can Use Signatures”.</p>
<h5><span style="color: green">Step 3:</span> Set to automatically promote users with over 20 posts from “R” group to “A” group</h5>
<p>Now that you have 2 Usergroups with different signature permissions, the last step is to add a promotion strategy that recognizes all users that have 20 posts or more and promotes them from “Registered Users” to “Acknowledged Users”: Usergroups =&gt; Promotions =&gt; “Add New Promotion” =&gt; Select “<strong>Registered Users</strong>” for “Usergroup”, specify “10” for “Days Registered”, specify “20” for “Posts”, select “Posts” for “Promotion Strategy” and select “<strong>Acknowledged Users</strong>” for “Move User to Usergroup” =&gt; Click “Save”</p>
<p>Done. Now vBulletin will automatically promote users that have greater than or equal to 20 posts to a new Usergroup that has signature enabled. Other than promoting by posts, you can also promoting users to a privileged group by reputation.</p>
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/11/introducing-kavoir-forums.html" rel="bookmark" title="November 4, 2009">Introducing Kavoir Backyard</a></li>
<li><a href="http://www.kavoir.com/2009/10/how-to-get-rid-of-powered-by-vbulletin-in-the-homepage-title-of-a-vbulletin-forum.html" rel="bookmark" title="October 28, 2009">How to get rid of &ldquo;Powered by vBulletin&rdquo; in the homepage title of a vBulletin forum?</a></li>
<li><a href="http://www.kavoir.com/2009/04/mysql-add-statistics-column-for-the-number-count-of-records-from-another-table.html" rel="bookmark" title="April 25, 2009">MySQL: Add Statistics Column for the Number Count of Records from Another Table</a></li>
<li><a href="http://www.kavoir.com/2009/11/create-and-moderate-your-own-hosted-vbulletin-forums-free.html" rel="bookmark" title="November 6, 2009">Create and moderate your own hosted vBulletin forums, free!</a></li>
<li><a href="http://www.kavoir.com/2008/12/use-twitter-in-windows-active-desktop-to-post-anytime.html" rel="bookmark" title="December 30, 2008">Use twitter in Windows active desktop to post anytime!</a></li>
</ul>
<p><!-- Similar Posts took 2.256 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/11/vbulletin-enable-signature-after-certain-number-of-posts-or-days-of-registration.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amateurish DIY Logo</title>
		<link>http://www.kavoir.com/2009/10/amateurish-diy-logo.html</link>
		<comments>http://www.kavoir.com/2009/10/amateurish-diy-logo.html#comments</comments>
		<pubDate>Sat, 31 Oct 2009 13:47:15 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[Oh My Ramblings]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/10/amateurish-diy-logo.html</guid>
		<description><![CDATA[ 

I was bored and then I made this logo. It’d make great profile avatar for forums and other online applications!
Have your say!
Related Posts:

Create and moderate your own hosted vBulletin forums, free!
Harness the power of exponential growth
Link building and content development, who is the King?
Free Web Template: My Dear Lounge
A live demo of JavaScript injection [...]]]></description>
			<content:encoded><![CDATA[<p><img title="source of nothing" alt="source of nothing" src="http://www.kavoir.com/wp-content/uploads/2009/10/sourceofnothing.png" /> </p>

<p>I was bored and then I made this logo. It’d make great profile avatar for forums and other online applications!</p>
<p>Have your say!</p>
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/11/create-and-moderate-your-own-hosted-vbulletin-forums-free.html" rel="bookmark" title="November 6, 2009">Create and moderate your own hosted vBulletin forums, free!</a></li>
<li><a href="http://www.kavoir.com/2008/12/harness-the-power-of-exponential-growth.html" rel="bookmark" title="December 17, 2008">Harness the power of exponential growth</a></li>
<li><a href="http://www.kavoir.com/2007/06/link-building-and-content-who-is-the-king.html" rel="bookmark" title="June 5, 2007">Link building and content development, who is the King?</a></li>
<li><a href="http://www.kavoir.com/2007/05/template-my-dear-lounge-here.html" rel="bookmark" title="May 8, 2007">Free Web Template: My Dear Lounge</a></li>
<li><a href="http://www.kavoir.com/2009/02/a-live-demo-of-javascript-injection-example-on-a-famous-webmaster-forum.html" rel="bookmark" title="February 6, 2009">A live demo of JavaScript injection example on a famous Webmaster forum</a></li>
</ul>
<p><!-- Similar Posts took 2.286 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/10/amateurish-diy-logo.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jointly Hosted – Non-profit shared dedicated hosting service</title>
		<link>http://www.kavoir.com/2009/10/jointly-hosted-non-profit-shared-dedicated-hosting-service.html</link>
		<comments>http://www.kavoir.com/2009/10/jointly-hosted-non-profit-shared-dedicated-hosting-service.html#comments</comments>
		<pubDate>Thu, 29 Oct 2009 09:08:24 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[Hosting Tips & Deals]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/10/jointly-hosted-non-profit-shared-dedicated-hosting-service.html</guid>
		<description><![CDATA[Jointly Hosted is one of our latest ventures. Basically it’s a non-profit shared dedicated hosting service that provides dedicated hosting at shared hosting price tag, yet much better in terms of server performance than other shared solution providers. How do we do that?

We make no profit by selling servers themselves. The server is provided to [...]]]></description>
			<content:encoded><![CDATA[<p>Jointly Hosted is one of our latest ventures. Basically it’s a non-profit shared dedicated hosting service that provides dedicated hosting at shared hosting price tag, yet much better in terms of server performance than other shared solution providers. How do we do that?<span id="more-1466"></span></p>
<ol>
<li><strong>We make no profit by selling servers themselves.</strong> The server is provided to a number of users at almost the original price (plus 20% for PayPal fees and time spent on monitoring the server for performance and uptime, as well as administrating the user forum community).</li>
<li><strong>We never oversell.</strong> We try to make the monthly subscription charges of each account within $20, and we slice a common dedicated server among just 10 – 20 users. In contrast, most affordable hosting providers jam hundreds of users into a single dedicated server, severely slowing the service down, thus the performance of your websites.</li>
<li><strong>We only buy in fully managed, monitored and secured servers from the most prestigious hosting providers.</strong> Such as <a href="http://www.wiredtree.com/212.html">WiredTree</a>, SoftLayer and RackSpace.</li>
</ol>
<h3>So you resell dedicated servers?</h3>
<p>Not really because we are just middle man who consolidates people together to make sharing a dedicated server possible. We also provide a hangout place for you guys to meet and connect.</p>
<h3>Support?</h3>
<p>To be honestly, we can&#8217;t provide as sophisticated support as that of other for-profit hosting businesses. But we have set up a community forum for you to publicly discuss stuff and complain about things. We will respond to any reasonable requests for support such as adding software packages to the server, in the premise that it would not affect other users on the server. We will also relay the message to the server provider.</p>
<p>There will also be a server performance monitor script where all users of the server can check out who is using how much CPU, RAM and bandwidth, etc.</p>
<p>With the absolute <strong>underselling policy</strong> of Jointly Hosted, the server will be far from reaching its full capacity most of time. Vast majority of the performance problems will not be possible in the first place. Need for support is reduced to the minimum.</p>
<h3>How do we profit then?</h3>
<p>We will first try to maintain a non-profit state by the current pricing scheme for a while, without creating any negative balance, to see where it would head. When this all takes off and people start feeling it’s worth a few extra bucks to have a shared dedicated hosting account that guarantees cost-effectiveness and reliability, we will take the next step as to profit as a self-sustainable business. Possible venues include:</p>
<ol>
<li>Forum advertising</li>
<li>Paid support</li>
<li>Accompanied services</li>
</ol>
<p>Therefore, we and our users stand in the same line instead of against each other. We will NEVER increase the profit margin by crowding the servers which goes against the rights of the users.</p>
<h3>Not convinced?</h3>
<p>Take a look at our first server, every account comes with a dedicated unique IP!<br />
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/11/create-and-moderate-your-own-hosted-vbulletin-forums-free.html" rel="bookmark" title="November 6, 2009">Create and moderate your own hosted vBulletin forums, free!</a></li>
<li><a href="http://www.kavoir.com/2009/04/hosting-differences-between-paircom-and-pairlitecom.html" rel="bookmark" title="April 21, 2009">Hosting Differences between Pair.com and PairLite.com</a></li>
<li><a href="http://www.kavoir.com/2009/05/dreamhost-review-pros-and-cons-plus-uptime-charts.html" rel="bookmark" title="May 9, 2009">DreamHost Review: Pros and Cons plus Uptime Charts</a></li>
<li><a href="http://www.kavoir.com/2009/12/rackspace-referral-discount.html" rel="bookmark" title="December 23, 2009">Rackspace Referral Discount</a></li>
<li><a href="http://www.kavoir.com/2009/06/rackspace-cloud-hosting-launched.html" rel="bookmark" title="June 25, 2009">RackSpace Cloud Hosting Launched!</a></li>
</ul>
<p><!-- Similar Posts took 2.370 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/10/jointly-hosted-non-profit-shared-dedicated-hosting-service.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get rid of “Powered by vBulletin” in the homepage title of a vBulletin forum?</title>
		<link>http://www.kavoir.com/2009/10/how-to-get-rid-of-powered-by-vbulletin-in-the-homepage-title-of-a-vbulletin-forum.html</link>
		<comments>http://www.kavoir.com/2009/10/how-to-get-rid-of-powered-by-vbulletin-in-the-homepage-title-of-a-vbulletin-forum.html#comments</comments>
		<pubDate>Wed, 28 Oct 2009 14:26:55 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[3rd Party Scripts and Softwares]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/10/how-to-get-rid-of-powered-by-vbulletin-in-the-homepage-title-of-a-vbulletin-forum.html</guid>
		<description><![CDATA[By default the homepage of all freshly installed vBulletin forum will have a title trailing of “ &#8211; Powered by vBulletin”. While it’s forbidden to remove the copyright notice from the footer if you haven’t bought the anonymous license, you are allowed to wipe out this title trailing.

How does one do that?
First log into the [...]]]></description>
			<content:encoded><![CDATA[<p>By default the homepage of all freshly installed vBulletin forum will have a title trailing of “ &#8211; Powered by vBulletin”. While it’s forbidden to remove the copyright notice from the footer if you haven’t bought the anonymous license, you are allowed to wipe out this title trailing.</p>

<p>How does one do that?</p>
<p>First log into the AdminCP, of course, and then </p>
<ol>
<li>Open the <strong>Languages &amp; Phrases</strong> submenu and click <strong>Search in Phrases</strong>.</li>
<li>In the “<em>Search for Text</em>” box enter “powered by vbulletin” and click “<em>Find</em>”.</li>
<li>In the searching results, you will have a variable named “<b>x_powered_by_vbulletin</b>”.</li>
<li>Click “<em>Edit</em>” button of this variable and simply erase the “ &#8211; Powered by vBulletin” part, leaving just “{1}”.</li>
</ol>
<p>You are done! Now there will be no trailing string of “Powered by vBulletin” in the forum title any more.</p>
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/06/google-restrict-search-results-by-searching-only-the-anchor-text-page-title-page-url-or-filetype.html" rel="bookmark" title="June 13, 2009">Google: Restrict matching results by searching only the anchor text, page title, page URL, page text or filetype</a></li>
<li><a href="http://www.kavoir.com/2009/11/create-and-moderate-your-own-hosted-vbulletin-forums-free.html" rel="bookmark" title="November 6, 2009">Create and moderate your own hosted vBulletin forums, free!</a></li>
<li><a href="http://www.kavoir.com/2009/06/google-search-by-sentence-fragments-with-forgotten-word-replace-by-asterisk.html" rel="bookmark" title="June 13, 2009">Google: Search by sentence fragments with forgotten word replace by asterisk or wildcards</a></li>
<li><a href="http://www.kavoir.com/2009/06/how-to-transfer-move-wordpress-blog-from-one-domain-to-another.html" rel="bookmark" title="June 15, 2009">How to Transfer / Move WordPress Blog from One Domain to Another</a></li>
<li><a href="http://www.kavoir.com/2009/06/google-search-only-a-specific-site.html" rel="bookmark" title="June 13, 2009">Google: Search only a specific site</a></li>
</ul>
<p><!-- Similar Posts took 2.223 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/10/how-to-get-rid-of-powered-by-vbulletin-in-the-homepage-title-of-a-vbulletin-forum.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DreamHost Discount Code: Firefox 3 Sucks!</title>
		<link>http://www.kavoir.com/2009/10/dreamhost-discount-code-firefox-3-sucks.html</link>
		<comments>http://www.kavoir.com/2009/10/dreamhost-discount-code-firefox-3-sucks.html#comments</comments>
		<pubDate>Tue, 27 Oct 2009 02:15:23 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[Coupons and Promo Codes]]></category>
		<category><![CDATA[Hosting Tips & Deals]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/10/dreamhost-discount-code-firefox-3-sucks.html</guid>
		<description><![CDATA[Why haven’t Google integrated their toolbar into Chrome yet? Firefox 3 absolutely sucks in the loading time and browsing speed. Scrolling through a heavy web page with lots of visual elements such as images is just a pain in the ass and on average, I have to restart the so-called most advanced modern browser 3 [...]]]></description>
			<content:encoded><![CDATA[<p>Why haven’t Google integrated their toolbar into Chrome yet? Firefox 3 absolutely sucks in the loading time and browsing speed. Scrolling through a heavy web page with lots of visual elements such as images is just a pain in the ass and on average, I have to restart the so-called most advanced modern browser 3 times everyday. Plus, it’s everything but fun when I have typed a thousand words in WordPress that the browser suddenly freezes itself.</p>

<p>I don’t know why it’s so hard, Chrome can make it a breeze, why can’t the people at Mozilla?!</p>
<p>To express my anger toward the Mozilla team, I’m releasing this <a href="http://www.dreamhost.com">Dreamhost</a> discount code:</p>
<blockquote><p>FF3SUCKS</p></blockquote>
<p>Which gives you <strong>1 unique IP</strong> and <strong>3 lifetime free domain registrations</strong> when you order yearly hosting plans from them. Their signing up process has gone through some changes in that you now get the chance to try it free for a certain period of time before actually plummeting into paying.</p>
<p>Just enter the discount code <strong>FF3SUCKS</strong> in the <em><a href="http://www.dreamhostpromocode.org/">Promo Code</a></em> box at signup.</p>
<p>Disclosure: I get a $15 one-time compensation from Dreamhost when you use this discount code.<br />
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2007/12/encyclopedia-of-dreamhost-coupon-codes.html" rel="bookmark" title="December 1, 2007">Encyclopedia of DreamHost Discount Codes, Coupons and Promo Codes for Cheap Web Hosting</a></li>
<li><a href="http://www.kavoir.com/2009/01/free-wordpress-hosting-and-much-more.html" rel="bookmark" title="January 11, 2009">Free WordPress Hosting and Much More &#8211; DreamHost Apps Free Hosting Invitation</a></li>
<li><a href="http://www.kavoir.com/2009/11/firefox-2-download-the-latest-version-of-firefox-2-because-firefox-3-sucks-big-time.html" rel="bookmark" title="November 12, 2009">Firefox 2 Download: The Latest Version of Firefox 2 &ndash; Because Firefox 3 Sucks Big Time!</a></li>
<li><a href="http://www.kavoir.com/2009/09/the-planet-dedicated-server-coupon-promo-code-for-50-70-off.html" rel="bookmark" title="September 2, 2009">The Planet Coupon Promo Code for 50% &#8211; 70% Off Dedicated Servers</a></li>
<li><a href="http://www.kavoir.com/2009/09/how-to-get-a-web-address-top-level-domain.html" rel="bookmark" title="September 9, 2009">How to get a web address (top level domain)?</a></li>
</ul>
<p><!-- Similar Posts took 2.485 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/10/dreamhost-discount-code-firefox-3-sucks.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My confession as required by the US government</title>
		<link>http://www.kavoir.com/2009/10/my-confession-as-required-by-the-us-government.html</link>
		<comments>http://www.kavoir.com/2009/10/my-confession-as-required-by-the-us-government.html#comments</comments>
		<pubDate>Sat, 10 Oct 2009 01:02:29 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[Oh My Ramblings]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/10/my-confession-as-required-by-the-us-government.html</guid>
		<description><![CDATA[As far as fellow bloggers and affiliate marketers are concerned, there’s an update of new rules to the FTC guidance of how to give endorsements and testimonials in advertisements and affiliate promotions.

The giver of endorsements and testimonials for the promotion and marketing of a product or service should make clear of the behind-scene material connections [...]]]></description>
			<content:encoded><![CDATA[<p>As far as fellow bloggers and affiliate marketers are concerned, there’s an update of new rules to the <a href="http://www.ftc.gov/opa/2009/10/endortest.shtm">FTC guidance</a> of how to give endorsements and testimonials in advertisements and affiliate promotions.</p>

<p>The giver of endorsements and testimonials for the promotion and marketing of a product or service should make clear of the behind-scene material connections that may have been the incentive of such activity.</p>
<p>Now here’s my perfect chance of confessing to my fellow readers. I’m an independent web developer and internet marketer who occasionally promotes related products and services on this blog, <a href="http://www.kavoir.com">Kavoir.com</a>. Though I try my best to approach only the best of their kinds because I’m personally a user of most of them, I’m compensated by affiliate commissions if I successfully persuaded you to reach for your wallet.</p>
<p>You know all these, of course. ;)</p>
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/06/t-shirt-affiliate-program.html" rel="bookmark" title="June 15, 2009">T-shirt Affiliate Program</a></li>
<li><a href="http://www.kavoir.com/2009/05/build-simple-amazon-affiliate-text-links-with-just-asin-10-digit-isbn-and-your-amazon-associate-tracking-id.html" rel="bookmark" title="May 15, 2009">Build Simple Amazon Affiliate Text Links with just ASIN (10 digit ISBN) and Your Amazon Associate Tracking ID</a></li>
<li><a href="http://www.kavoir.com/2009/06/im-bored-lets-play-the-bloggers-relay-game.html" rel="bookmark" title="June 5, 2009">I&#8217;m bored. Let&#8217;s play the bloggers&#8217; relay game!</a></li>
<li><a href="http://www.kavoir.com/2009/09/best-way-to-hide-and-cloak-your-affiliate-links.html" rel="bookmark" title="September 19, 2009">Best way to hide and cloak your affiliate links?</a></li>
<li><a href="http://www.kavoir.com/2009/05/dynadot-affiliate-program-review-not-worth-the-while.html" rel="bookmark" title="May 15, 2009">Dynadot Affiliate Program Review &ndash; Not Worth the While</a></li>
</ul>
<p><!-- Similar Posts took 2.277 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/10/my-confession-as-required-by-the-us-government.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free HTML website hosting service</title>
		<link>http://www.kavoir.com/2009/10/free-html-website-hosting-service.html</link>
		<comments>http://www.kavoir.com/2009/10/free-html-website-hosting-service.html#comments</comments>
		<pubDate>Thu, 08 Oct 2009 14:23:47 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[Hosting Tips & Deals]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/10/free-html-website-hosting-service.html</guid>
		<description><![CDATA[I’m a fan of Linode and recently as I was able to acquire 2 moderately decent domains for a free HTML hosting service, I decided to start offering free static website hosting on one of my Linode VPS servers.

In case any of you might be interested in opting in the alpha testing of Free HTML [...]]]></description>
			<content:encoded><![CDATA[<p>I’m a fan of <a href="http://www.kavoir.com/2009/09/moving-from-slicehost-to-linode-an-initial-vps-hosting-review.html">Linode</a> and recently as I was able to acquire 2 moderately decent domains for a <a href="http://www.freehtmlhosting.com">free HTML hosting service</a>, I decided to start offering <a href="http://www.freehtmlhosting.com">free static website hosting</a> on one of my <a href="http://www.kavoir.com/go/linode">Linode</a> VPS servers.</p>

<p>In case any of you might be interested in opting in the alpha testing of <a href="http://www.freehtmlhosting.com">Free HTML Hosting</a>, feel free to comment on this post to get your free account! ;)</p>
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/01/free-wordpress-hosting-and-much-more.html" rel="bookmark" title="January 11, 2009">Free WordPress Hosting and Much More &#8211; DreamHost Apps Free Hosting Invitation</a></li>
<li><a href="http://www.kavoir.com/2009/09/moving-from-slicehost-to-linode-an-initial-vps-hosting-review.html" rel="bookmark" title="September 5, 2009">Moving from Slicehost to Linode &ndash; an initial VPS hosting review</a></li>
<li><a href="http://www.kavoir.com/2009/05/verisign-data-analyzer-the-most-authoritative-type-in-traffic-analysis-tool-for-unregistered-domains-misspelled-domains.html" rel="bookmark" title="May 1, 2009">VeriSign Data Analyzer – The Most Authoritative Type-in Traffic Analysis Tool for Unregistered Domains / Misspelled Domains</a></li>
<li><a href="http://www.kavoir.com/2009/11/introducing-kavoir-forums.html" rel="bookmark" title="November 4, 2009">Introducing Kavoir Backyard</a></li>
<li><a href="http://www.kavoir.com/2009/04/hosting-differences-between-paircom-and-pairlitecom.html" rel="bookmark" title="April 21, 2009">Hosting Differences between Pair.com and PairLite.com</a></li>
</ul>
<p><!-- Similar Posts took 2.240 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/10/free-html-website-hosting-service.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Free 2GB HTML static web pages hosting</title>
		<link>http://www.kavoir.com/2009/10/free-2gb-html-static-web-pages-hosting.html</link>
		<comments>http://www.kavoir.com/2009/10/free-2gb-html-static-web-pages-hosting.html#comments</comments>
		<pubDate>Wed, 07 Oct 2009 02:56:22 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[Computer & Internet Literacy]]></category>
		<category><![CDATA[Hosting Tips & Deals]]></category>
		<category><![CDATA[Internet Tools]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/10/free-2gb-html-static-web-pages-hosting.html</guid>
		<description><![CDATA[For every free Dropbox plan, it comes with 2GB online backup storage that has a public folder in which you can publish HTML web page files that are publicly accessible around the Web. It will give you a URL that you can hand out to your friends so they can view the page on the [...]]]></description>
			<content:encoded><![CDATA[<p><a onmouseover="window.status='http://www.getdropbox.com';return true;" onmouseout="window.status=' ';return true;" href="https://www.dropbox.com/referrals/NTIwOTI5Mjg5" target="_blank"><img class="alignright" src="http://www.lduhtrp.net/qj97ltxlrpAEHECBHGACBHJEBEC" border="0" alt="Dropbox - Sync your files" /></a>For every <a href="https://www.dropbox.com/referrals/NTIwOTI5Mjg5">free Dropbox plan</a>, it comes with 2GB online backup storage that has a public folder in which you can publish HTML web page files that are publicly accessible around the Web. It will give you a URL that you can hand out to your friends so they can view the page on the Web anywhere anytime.</p>

<p>Basically, a free static HTML web hosting space (with potentially unlimited transfer).</p>
<p>Simply <a href="https://www.dropbox.com/referrals/NTIwOTI5Mjg5">download the software</a> and sign up with them, put the HTML file in the “<strong>Public</strong>” folder of your specified <a href="https://www.dropbox.com/referrals/NTIwOTI5Mjg5">Dropbox</a> directory. After a few seconds’ synchronization when there finally turns up a small green tick at the bottom left corner the file icon (which means the synchronization is successfully completed), right click on the file, point to “<strong>Dropbox</strong>” for the submenu and select “<strong>Copy Public Link</strong>”. Now you have the public URL address of the page.</p>
<p>Paste it into the address bar of your favorite browser, bravo! Now you have your own HTML web pages freely hosted on the Web! Check out <a href="http://dl.getdropbox.com/u/2092928/free-web-hosting.html">what I’ve published on Dropbox</a>!</p>
<p>The brilliant part is the ease of the hosting. Just create more web documents such as audio files, images and HTML pages, put them in the “<strong>Public</strong>” folder and you will have them online in no time because <a href="https://www.dropbox.com/referrals/NTIwOTI5Mjg5">Dropbox</a> automatically synchronizes everything you put in the folder. Want to modify the existing files, fine, just do it, save the changes and <a href="https://www.dropbox.com/referrals/NTIwOTI5Mjg5">Dropbox</a> would also automatically synchronize the update to the remote server.</p>
<p><a href="https://www.dropbox.com/referrals/NTIwOTI5Mjg5">Dropbox</a> is not just a public host though, it’s easy to use and rocks as <a href="http://www.kavoir.com/2009/09/dropbox-review-the-most-intuitive-online-backup-storage-data-synchronizing-and-files-sharing-application.html">a photo gallery, online backup storage, file sharing and synchronizing machine</a>.<br />
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/09/dropbox-review-the-most-intuitive-online-backup-storage-data-synchronizing-and-files-sharing-application.html" rel="bookmark" title="September 23, 2009">Dropbox review – the most intuitive online backup storage, data synchronizing and files sharing software</a></li>
<li><a href="http://www.kavoir.com/2009/01/free-wordpress-hosting-and-much-more.html" rel="bookmark" title="January 11, 2009">Free WordPress Hosting and Much More &#8211; DreamHost Apps Free Hosting Invitation</a></li>
<li><a href="http://www.kavoir.com/2009/11/how-to-recover-lost-firefox-bookmarks-where-is-my-firefox-bookmarks-folder.html" rel="bookmark" title="November 12, 2009">How to recover lost Firefox bookmarks? Where is my Firefox bookmarks folder?</a></li>
<li><a href="http://www.kavoir.com/2009/08/how-to-display-html-code-on-a-web-page.html" rel="bookmark" title="August 4, 2009">How to display HTML code on a web page?</a></li>
<li><a href="http://www.kavoir.com/2009/09/safely-and-quickly-transfer-files-between-your-hosts-hosting-accounts-servers-with-scp-command.html" rel="bookmark" title="September 18, 2009">Safely and Quickly Transfer Files between Your Hosts / Hosting Accounts / Servers with scp command</a></li>
</ul>
<p><!-- Similar Posts took 2.319 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/10/free-2gb-html-static-web-pages-hosting.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hawkhost promo code for 50% off</title>
		<link>http://www.kavoir.com/2009/10/hawkhost-promo-code-for-50-off.html</link>
		<comments>http://www.kavoir.com/2009/10/hawkhost-promo-code-for-50-off.html#comments</comments>
		<pubDate>Thu, 01 Oct 2009 10:30:55 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[Coupons and Promo Codes]]></category>
		<category><![CDATA[Hosting Tips & Deals]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/10/hawkhost-promo-code-for-50-off.html</guid>
		<description><![CDATA[Make A Website was moved to Hawk host a few days ago and here’s my initial review of them. If you have been to their official site, you may have noticed the hosting coupon code for 40% discount off the initial payment you make to them, which seems to be only valid throughout the month. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.kavoir.com">Make A Website</a> was moved to <a href="http://www.kavoir.com/go/hawkhost">Hawk host</a> a few days ago and here’s my <a href="http://www.kavoir.com/2009/09/hawkhost-initial-review.html">initial review of them</a>. If you have been to their <a href="http://www.kavoir.com/go/hawkhost">official site</a>, you may have noticed the hosting coupon code for 40% discount off the initial payment you make to them, which seems to be only valid throughout the month. However, I have a better deal, more precisely, a better promo code that discounts <strong>50% off</strong> your initial payment.</p>

<p>Use this promotional code when you are choosing the hosting plans at <a href="http://www.kavoir.com/go/hawkhost">Hawkhost</a> by clicking “Update Cart”:</p>
<pre><code>whts50</code></pre>
<p>Which is their official campaign promotion at Web Hosting Talk, and you will get <strong>50% off</strong> the first payment you make to them for any of the listed plans. Any. After the first billing cycle, you are bound to renew at the normal pricing, though.<br />
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/09/the-planet-dedicated-server-coupon-promo-code-for-50-70-off.html" rel="bookmark" title="September 2, 2009">The Planet Coupon Promo Code for 50% &#8211; 70% Off Dedicated Servers</a></li>
<li><a href="http://www.kavoir.com/2009/09/yet-another-the-planet-dedicated-hosting-coupon-code.html" rel="bookmark" title="September 11, 2009">Yet another The Planet dedicated hosting coupon code</a></li>
<li><a href="http://www.kavoir.com/2009/01/web-hosting-mosso-discount-coupon-code-control-panel-demo-email-demo.html" rel="bookmark" title="January 20, 2009">Rackspace Cloud $50 Referral Promo Code (Coupon Code for Cloud Sites Discount)</a></li>
<li><a href="http://www.kavoir.com/2007/12/encyclopedia-of-dreamhost-coupon-codes.html" rel="bookmark" title="December 1, 2007">Encyclopedia of DreamHost Discount Codes, Coupons and Promo Codes for Cheap Web Hosting</a></li>
<li><a href="http://www.kavoir.com/2009/09/hawkhost-initial-review.html" rel="bookmark" title="September 30, 2009">Hawkhost initial review</a></li>
</ul>
<p><!-- Similar Posts took 2.345 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/10/hawkhost-promo-code-for-50-off.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hawkhost initial review</title>
		<link>http://www.kavoir.com/2009/09/hawkhost-initial-review.html</link>
		<comments>http://www.kavoir.com/2009/09/hawkhost-initial-review.html#comments</comments>
		<pubDate>Wed, 30 Sep 2009 12:51:03 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[Hosting Tips & Deals]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/09/hawkhost-initial-review.html</guid>
		<description><![CDATA[ It’s the first time I move kavoir.com to another host from Dreamhost (the last move to Linode was about some of my other sites). The entire move was great except that I was not quite familiar with cPanel and choked a little bit on the transfer and setup of all the interconnected files and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.kavoir.com/go/hawkhost"><img class="alignright" title="hawkhost" src="http://www.kavoir.com/wp-content/uploads/2009/09/hawkhost.jpg" alt="hawkhost" /></a> It’s the first time I move <a href="http://www.kavoir.com">kavoir.com</a> to <a href="http://www.kavoir.com/go/hawkhost">another host</a> from <a href="http://www.kavoir.com/2009/05/dreamhost-review-pros-and-cons-plus-uptime-charts.html">Dreamhost</a> (the last move to <a href="http://www.kavoir.com/2009/09/moving-from-slicehost-to-linode-an-initial-vps-hosting-review.html">Linode</a> was about some of my other sites). The entire move was great except that I was not quite familiar with cPanel and choked a little bit on the transfer and setup of all the interconnected files and database that had been spawned for the last 2 years.</p>

<p>The fact that <a href="http://www.kavoir.com/go/hawkhost">Hawk host</a> is using Litespeed instead of Apache caused some minor incompatibility issues &#8211; at least so it seemed &#8211; about which I contacted the support team. They got back to me after approximately an hour, friendly and helpful. The results are positive and problem successfully solved.</p>
<p>Though you will not find parallel documentations with Litespeed against Apache, they are generally interchangeable and Litespeed can handle about <strong>double</strong> or even <strong>triple</strong> the traffic of Apache with the same server resources (<a href="http://www.litespeedtech.com/library/benchmarks/">their official comparison</a>). I think that’s one of the top reasons why <a href="http://www.kavoir.com/go/hawkhost">Hawk host</a> has been able to offer such a budget hosting without compromising the performance and reliability.</p>
<p>After confirming the domain was resolving to the new IP of <a href="http://www.kavoir.com/go/hawkhost">Hawkhost</a>, the next thing I did was to examine the loading speed of <a href="http://www.kavoir.com">Kavoir</a>. Results are shown below by <a href="http://www.internetsupervision.com">Internet Supervision</a>:</p>
<p><a href="http://www.kavoir.com/wp-content/uploads/2009/09/loadingspeedofhawkhost.gif"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="loading speed of hawkhost" src="http://www.kavoir.com/wp-content/uploads/2009/09/loadingspeedofhawkhost_thumb.gif" border="0" alt="loading speed of hawkhost" width="500" height="175" /></a></p>
<p>The speed test stats were quite impressive, averaging at about 450 Kbps, the highest of all the stats I got from <a href="http://www.kavoir.com/2009/05/dreamhost-review-pros-and-cons-plus-uptime-charts.html">Dreamhost</a>, <a href="http://www.kavoir.com/2009/09/moving-from-slicehost-to-linode-an-initial-vps-hosting-review.html">Linode</a> and <a href="http://www.pair.com">Pair.com</a> (though very incomplete to compare and give final judgment of the overall serving speed of these hosting providers).</p>
<p>All the reviews I found about <a href="http://www.kavoir.com/go/hawkhost">Hawkhost</a> on the web and <a href="http://www.webhostingtalk.com/showthread.php?t=670929">WHT</a> have been rather positive and purchase-encouraging. Search and read, so you know if you want to try them out with a few of your low traffic websites.</p>
<p>I’ll keep you updated for the months coming.<br />
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/04/web-hosting-connection-speed-test.html" rel="bookmark" title="April 20, 2009">Web Hosting Connection Speed Test</a></li>
<li><a href="http://www.kavoir.com/2009/09/moving-from-slicehost-to-linode-an-initial-vps-hosting-review.html" rel="bookmark" title="September 5, 2009">Moving from Slicehost to Linode &ndash; an initial VPS hosting review</a></li>
<li><a href="http://www.kavoir.com/2009/10/hawkhost-promo-code-for-50-off.html" rel="bookmark" title="October 1, 2009">Hawkhost promo code for 50% off</a></li>
<li><a href="http://www.kavoir.com/2009/10/free-html-website-hosting-service.html" rel="bookmark" title="October 8, 2009">Free HTML website hosting service</a></li>
<li><a href="http://www.kavoir.com/2009/05/dreamhost-review-pros-and-cons-plus-uptime-charts.html" rel="bookmark" title="May 9, 2009">DreamHost Review: Pros and Cons plus Uptime Charts</a></li>
</ul>
<p><!-- Similar Posts took 2.306 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/09/hawkhost-initial-review.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dropbox review – the most intuitive online backup storage, data synchronizing and files sharing software</title>
		<link>http://www.kavoir.com/2009/09/dropbox-review-the-most-intuitive-online-backup-storage-data-synchronizing-and-files-sharing-application.html</link>
		<comments>http://www.kavoir.com/2009/09/dropbox-review-the-most-intuitive-online-backup-storage-data-synchronizing-and-files-sharing-application.html#comments</comments>
		<pubDate>Wed, 23 Sep 2009 09:09:20 +0000</pubDate>
		<dc:creator>Yang Yang</dc:creator>
				<category><![CDATA[Internet Tools]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://www.kavoir.com/2009/09/dropbox-review-the-most-intuitive-online-backup-storage-data-synchronizing-and-files-sharing-application.html</guid>
		<description><![CDATA[I’ve tried quite a few online backup services to back up my valuable website data – you just can’t imagine what a nightmare it would be to lose all the files that you’ve been working on for the last half year – I even created my own backup programs that automatically syncs and stores designated [...]]]></description>
			<content:encoded><![CDATA[<p><a class="alignright" onmouseover="window.status='http://www.getdropbox.com';return true;" onmouseout="window.status=' ';return true;" href="https://www.dropbox.com/referrals/NTIwOTI5Mjg5" target="_blank"><img src="http://www.ftjcfx.com/3s70uuymsqBFIFDCIHBDCILHFGE" border="0" alt="Dropbox - file sync, sharing and backup" /></a>I’ve tried quite a few online backup services to back up my valuable website data – you just can’t imagine what a nightmare it would be to lose all the files that you’ve been working on for the last half year – I even created my own backup programs that automatically syncs and stores designated files across multiple hosts, however, <a href="https://www.dropbox.com/referrals/NTIwOTI5Mjg5">Dropbox</a> has been the most intuitive application so far.<span id="more-1422"></span></p>
<blockquote><p>It’s revealed by <a href="https://www.dropbox.com/referrals/NTIwOTI5Mjg5">Dropbox</a> that backup shouldn’t have existed in the first place.</p></blockquote>
<p>They’ve got a very slick clean style, both the application as well as the website are so designed that anybody can figure the whole thing out at a glance of 5 seconds. And that’s it. Everything you need to ever know is merely <em>a folder</em> named <em>“My Dropbox”</em>. Thus it goes incredibly breezy on first time users, doing the job perfectly and silently even when you have forgotten it.</p>
<blockquote><p>Install and forget.</p></blockquote>
<p>Working from the desktop of Windows, Linux and Mac, <a href="https://www.dropbox.com/referrals/NTIwOTI5Mjg5">Dropbox</a> is not just an <strong>online data storage</strong> provider, it’s also at its best as a data <strong>backup system</strong>, <strong>files sharing wizard</strong>, <strong>automatic synchronizer</strong>, <strong>way-back time machine</strong> and <strong>free file host</strong>.</p>
<ol>
<li><strong>Offsite remote data storage</strong>: this goes without saying. All files and data you put into the “My Dropbox” folder is automatically and quietly transferred to and stored at the their central server securely.</li>
<li><strong>Backup system</strong>: intuitively, after you have hit the save button, the document has been backed up on <a href="https://www.dropbox.com/referrals/NTIwOTI5Mjg5">Dropbox</a> servers. Otherwise, just drag and drop anything you’d like backed up on the remote server so a local hard drive crash won’t make you go nuts.</li>
<li><strong>Files sharing wizard</strong>: all the files and media (music, videos, photos etc.) can be instantly accessible and downloaded from the central servers across all the computers and mobile devices such as iphone that have <a href="https://www.dropbox.com/referrals/NTIwOTI5Mjg5">Dropbox</a> software installed.</li>
<li><strong>Automatic synchronizer</strong>: editing a document, saving it in the “My Dropbox” folder of your <em>office PC</em> and you can continue working on it after opening it from the same folder of your <em>home Mac</em>. The next day, you just open the same file in your office PC and it’s exactly the same file! Basically, any changes you made to those files are instantly synced to the server, thus across all computers of the sync software installed.</li>
<li><strong>Way-back time machine</strong>: <a href="https://www.dropbox.com/referrals/NTIwOTI5Mjg5">Dropbox</a> keeps historical versions of your files for 30 days by default, so that you can undo any changes or deletions you regret.</li>
<li><strong>Free file hosting</strong>: simply put any file into the &#8220;Public&#8221; folder and you will be given a public web address (URL) to hand out to your friends and everyone else so that they can view and download it.</li>
</ol>
<p><a href="https://www.dropbox.com/referrals/NTIwOTI5Mjg5">Try them for free</a> for 14 days and be ready to be impressed.<br />
<h3>Related Posts:</h3>
<ul class="similar-posts">
<li><a href="http://www.kavoir.com/2009/10/free-2gb-html-static-web-pages-hosting.html" rel="bookmark" title="October 7, 2009">Free 2GB HTML static web pages hosting</a></li>
<li><a href="http://www.kavoir.com/2009/09/safely-and-quickly-transfer-files-between-your-hosts-hosting-accounts-servers-with-scp-command.html" rel="bookmark" title="September 18, 2009">Safely and Quickly Transfer Files between Your Hosts / Hosting Accounts / Servers with scp command</a></li>
<li><a href="http://www.kavoir.com/2008/12/backup-and-recover-a-mysql-database-under-command-line.html" rel="bookmark" title="December 14, 2008">Backup and recover a MySQL database under command line</a></li>
<li><a href="http://www.kavoir.com/2009/09/linux-how-to-open-and-extract-an-rar-zipped-file-or-unrar-the-archive.html" rel="bookmark" title="September 19, 2009">Linux: How to open and extract an RAR zipped file and unrar the archive?</a></li>
<li><a href="http://www.kavoir.com/2009/11/rackspace-cloud-promotion-code.html" rel="bookmark" title="November 30, 2009">Rackspace Cloud Promo Code</a></li>
</ul>
<p><!-- Similar Posts took 2.602 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kavoir.com/2009/09/dropbox-review-the-most-intuitive-online-backup-storage-data-synchronizing-and-files-sharing-application.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
