<?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>Kevin S Brown &#187; Tutorials</title>
	<atom:link href="http://kevinsbrown.com/c/tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://kevinsbrown.com</link>
	<description>My Personal Blog - Built with WordPress - Mainly about WordPress</description>
	<lastBuildDate>Mon, 23 Aug 2010 17:36:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Add Widgets To Your WordPress Footer &#8211; Easy How To Guide</title>
		<link>http://kevinsbrown.com/add-widgets-to-your-wordpress-footer-easy-how-to-guide.html</link>
		<comments>http://kevinsbrown.com/add-widgets-to-your-wordpress-footer-easy-how-to-guide.html#comments</comments>
		<pubDate>Sat, 26 Dec 2009 20:14:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[footer widgets]]></category>
		<category><![CDATA[widget area]]></category>
		<category><![CDATA[wordpress how to]]></category>

		<guid isPermaLink="false">http://kevinsbrown.com/?p=92</guid>
		<description><![CDATA[I&#8217;ve been noticing that WordPress blogs with widgetized footers, help ME when I visit to find other interesting posts on the blog.
Without widgets in the footer, you know the problem &#8230; You read a good post, get to the bottom of the page, then wonder where to go next.
BUT, if the page footer contains widgets, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been noticing that WordPress blogs with widgetized footers, help ME when I visit to find other interesting posts on the blog.</p>
<p>Without widgets in the footer, you know the problem &#8230; You read a good post, get to the bottom of the page, then wonder where to go next.</p>
<p>BUT, if the page footer contains widgets, chances are you will immediately see other post titles or enticing comments, which help you to find other posts you may enjoy.</p>
<p>So having realized this from my own blog reading behavior, I thought I really should put widgets in my own footer, here at KevinSBrown.com</p>
<p>I&#8217;ve just done it and you can see the new widgets in the footer here (if you page down). I have added three side by side widget areas to the footer.</p>
<p>So having worked it out, I think I should share my &#8220;easy how-to guide&#8221; to widgetizing your WordPress footer. </p>
<p>Here goes&#8230;</p>
<p><strong>STEP 1: Tell WordPress you want to use three more widget positions, and they should be called &#8220;footer 1&#8243;, &#8220;footer 2&#8243; and &#8220;footer 3&#8243;)</strong></p>
<p>Use the theme editor for your current theme, to add an extra line of code to the functions.php file (it&#8217;s the 3rd line below, beginning register_sidebars(3,array&#8230;</p>
<blockquote><pre><code>if ( function_exists('register_sidebar') )
    register_sidebar();
    register_sidebars(3, array('name'=&gt;'Footer %d'));</code></pre>
</blockquote>
<p><strong>STEP 2:  Add the extra widget positions to your theme&#8217;s footer</strong></p>
<p>Again using the theme editor, add this to your footer.php file&#8230;</p>
<blockquote><pre><code>&lt;div id="footerwidgets"&gt;  
  &lt;div id="footer-left"&gt;               
    &lt;ul&gt;      
&lt;?php if ( !function_exists('dynamic_sidebar') 
   || !dynamic_sidebar('footer 1') ) : ?&gt; &lt;li&gt;                                                                                     
      &lt;?php endif; ?&gt;                
    &lt;/ul&gt;    
  &lt;/div&gt;   
  &lt;div id="footer-middle"&gt;               
    &lt;ul&gt;        
&lt;?php if ( !function_exists('dynamic_sidebar') 
   || !dynamic_sidebar('footer 2') ) : ?&gt; &lt;li&gt;                                                                                   
      &lt;?php endif; ?&gt;                
    &lt;/ul&gt;    
  &lt;/div&gt;    
  &lt;div id="footer-right"&gt;               
    &lt;ul&gt;       
&lt;?php if ( !function_exists('dynamic_sidebar') 
   || !dynamic_sidebar('footer 3') ) : ?&gt; &lt;li&gt;                                                                                  
      &lt;?php endif; ?&gt;                
    &lt;/ul&gt;    
  &lt;/div&gt;
&lt;/div&gt; 
&lt;br /&gt; &lt;br clear="all"&gt;</code></pre>
</blockquote>
<p><strong>STEP 3: Style the new footer divs, by adding div styles to your style.css file</strong><br />
(note: you will probably need to adjust the width parameters and other style elements, to suit your particular theme)</p>
<blockquote><pre><code>/* Footer Widgets */
#footerwidgets {
	display: block;
}
#footer-left {
	width: 210px;
	float: left;
	margin: 15px 10px 10px 30px;
	padding: 10px;
	background-color: #f3f3e7;
}
#footer-middle {
	width: 210px;
	float: left;
	margin: 15px 10px 10px 15px;
	padding: 10px;
	background-color: #f3f3e7;
}
#footer-right {
	width: 210px;
	float: left;
	margin: 15px 10px 10px 15px;
	padding: 10px;
	background-color: #f3f3e7;
}</code></pre>
</blockquote>
<p>I hope that helps.  You will need to adjust to your particular theme and requirements, but that is exactly what I have just done here and you can see the result.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinsbrown.com/add-widgets-to-your-wordpress-footer-easy-how-to-guide.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How Buying My First iPod Led Me To Create A Product</title>
		<link>http://kevinsbrown.com/creating-my-blogcasting-product-after-buying-an-ipod.html</link>
		<comments>http://kevinsbrown.com/creating-my-blogcasting-product-after-buying-an-ipod.html#comments</comments>
		<pubDate>Sun, 30 Nov 2008 12:44:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blogcasting]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[product creation]]></category>

		<guid isPermaLink="false">http://kevinsbrown.com/?p=39</guid>
		<description><![CDATA[About a month ago, I got my first ever iPod.
It&#8217;s an iPod Touch, so it&#8217;s one of the wi-fi internet enabled ones.  I do realize I&#8217;m somewhat late to the party!
However, what&#8217;s more important is it led directly to me creating a product.
The product is a book called &#8220;Blogcasting Blueprint&#8221; and it&#8217;s now selling [...]]]></description>
			<content:encoded><![CDATA[<p>About a month ago, I got my first ever iPod.</p>
<p>It&#8217;s an iPod Touch, so it&#8217;s one of the wi-fi internet enabled ones.  I do realize I&#8217;m somewhat late to the party!</p>
<p>However, what&#8217;s more important is it led directly to me <strong>creating a product</strong>.</p>
<p>The product is a book called &#8220;Blogcasting Blueprint&#8221; and it&#8217;s now selling at a low price as a <a title="Current Blogcasting Blueprint Launch Offer" href="http://blogcastingblueprint.com" target="_blank">Launch Offer</a>.  It&#8217;s about linking a WordPress blog to the iTunes Store and creating podcasts to reach a wider audience.</p>
<p>Here&#8217;s the process I followed.  Hopefully it will give some insight, into how the iPod purchase led to product creation&#8230;</p>
<p>I started to use iTunes (obviously) and was astonished by the loveliness of the whole set-up.</p>
<div style="float: right; width:310px;"><img class="alignright" style="float: right;" src="http://kevinsbrown.com/images/itsastrocastchannel_300.png" alt="Astrocast IYA podcast channel at the iTunes Store" width="300" height="206" />
<p class="wp-caption-text">My Channel at the iTunes Store</p>
</div>
<p>But what really caught my eye, were the &#8220;privateer&#8221; Podcast channels, there in the full iTunes Store.</p>
<p>Small information publishers like me (and probably you, too).  I thought, how can I do that?  These guys have their publishing in front of goodness knows how many millions of people, who search at the iTunes Store for interesting stuff to enjoy.</p>
<p>Well, being me, I started to investigate and I discovered that I (and you) can get our own channel at the Store, with a bit of organization.</p>
<p>Plus, joy of joy, my WordPress blog already had suitable content (my posts) AND it could handle the technicalities of RSS feeds etc, automatically.</p>
<p>All rather interesting!</p>
<p>So I tried it out..  And it works.  I got my own podcast channel at the Store and now, publish my blog content to this much wider audience.</p>
<p>So then, I started thinking&#8230;  <strong>How could I help other blog publishers, do the same thing?</strong></p>
<p>Well, of course, I had to write a report all about it.  It shows how to do it step-by-step, short-circuiting all the research I had to do.</p>
<p>As I mentioned, the report at a <a title="Blogcasting Blueprint Launch Offer" href="http://blogcastingblueprint.com" target="_blank">Launch Offer price</a> is currently available.</p>
<p>So if you&#8217;re at all interested, I&#8217;ve worked hard to make this report clear and useful, showing how to setup your blog with the wonderful (free) plugin I use.  And then podcast, to your own channel at the iTunes Store.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinsbrown.com/creating-my-blogcasting-product-after-buying-an-ipod.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solving The Wordpress &#8216;you need to make this file writable&#8217; Error Message</title>
		<link>http://kevinsbrown.com/solving-the-wordpress-you-need-to-make-this-file-writable-error-message.html</link>
		<comments>http://kevinsbrown.com/solving-the-wordpress-you-need-to-make-this-file-writable-error-message.html#comments</comments>
		<pubDate>Thu, 06 Nov 2008 21:08:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[file permission]]></category>
		<category><![CDATA[file writable]]></category>

		<guid isPermaLink="false">http://kevinsbrown.com/?p=38</guid>
		<description><![CDATA[It depends on your web hosting service, but sometimes when I try to edit the theme on a new Wordpress self-hosted blog, I get this error message..
&#8216;You need to make this file writable before you can save your changes&#8217;
Here&#8217;s a short video on how to solve this problem, by setting the theme file permissions so [...]]]></description>
			<content:encoded><![CDATA[<p>It depends on your web hosting service, but sometimes when I try to edit the theme on a new Wordpress self-hosted blog, I get this error message..</p>
<p>&#8216;You need to make this file writable before you can save your changes&#8217;</p>
<p>Here&#8217;s a short video on how to solve this problem, by setting the theme file permissions so editing is allowed.</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="437" height="370" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0">
<param name="id" value="viddler_5b208bdc" />
<param name="flashvars" value="autoplay=t" />
<param name="allowScriptAccess" value="always" />
<param name="allowFullScreen" value="true" />
<param name="src" value="http://www.viddler.com/player/5b208bdc/" /><embed id="viddler_5b208bdc" type="application/x-shockwave-flash" width="437" height="370" src="http://www.viddler.com/player/5b208bdc/" allowfullscreen="true" allowscriptaccess="always" flashvars="autoplay=t"></embed></object></p>
<p> </p>
<p>PS..  It&#8217;s also the first time I have used the <a title="Viddler.com Video Hosting" href="http://viddler.com" target="_blank">Viddler video hosting service</a>, so I am trying that out, too.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinsbrown.com/solving-the-wordpress-you-need-to-make-this-file-writable-error-message.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>New Fresh Look For Your Wordpress Blog, With This Quick Change</title>
		<link>http://kevinsbrown.com/new-fresh-look-wordpress-blog.html</link>
		<comments>http://kevinsbrown.com/new-fresh-look-wordpress-blog.html#comments</comments>
		<pubDate>Wed, 24 Sep 2008 22:05:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[modified date]]></category>
		<category><![CDATA[the_modified_date]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://kevinsbrown.com/?p=35</guid>
		<description><![CDATA[Today, I was updating one of my many Wordpress blogs, with some new content.
I was not writing new posts&#8230;  Just editing existing posts to add new images I&#8217;d found, plus tidying a few bits to improve readability.
Then it struck me..  the DATE at the top of the posts, still showed the original creation [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I was updating one of my many Wordpress blogs, with some new content.</p>
<p>I was not writing <strong>new</strong> posts&#8230;  Just <strong>editing existing posts</strong> to add new images I&#8217;d found, plus tidying a few bits to improve readability.</p>
<p>Then it struck me..  the DATE at the top of the posts, still showed the <strong>original creation date</strong>.  For some  of my posts, this was more than 12 months ago..</p>
<p>Not very fresh-looking!</p>
<p>On your blog, you may not show the post date at all (like here on kevinsbrown.com).</p>
<p>But, IF you recognise this problem, here&#8217;s a <strong>quick freshen-up fix</strong>, which I found today and implemented. It can transform the fresh look of your blog.</p>
<p>Login as the administrator and go into the Theme editor (hold on, I have to say take a backup of your existing theme first, just in case it all goes wrong&#8230;)</p>
<p>Select the template, such as &#8220;Main Index&#8221; (index.php) or &#8220;Single Post&#8221; (single.php), or both..</p>
<p>Find a line of code containing <em>&lt;?php the_time(</em></p>
<p>and replace it carefully with something like..</p>
<p><em>last updated: &lt;?php the_modified_date(</em></p>
<p>Then, when you save the edited post, instead of the <strong>original post date</strong> showing, the <strong>last edited date</strong> will display &#8211; making it look so much more fresh and up to date.</p>
<p>Just like the major, online news websites&#8230;</p>
<p>This one quick change has certainly improved the look of the blog in question.  It now looks current again and emphasises the worthwhile updates I made today.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinsbrown.com/new-fresh-look-wordpress-blog.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Add A Favicon (Favorite Icon) Image To A Wordpress Blog</title>
		<link>http://kevinsbrown.com/how-to-add-a-favicon-favorite-icon-image-to-a-wordpress-blog.html</link>
		<comments>http://kevinsbrown.com/how-to-add-a-favicon-favorite-icon-image-to-a-wordpress-blog.html#comments</comments>
		<pubDate>Mon, 18 Aug 2008 14:37:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[favorite icon]]></category>

		<guid isPermaLink="false">http://kevinsbrown.com/?p=27</guid>
		<description><![CDATA[If you look at your browser address bar as you&#8217;re reading this blog, you&#8217;ll see my favicon image.
It&#8217;s the sweet-looking, small speech-bubble image, with the letter &#8220;K&#8221; inside.
And if you add this blog to your favorites or bookmarks (and I hope you will!), you&#8217;ll also see the image appear in your list of bookmarks,
This should [...]]]></description>
			<content:encoded><![CDATA[<p>If you look at your browser address bar as you&#8217;re reading this blog, you&#8217;ll see my favicon image.</p>
<p>It&#8217;s the sweet-looking, small speech-bubble image, with the letter &#8220;K&#8221; inside.</p>
<p>And if you add this blog to your favorites or bookmarks (and I hope you will!), you&#8217;ll also see the image appear in your list of bookmarks,</p>
<p>This should help my blog to stand-out from the other sites.</p>
<p><strong>If you would like to add a favicon image to your Wordpress blog, here&#8217;s how to do it.</strong></p>
<p><strong>STEP 1</strong></p>
<p>Make a 16&#215;16 pixel image and save as an &#8220;ico&#8221; image.  Call it favicon.ico</p>
<p>You can use the free graphics program <a title="Download GIMP graphics editor" href="http://gimp.org" target="_blank">GIMP</a> to do this, if you don&#8217;t already have suitable graphics editing software.</p>
<p><strong>If you don&#8217;t want to make your own image, you may download and use this favicon I&#8217;ve made.</strong></p>
<p style="text-align: center;"><img class="aligncenter" title="You can download and use this favicon image" src="http://kevinsbrown.com/faviconw.ico" alt="download and use this favicon image" /></p>
<p>Just right-click and choose &#8220;save image as&#8221;, to save it to your desktop.</p>
<p><strong>STEP 2</strong></p>
<p>Upload the favicon using an FTP program to your server, at the top level of your blog.</p>
<p>Rename it to <span style="color: #888888;">favicon.ico</span> if necessary.</p>
<p><strong>STEP 3</strong></p>
<p>Login as admin for your blog.  Ensure this line of code is in the header.php file, of the theme you are using.</p>
<p>Add the code line using the theme editor, if it&#8217;s not there already.</p>
<p><strong><code>&lt;link rel="shortcut icon" href="&lt;?php echo get_settings('home'); ?&gt;/favicon.ico" /&gt;</code></strong></p>
<p>Here&#8217;s an image, showing the theme editor being used to edit the file header.php &#8230; (CLICK FOR LARGER IMAGE)</p>
<p><div id="attachment_136" class="wp-caption aligncenter" style="width: 310px"><a href="http://kevinsbrown.com/wp-content/uploads/2010/08/addingfaviconcodetoWordpressheader.png"><img class="size-medium wp-image-136" title="addingfaviconcodetoWordpressheader" src="http://kevinsbrown.com/wp-content/uploads/2010/08/addingfaviconcodetoWordpressheader-300x101.png" alt="Adding favicon icon code to the WordPress header.php file" width="300" height="101" /></a><p class="wp-caption-text">Adding the favicon icon code to the WordPress header.php file</p></div></p>
<p><strong>STEP 4</strong></p>
<p>Refresh your blog and check the favicon shows as expected.</p>
<p>Hope you like it!</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinsbrown.com/how-to-add-a-favicon-favorite-icon-image-to-a-wordpress-blog.html/feed</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>Customizing The PowerBlogger Header Offer Box [Video]</title>
		<link>http://kevinsbrown.com/powerblogger-wp-theme-header-offer-video.html</link>
		<comments>http://kevinsbrown.com/powerblogger-wp-theme-header-offer-video.html#comments</comments>
		<pubDate>Sun, 06 Apr 2008 17:41:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PowerBlogger Theme]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress header link]]></category>

		<guid isPermaLink="false">http://kevinsbrown.com/?p=13</guid>
		<description><![CDATA[Here&#8217;s a short video tutorial on customizing the header area of a blog using PowerBlogger theme.
It should also help you customize other WordPress themes to your requirements.
The video shows how to insert image links into the offer box in the header area, and make it display correctly.
Video tip on showing product offer links in the [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a short video tutorial on customizing the header area of a blog using <a href="http://powerbloggertheme.com">PowerBlogger theme</a>.</p>
<p>It should also help you customize other WordPress themes to your requirements.</p>
<p>The video shows how to insert image links into the offer box in the header area, and make it display correctly.</p>
<p style="text-align: center;"><a href="http://kevinsbrown.com/vids/headerbox.flv">Video tip on showing product offer links in the header of the Wordpress PowerBlogger theme</a></p>
<p>Do please leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinsbrown.com/powerblogger-wp-theme-header-offer-video.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Wordpress Custom Header Image [Video Tip]</title>
		<link>http://kevinsbrown.com/wordpress-custom-header-image-video-tip.html</link>
		<comments>http://kevinsbrown.com/wordpress-custom-header-image-video-tip.html#comments</comments>
		<pubDate>Sat, 05 Apr 2008 18:38:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress header.jpg]]></category>
		<category><![CDATA[wordpress theme header image]]></category>

		<guid isPermaLink="false">http://kevinsbrown.com/?p=12</guid>
		<description><![CDATA[Sometimes, you might really like a Wordpress theme, but not be satisfied with the header image the developer has chosen.
Other times, you might just want to use your own custom header, displaying your blog&#8217;s name and characteristic logo etc.
This short video demonstrates an easy way to customize a Wordpress theme header image.  I am [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes, you might really like a Wordpress theme, but not be satisfied with the header image the developer has chosen.</p>
<p>Other times, you might just want to use your own custom header, displaying your blog&#8217;s name and characteristic logo etc.</p>
<p>This short video demonstrates an easy way to customize a Wordpress theme header image.  I am showing <a title="PowerBlogger WordPress Theme" href="http://powerbloggertheme.com" target="_blank">PowerBloggerTheme</a> because I use it on this blog.</p>
<p>But the same crafty technique works for many Wordpress themes.</p>
<p style="text-align: center;"><a href="http://kevinsbrown.com/vids/headerimage.flv">Video tip on easy customization of  a Wordpress theme header image</a></p>
<p style="text-align: left;">Please leave a comment and let me know if it helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinsbrown.com/wordpress-custom-header-image-video-tip.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Many Posts On The Front Page [Video Tip]</title>
		<link>http://kevinsbrown.com/video-tip-how-many-posts-on-the-front-page.html</link>
		<comments>http://kevinsbrown.com/video-tip-how-many-posts-on-the-front-page.html#comments</comments>
		<pubDate>Sun, 30 Mar 2008 19:06:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://kevinsbrown.com/video-tip-how-many-posts-on-the-front-page.html</guid>
		<description><![CDATA[Download
Here is a short video tip, on changing the number of posts that show on the front page of your WordPress blog.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://kevinsbrown.com/vids/frontpageposts.flv" title="Anarchy Media Player - Right click to download file"><em>Download</em></a></p>
<p>Here is a short video tip, on changing the number of posts that show on the front page of your WordPress blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinsbrown.com/video-tip-how-many-posts-on-the-front-page.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating A MySQL Database Under cPanel Hosting [VIDEO]</title>
		<link>http://kevinsbrown.com/creating-a-mysql-database.html</link>
		<comments>http://kevinsbrown.com/creating-a-mysql-database.html#comments</comments>
		<pubDate>Sat, 29 Mar 2008 14:43:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[cpanel host]]></category>
		<category><![CDATA[creating database]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://kevinsbrown.com/creating-a-mysql-database.html</guid>
		<description><![CDATA[Many website scripts (including WordPress) require a MySQL database, before they will work.
Creating a database on your webhosting can seem difficult, but it&#8217;s really not too scary or technical.
Hopefully this short video will show exactly how it&#8217;s done, if you are using a cPanel web hosting service.



Even if your hosting provider uses a different control [...]]]></description>
			<content:encoded><![CDATA[<p>Many website scripts (including WordPress) require a MySQL database, before they will work.</p>
<p>Creating a database on your webhosting can seem difficult, but it&#8217;s really not too scary or technical.</p>
<p>Hopefully this short video will show exactly how it&#8217;s done, if you are using a cPanel web hosting service.<br />
<center><br />
<a href="http://kevinsbrown.com//wp-content/uploads/2008/03/dbcreate1.flv" title="Creating a mysql database on a cpanel webhost"></a><br />
</center><br />
Even if your hosting provider uses a different control panel, the process will probably be quite similar to what I&#8217;ve shown here.</p>
]]></content:encoded>
			<wfw:commentRss>http://kevinsbrown.com/creating-a-mysql-database.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
