<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WP Themes Gallery &#187; Tutorials</title>
	<atom:link href="http://wpthemesgallery.com/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpthemesgallery.com</link>
	<description>WordPress News and Themes Gallery</description>
	<lastBuildDate>Tue, 10 May 2011 16:06:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to Blend the MyBlogLog Widget with Your Theme</title>
		<link>http://wpthemesgallery.com/how-to-blend-the-mybloglog-widget-with-your-theme/</link>
		<comments>http://wpthemesgallery.com/how-to-blend-the-mybloglog-widget-with-your-theme/#comments</comments>
		<pubDate>Thu, 25 Oct 2007 19:50:37 +0000</pubDate>
		<dc:creator>Artur Kim</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.wpthemesgallery.com/how-to-blend-the-mybloglog-widget-with-your-theme/</guid>
		<description><![CDATA[Making and editing a MyBlogLog widget is very easy, because MyBlogLog generates the code and provides its users with a color palette and a list of the attributes with options. A problem is that the color palette only shows certain &#8230; <a href="http://wpthemesgallery.com/how-to-blend-the-mybloglog-widget-with-your-theme/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Making and editing a MyBlogLog widget is very easy, because MyBlogLog generates the code and provides its users with a color palette and a list of the attributes with options. A problem is that the color palette only shows certain colors, making it hard for users to blend the widget with their themes. The solution is to change the attributes in the code since all of them are listed in it. They are separated by &#8216;&amp; a m p ;&#8217; (without the spaces) and are listed below:</p>
<p>c_width=180 &#8211; width of the widget in pixels<br />
c_sn_opt=y &#8211; show screen names (&#8216;y&#8217; for yes and &#8216;n&#8217; for no)<br />
c_rows=5 &#8211; rows<br />
c_img_size=f &#8211; image size (&#8216;f&#8217; for full-size and &#8216;h&#8217; for half-size)<br />
c_heading_text=Recent+Readers &#8211; title (use &#8216;+&#8217; as a space)<br />
c_color_heading_bg=005A94 &#8211; background color of the heading<br />
c_color_heading=ffffff &#8211; font color of the title and bottom links<br />
c_color_link_bg=E3E3E3 &#8211; background color of the avatars and screen names<br />
c_color_link=005A94 &#8211; font color of the screen names<br />
c_color_bottom_bg=005A94 &#8211; background color of the bottom</p>
<p>To make the widget look nice in the sidebar, I left the attribute &#8216;c_heading_text&#8217; blank and used the widget title instead.</p>
<p>This is just a basic way of changing the look of a MyBlogLog widget. CSS can be used to extend the look even further.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpthemesgallery.com/how-to-blend-the-mybloglog-widget-with-your-theme/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to 301 Redirect Non-www to www URLs</title>
		<link>http://wpthemesgallery.com/how-to-301-redirect-non-www-to-www-urls/</link>
		<comments>http://wpthemesgallery.com/how-to-301-redirect-non-www-to-www-urls/#comments</comments>
		<pubDate>Thu, 18 Oct 2007 21:31:36 +0000</pubDate>
		<dc:creator>Artur Kim</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.wpthemesgallery.com/how-to-301-redirect-non-www-to-www-urls/</guid>
		<description><![CDATA[Why redirect if both URLs work fine without it? Search engines consider http://wpthemesgallery.com and http://www.wpthemesgallery.com as two difference websites. So, when other websites link to you, they might not all choose the same URL, splitting the link popularity of your &#8230; <a href="http://wpthemesgallery.com/how-to-301-redirect-non-www-to-www-urls/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Why redirect if both URLs work fine without it?</strong></p>
<p>Search engines consider http://wpthemesgallery.com and http://www.wpthemesgallery.com as two difference websites. So, when other websites link to you, they might not all choose the same URL, splitting the link popularity of your website.  By 301 redirecting, this is fixed, and the link popularity from both URLs are combined into one.</p>
<p><strong>How to redirect?</strong></p>
<p>These are the instructions of how to redirect on an Apache server:</p>
<ol>
<li>Download the .htaccess file from your website&#8217;s root folder;</li>
<li>Add the following code to it:</li>
<p><code>RewriteEngine On<br />
RewriteCond %{HTTP_HOST} ^wpthemesgallery.com<br />
RewriteRule (.*) http://www.wpthemesgallery.com/$1 [R=301,L]</code></p>
<li>Replace wpthemesgallery with your website&#8217;s URL;</li>
<li>Replace the old .htaccess file with the new one.</li>
<li>Try visiting the non-www URL and if it redirects to the www URL, you&#8217;re done!</li>
</ol>
<p>If you are using WordPress and have been getting errors after the redirect, do the following:</p>
<ol>
<li>Log in to the admin section of your WordPress blog;</li>
<li>Click on Options;</li>
<li>Add www to the WordPress address and Blog address URLs.</li>
</ol>
<p>This should work and now you won&#8217;t get any more errors that were caused by the redirect.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpthemesgallery.com/how-to-301-redirect-non-www-to-www-urls/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How to Increase Blog Traffic in the First Few Weeks</title>
		<link>http://wpthemesgallery.com/how-to-increase-blog-traffic-in-the-first-few-weeks/</link>
		<comments>http://wpthemesgallery.com/how-to-increase-blog-traffic-in-the-first-few-weeks/#comments</comments>
		<pubDate>Thu, 18 Oct 2007 02:22:24 +0000</pubDate>
		<dc:creator>Artur Kim</dc:creator>
				<category><![CDATA[Blog Traffic]]></category>
		<category><![CDATA[Make Money Online]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.wpthemesgallery.com/how-to-increase-blog-traffic-in-the-first-few-weeks/</guid>
		<description><![CDATA[Want to bring more traffic to your blog without spending a dime? According to Google Analytics, I&#8217;m now getting 4x more absolute unique visitors per day than I was 2 weeks ago. So, what have I been doing for such &#8230; <a href="http://wpthemesgallery.com/how-to-increase-blog-traffic-in-the-first-few-weeks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Want to bring more traffic to your blog without spending a dime? According to Google Analytics, I&#8217;m now getting 4x more absolute unique visitors per day than I was 2 weeks ago. So, what have I been doing for such increase in traffic?</p>
<p><strong>Basic, but Most Important</strong></p>
<p>We all know the basics, but they are very important:</p>
<ul>
<li>Write good content (your blog will get more visitors);</li>
<li>Post regularly (your blog will get regular readers).</li>
</ul>
<p>So, if you keep posting good content regularly, your blog traffic will always be increasing!</p>
<p><strong>Join Technorati</strong></p>
<p>If you are new to blogging and don&#8217;t know what Technorati is. Technorati is an internet search engine for searching blogs. You should definitely <a href="http://www.technorati.com/signup/" title="Technorati">join</a> and register your blog there. If you like my blog, please <a href="http://www.technorati.com/blogs/wpthemesgallery.com" title="Technorati">favorite it</a>.</p>
<p><strong>Join a Blog Community</strong></p>
<p>There are various blog communities out there that you can join. I&#8217;ve joined a couple, but the one I use the most is <a href="http://www.mybloglog.com" title="MyBlogLog">MyBlogLog</a>, which is now owned by Yahoo. I&#8217;m always logged in, so that when I visit other people&#8217;s blogs who are part of MyBlogLog, they know that I visited them and they usually visit you back. If they are interested enough in your blog, they will join your community. <a href="http://www.mybloglog.com/buzz/community/wpthemesgallery/" title="MyBlogLog">My community</a> has been increasing and you are welcome to join it.</p>
<p><strong>Be Active in the Community</strong></p>
<p>You can do so by visiting blogs, leaving comments, participating in forums, etc. You should interact with other bloggers and build friendships. I&#8217;ve been getting a lot of visitors by doing so. Get your name out there!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpthemesgallery.com/how-to-increase-blog-traffic-in-the-first-few-weeks/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to Create a Blog</title>
		<link>http://wpthemesgallery.com/how-to-create-a-blog/</link>
		<comments>http://wpthemesgallery.com/how-to-create-a-blog/#comments</comments>
		<pubDate>Sat, 13 Oct 2007 08:19:06 +0000</pubDate>
		<dc:creator>Artur Kim</dc:creator>
				<category><![CDATA[Make Money Online]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://wpthemesgallery.com/how-to-create-a-blog/</guid>
		<description><![CDATA[Before learning how to make money online, let&#8217;s first learn how to create a blog. There are three things needed to create a blog like this one: Web hosting; A domain name; WordPress (blog publishing system). Web Hosting There are &#8230; <a href="http://wpthemesgallery.com/how-to-create-a-blog/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Before learning how to make money online, let&#8217;s first learn how to create a blog. There are three things needed to create a blog like this one:</p>
<ol>
<li>Web hosting;</li>
<li>A domain name;</li>
<li>WordPress (blog publishing system).</li>
</ol>
<p><strong>Web Hosting</strong></p>
<p>There are several great web hosting providers that you can choose from. The only requirement to install WordPress is the support of PHP and MySQL. The support of FTP and the use of Apache are recommended, but not required. This blog is hosted by a free web host provider that has several features: Apache, CentOS, CPanel, MySQL, PHP, Ruby on Rails, and more. I get 20GB of storage and 20GB of bandwitch, plus unlimited email accounts, subdomains, parked domains, addon domains, FTP accounts, SQL databases, and mailing lists. This is great considering that the web hosting is free. When choosing a web hosting provider, also make sure to check that their uptime is around 99.9%.</p>
<p><strong>A Domain Name</strong></p>
<p>This is not required, but having your own domain name will make your blog look professional and people will take it more seriously, resulting in more traffic. Most people usually buy their domain names through their web hosting provider because of the no need to set it up yourself. However, if you find a good deal for domain names in a website, don&#8217;t let the setup process keep you from buying a domain name there because it should be easy and most web hosting providers help you with that.</p>
<p><strong>WordPress</strong></p>
<p>WordPress is well known for its ease of installation and <a href="http://wordpress.org/" title="wordpress.org">WordPress.org</a> has a very informative doc on <a href="http://codex.wordpress.org/Installing_WordPress" title="Installing WordPress">installing WordPress</a>. If your web hosting provider uses CPanel and provides Fantastico, follow these instructions:</p>
<ol>
<li>Login to your CPanel;</li>
<li>Click on Fantastico;</li>
<li>Click on WordPress in the sidebar under Blogs;</li>
<li>Click on New Installation;</li>
<li>Fill in the form;</li>
<li>Click the Install WordPress button;</li>
<li>And you&#8217;re done!</li>
</ol>
<p>To get to the admin section of your blog follow the instructions after the installation.</p>
<p>Congratulations on creating a blog, I wish you good luck and most importantly, have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpthemesgallery.com/how-to-create-a-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)

Served from: wpthemesgallery.com @ 2012-05-17 07:22:30 -->
