<?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"
	>

<channel>
	<title>Premium WordPress Themes for Small Business; Wordpress Theme Tutorials &#187; Tutorials</title>
	<atom:link href="http://www.solostream.com/category/tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://www.solostream.com</link>
	<description></description>
	<pubDate>Sat, 23 Aug 2008 17:17:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>How to Add a Header Image to the Simplicity WordPress Theme</title>
		<link>http://www.solostream.com/2007/10/09/how-to-add-a-header-image-to-the-simplicity-wordpress-theme/</link>
		<comments>http://www.solostream.com/2007/10/09/how-to-add-a-header-image-to-the-simplicity-wordpress-theme/#comments</comments>
		<pubDate>Tue, 09 Oct 2007 18:18:24 +0000</pubDate>
		<dc:creator>Michael Pollock</dc:creator>
		
		<category><![CDATA[Blog Design]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[WordPress]]></category>

	<!-- AutoMeta Start -->
	<category>header</category>
	<category>theme</category>
	<category>simplicity</category>
	<category>figured</category>
	<category>tutorial</category>
	<category>folks</category>
	<category>graphic</category>
	<category>write</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.solostream.com/2007/10/09/how-to-add-a-header-image-to-the-simplicity-wordpress-theme/</guid>
		<description><![CDATA[I get a lot of folks who want to add a header graphic to my <a href="http://www.solostream.com/2007/06/11/wordpress-blog-theme-simplicity-10-widgets/">Simplicity WordPress theme</a>, so I figured it was time to just write a tutorial on it. It's really pretty simple to do.]]></description>
			<content:encoded><![CDATA[<p>I get a lot of folks who want to add a header graphic to my <a href="http://www.solostream.com/2007/06/11/wordpress-blog-theme-simplicity-10-widgets/">Simplicity WordPress theme</a>, so I figured it was time to just write a tutorial on it. It&#8217;s really pretty simple to do.</p>
<h2>Step 1: Understand the Dimensions</h2>
<p>The header of Simplicity is the wide, blue area at the top where you see the blog name and description. The width of the header is 940px wide. That means any header image you place there needs to be no wider than that. As for the height, well that doesn&#8217;t really matter. The header height will expand to fit.</p>
<p><span id="more-885"></span></p>
<h2>Step 2: Upload Your Image</h2>
<p><img class="alignright" src='http://www.solostream.com/wp-content/uploads/2007/10/ftp.gif' alt='ftp.gif' />To upload your header image to your web host, I suggest you use an FTP program such as <a href="http://www.smartftp.com/">SmartFTP</a>. FTP stand for File Transfer Protocol, and it basically allows you to transfer files between your home computer and a web server (i.e. your web hosting account). If you&#8217;ve never used an FTP program before, you&#8217;ll need to get the FTP login information from your webhost. Specifically, you&#8217;ll need the FTP url, the username and the password. </p>
<p>Once you have your FTP login info, go ahead and login. You&#8217;ll want to upload your header image to the following folder on your web hostiing account: /wp-content/themes/Simplicity10/images.</p>
<h2>Step 3 - Add Your Image to the Theme</h2>
<p>Next, we need to tell the theme to place your new header image into the header itself. To do that, you&#8217;ll need to modify your Stylesheet template. So, click the <strong>Presentation</strong> tab on your WordPress control panel. Then click the <strong>Theme Editor</strong> link on the subnav bar. Your stylesheet template should show up in the code box, but if for some reason it doesn&#8217;t, just click the Stylesheet link from the list of theme files on the right side of the page.</p>
<p>On the page that follows, you&#8217;ll see your stylesheet template. Scroll down just a bit until you see the following block of code:</p>
<p><code>#header {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;clear: both;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;padding: 25px 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;margin: 0 auto;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;background: #0066cc;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</code></p>
<p>Once you find it, change it to this:</p>
<p><code>#header {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;clear: both;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;padding: 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;margin: 0 auto;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;background: url(images/headerimagename.gif) top left no-repeat;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;height: header image height goes here (e.g. 100px);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}</code></p>
<p>Of course, you&#8217;ll want to change the name of the file from headerimagename.gif to whatever is the name of your actual file. Be sure to click the Update File button in the bottom right corner.</p>
<h2>Step 4: Remove the Blog Name and Description from the Header</h2>
<p>The last thing we have to do is remove the blog name and description from the header area. On the right side of your Theme Editor page, you will see a link named Header about half way down the list of files. Click it. Once you get to that page scroll down until your find this block of code:</p>
<p><code>&lt;div id=&quot;header&quot; onclick=&quot;location.href=&#039;&lt;?php bloginfo(&#039;url&#039;); ?&gt;&#039;;&quot; style=&quot;cursor: pointer;&quot;&gt;<br />
&lt;h1 class=&quot;blogtitle&quot;&gt;&lt;?php bloginfo(&#039;name&#039;); ?&gt;&lt;/h1&gt;<br />
&lt;p class=&quot;description&quot;&gt;&lt;?php bloginfo(&#039;description&#039;); ?&gt;&lt;/p&gt;<br />
&lt;/div&gt;</code></p>
<p>Change it to this:</p>
<p><code>&lt;div id=&quot;header&quot; onclick=&quot;location.href=&#039;&lt;?php bloginfo(&#039;url&#039;); ?&gt;&#039;;&quot; style=&quot;cursor: pointer;&quot;&gt;<br />
&lt;/div&gt;</code></p>
<p>Click Update File. And that&#8217;s all there is to it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.solostream.com/2007/10/09/how-to-add-a-header-image-to-the-simplicity-wordpress-theme/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Install WordPress on Your Own Server + Video Tutorial</title>
		<link>http://www.solostream.com/2007/02/25/lesson-12-download-and-install-wordpress-on-your-server/</link>
		<comments>http://www.solostream.com/2007/02/25/lesson-12-download-and-install-wordpress-on-your-server/#comments</comments>
		<pubDate>Sun, 25 Feb 2007 19:03:49 +0000</pubDate>
		<dc:creator>Michael Pollock</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[WordPress]]></category>

	<!-- AutoMeta Start -->
	<category>wordpress</category>
	<category>video</category>
	<category>install</category>
	<category>tutorial</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.solostream.com/2006/01/17/lesson-12-download-and-install-wordpress-on-your-server/</guid>
		<description><![CDATA[This tutorial provides step-by-step directions on how to install WordPress on your own server.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.solostream.com/wp-content/uploads/2007/07/wp-20-button-trans.gif" class="alignright" style="border: 0pt none " alt="wp-20-button-trans.gif" /><strong>View the video tutorial</strong>:</p>
<ul>
<li><a href="#" onclick="window.open('http://www.solostream.com/video/wordpress-install.html','','width=820,height=639,scrollbars=0,addressbar=0,toolbar=0,resizable=no'); return false">Play Video in New Window</a></li>
<li><a href="http://www.solostream.com/video/wordpress-install.swf">Download Video</a> (right-click and &#8220;save link as&#8221;)</li>
</ul>
<p><span id="more-621"></span></p>
<p><strong>1. Download WordPress</strong></p>
<p>The very first thing you&#8217;ll want to do is download a copy of WordPress 2.0. So, go the <a href="http://wordpress.org/download/">WordPress site here</a>, and look for the link that says &#8220;DOWNLOAD.ZIP.&#8221; You should see it on the right side of the page with a dark blue background. When you see the link, click on it, and save the file to your desktop so it&#8217;s easy to find going forward.</p>
<p><strong>2. Unzip the Folder</strong></p>
<p>After you download the program, you&#8217;ll need to unzip the files into their own folder on your desktop. Most computers have a built-in zip/unzip application when you buy them, and if you&#8217;re not sure about your system, right-click on the file you just downloaded, and look for the menu option that says &#8220;Extract All &#8230;&#8221; Select that option if you see it. If you don&#8217;t have an unzip feature already installed, you can download a free program called <a href="http://www.stuffit.com">Stuffit Expander</a> (for PC or Mac).</p>
<p><!--more--></p>
<p><strong>3. Set Up Your Hosting Account</strong></p>
<p>You may already have a web host, and if so, you can skip this section. If not, the web host I&#8217;ve been using for a couple of years is <a href="http://www.1and1.com/?k_id=7377717">1and1 Internet, Inc</a>., and I recommend them highly. They offer several hosting packages, and I&#8217;d suggest the &#8220;Business Hosting&#8221; plan at $9.99 per month. You can find it on the left menu bar under the heading &#8220;Linux Hosting.&#8221;</p>
<p>During the set-up process, you&#8217;ll need to choose a domain name for your site if you don&#8217;t already have one you want to use. Give careful consideration to the domain name you choose. Try to make it something memorable yet easy to spell as people will be typing it into their brower to get to your site. You wouldn&#8217;t want them to have to type www.superlongandhardtospelldomainname.com. Also keep in mind, you can add on other domains very easily in the future if necessary.</p>
<p><strong>4. Set Up Your FTP Program</strong></p>
<p>FTP stands for File Transfer Protocol, and an FTP program will allow you to copy files from your own computer to your web host. There are many FTP programs available, and the one I use is a free program called SmartFTP. You can download it <a href="http://www.smartftp.com/download/">here</a>.</p>
<p><strong>5. Get Your FTP Access Information</strong></p>
<p>You&#8217;ll need to enter this information into your FTP program to access and upload files to your web host. Specifically, you&#8217;ll need to enter the the domain name, user name and password for your FTP account. You can get this information from your web host if you don&#8217;t have it already. If you have a <a href="http://www.1and1.com/?k_id=7377717">1and1</a> account, you&#8217;ll find a link on the main &#8220;Administration&#8221; page just after you log-in to your account (login page: admin.1and1.com).</p>
<p><strong>6. Set Up Your MySQL Database With Your Web Host</strong></p>
<p>This isn&#8217;t as scary as it may sound. Well, not if you have a good web host. Again, back to <a href="http://www.1and1.com/?k_id=7377717">1and1</a> (because that&#8217;s who I use). It&#8217;s really simple to set up a database in their control panel.</p>
<ul>
<li>Simply log in to the control panel at admin.1and1.com, and go to the Administration page.</li>
<li>You&#8217;ll see a section that says &#8220;Websites and Applications,&#8221; under which you&#8217;ll see a link that says &#8220;MySQL Administration.&#8221;</li>
<li>Click that link, and look for a button that says &#8220;New Database.&#8221;</li>
<li>Enter anything you like for the description of the new database (e.g. WPBlog), then click &#8220;SetUp.&#8221;</li>
<li>That&#8217;s it. Your database is set up. On the following page, you&#8217;ll see the information about your new database, such as the database name, host name, user name, etc.</li>
<li>Keep that window open or print the page as you&#8217;ll need the database information shortly.</li>
</ul>
<p><strong>7. Enter Your Database Information into Your WordPress Config File</strong></p>
<p>Remember when you downloaded and unzipped the WordPress program on your computers desktop? Open that folder, and you&#8217;ll see another folder labeled &#8220;WordPress.&#8221; Open that folder, and find a file named wp-config-sample. Open this file in a text editor such as Notepad or Wordpad. When you open the file you&#8217;ll see some text, much of which looks like gibberish, but it&#8217;s not. Look specifically for the lines that read:</p>
<blockquote><p>define(&#8217;DB_NAME&#8217;, &#8216;wordpress&#8217;);    // The name of the database<br />
define(&#8217;DB_USER&#8217;, &#8216;username&#8217;);     // Your MySQL username<br />
define(&#8217;DB_PASSWORD&#8217;, &#8216;password&#8217;); // &#8230;and password<br />
define(&#8217;DB_HOST&#8217;, &#8216;localhost&#8217;);    // 99% chance you won&#8217;t need to change this value</p></blockquote>
<p>This is the place to enter the database information you saved from the previous step. So whatever the database name is, enter that information in place of &#8216;wordpress.&#8217; Just be sure to <strong>leave the &#8216; marks before and after as it appears above</strong>. Do the same for the DB_USER, DB_PASSWORD and DB_HOST. When you&#8217;re done, save the file, but save it as wp-config.php rather than wp-config-sample.</p>
<p><strong>8. Upload WordPress to Your Server </strong></p>
<p>Okay. We&#8217;re in the homestretch. The next thing you want to do is copy the entire WordPress program from your computer to you host&#8217;s server. So, first, open your FTP program and connect to your host&#8217;s server. Back in step 5, you tracked down your FTP information. If you haven&#8217;t already entered it into your FTP program, go ahead and do that now. Again, you&#8217;ll need to enter you domain name, your user name and your password. After you enter the information, go ahead and connect to your host&#8217;s server.</p>
<p>At this point, you&#8217;ll need to make a decision about where you&#8217;ll place your WordPress program. You can put it in, either, the root directory of your host server or a sub-directory. Personally, I place mine in a subdirectory because I run several different websites on the same server, and it just makes things a lot easier by keeping them separate. After you make your decision, go ahead and upload all the files and directories located in the WordPress folder you unzipped to you desktop, excluding the folder itself.</p>
<p><strong>9. Run the WordPress Install Script</strong></p>
<ul>
<li>If you installed WordPress in the root directory of your server, open your web browser and type the following: <em>http://www.mydomain.com/wp-admin/install.php</em> (replace &#8220;mydomain.com&#8221; with your own domain name).</li>
</ul>
<ul>
<li>If you installed WordPress in a sub-directory, open your web browser and type the following: <em>http://www.mydomain.com/subdirectory/wp-admin/install.php</em> (replace &#8220;mydomain.com&#8221; with your own domain name and &#8220;subdirectory&#8221; with the name of the sub-directory you created).</li>
</ul>
<p>After you go to this page, WordPress will do the rest. Just follow the onscreen directions, and then you&#8217;ll be all done.</p>
<p><strong>Update: You may have one final step</strong>. See <a href="http://www.solostream.com/2007/02/25/lesson-12-download-and-install-wordpress-on-your-server/#comment-64948">this comment</a> from <a href="http://www.theworldforgot.com/">Billy</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.solostream.com/2007/02/25/lesson-12-download-and-install-wordpress-on-your-server/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Video: Introduction to WordPress</title>
		<link>http://www.solostream.com/2006/10/30/video-introduction-to-wordpress/</link>
		<comments>http://www.solostream.com/2006/10/30/video-introduction-to-wordpress/#comments</comments>
		<pubDate>Mon, 30 Oct 2006 13:32:21 +0000</pubDate>
		<dc:creator>Michael Pollock</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Video]]></category>

		<category><![CDATA[WordPress]]></category>

	<!-- AutoMeta Start -->
	<category>video</category>
	<category>wordpress</category>
	<category>blog design</category>
	<category>flash</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.solostream.com/2006/10/30/video-introduction-to-wordpress/</guid>
		<description><![CDATA[I&#8217;m doing a little experimentation with streaming video on a WordPress site. As part of that experimentation, I created a brief video introduction to WordPress. I think it&#8217;s like 15 minutes long. I&#8217;d like to know if you have any problems viewing the video, so please share via the comments link. Thanks!

]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m doing a little experimentation with streaming video on a WordPress site. As part of that experimentation, I created a brief video introduction to WordPress. I think it&#8217;s like 15 minutes long. I&#8217;d like to know if you have any problems viewing the video, so please share via the comments link. Thanks!<span id="more-792"></span></p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" width="540" height="424" id="myMovieName"><param name="movie" value="http://www.solostream.com/video/WordpressDemo.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#fffffff" /><param name="play" value="false" /><param name="menu" value="true" /><embed src="http://www.solostream.com/video/WordpressDemo.swf" quality="high" bgcolor="#ffffff" width="540" height="424" name="myMovieName" play="false" menu="true" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.solostream.com/2006/10/30/video-introduction-to-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Set up a VideoBlog Part Deux (Or How to Easily Add Quicktime Video to Your WordPress Site</title>
		<link>http://www.solostream.com/2006/09/20/set-up-a-videoblog-part-deux-or-how-to-easily-add-quicktime-video-to-your-wordpress-site/</link>
		<comments>http://www.solostream.com/2006/09/20/set-up-a-videoblog-part-deux-or-how-to-easily-add-quicktime-video-to-your-wordpress-site/#comments</comments>
		<pubDate>Wed, 20 Sep 2006 23:33:12 +0000</pubDate>
		<dc:creator>Michael Pollock</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[WordPress]]></category>

	<!-- AutoMeta Start -->
	<category>quicktime</category>
	<category>videos</category>
	<category>flash</category>
	<category>tutorial</category>
	<category>quicktags</category>
	<category>wordpress</category>
	<category>howto</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.solostream.com/2006/09/20/set-up-a-videoblog-part-deux-or-how-to-easily-add-quicktime-video-to-your-wordpress-site/</guid>
		<description><![CDATA[My <a href="http://www.solostream.com/2006/08/05/set-up-a-video-blog-or-how-to-add-flash-video-to-your-wordpress-site/">tutorial on adding Flash video to your Worpdress site</a> was pretty popular ... this tutorial is designed to make it easy for you to add Quicktime video to your WordPress site.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" id="image773" src="http://www.solostream.com/wp-content/uploads/2006/09/vidblogs.gif" alt="vidblogs.gif" />My <a href="http://www.solostream.com/2006/08/05/set-up-a-video-blog-or-how-to-add-flash-video-to-your-wordpress-site/">tutorial on adding Flash video to your Worpdress site</a> was pretty popular. The only problem is Flash video tends to be lower quality than <a href="http://www.apple.com/quicktime/win.html">Quicktime</a> video. So this tutorial is designed to make it easy for you to add Quicktime video to your WordPress site.</p>
<p>Besides the quality issue, there are other benefits to using Quicktime over Flash. First of all, Quicktime video is the file-format-of-choice for video blogs. In other words, people with video iPods and Quicktime-compatible, portable video players can download the video automatically, just like you would a regular podcast. And from what I understand, that&#8217;s not the case with Flash video (correct me if I&#8217;m wrong). <span id="more-772"></span></p>
<p>You&#8217;ll notice, most of the popular videoblogs, such as <a href="http://rocketboom.com">Rocketboom</a>, <a href="http://realverse.com">RealVerse</a> and (my new favorite) the <a href="http://cleverparents.com/category/multimedia">Clever Parents Vidcast</a>, aren&#8217;t using Flash. They&#8217;re using QT. </p>
<p>Another benefit is if your video camera records to the QT format, like mine, you can skip the step where you convert your QT video to Flash format. And finally, unlike the Flash tutorial, you won&#8217;t have to download and install a media player on your server because many people already have Quicktime installed on their system. For those who don&#8217;t, it&#8217;s a quick and simple download.</p>
<p><strong>A quick note before we move forward</strong>. There are several ways to do what I&#8217;m showing you here. There are numerous plugins you can install, for example, but the method below seemed to me to be the simplest. So, without further banter, here&#8217;s the tutorial.</p>
<p><strong>Note: This only works if you ARE NOT using the visual rich editor</strong>, also known as the WYSIWYG editor, to write your posts. If you are using the WYSIWYG editor, I&#8217;d suggest you not use it as it tends to mess things up a bit. To turn off the WYSIWYG editor, visit your profile page and uncheck the box that says &#8220;Use the visual rich editor when writing&#8221; in the bottom left corner of the page.</p>
<h2>Step 1: Assemble Your Tools</h2>
<p><strong>1. A WordPress Blog/Site</strong>. Okay, so you probably already have this part covered. If not, <a href="http://www.solostream.com/2006/01/17/lesson-12-download-and-install-wordpress-on-your-server/">this tutorial</a> will show you how to download and install WordPress on your own server.</p>
<p><a class="imagelink" href="http://www.solostream.com/wp-content/uploads/2006/09/write.gif" title="write.gif"><img class="alignright" id="image774" src="http://www.solostream.com/wp-content/uploads/2006/09/write.thumbnail.gif" alt="write.gif" /></a><strong>2. Download, install and activate the <a href="http://roel.meurders.nl/wordpress-plugins/wp-addquicktag-plugin-for-adding-quicktags/">WP-AddQuickTag</a> Plugin</strong>. This is an excellent little plugin created by Roel Meurders. It gives you the ability to create new quicktags above the standard WordPress post box. Click on the graphic to the right, and you&#8217;ll see what I mean. We&#8217;ll be adding a button that will instantly add the code you need to embed a Quicktime video into a blog post.</p>
<p><strong>Update 03/28/07: The WP-AddQuickTag plugin referenced above does not work with WordPress 2.1. However, there is another version that I&#8217;ve found effective with WP 2.1. Get it here: <a href="http://www.mikebrowne.com/wp/?p=3">www.mikebrowne.com/wp/?p=3</a></strong></p>
<h2>Step 2: Add The Quicktag to Your Write Post Page</h2>
<p>After you&#8217;ve installed and activated the WP-AddQuickTag plugin, click the &#8220;Options&#8221; tab from your WordPress control panel. When you get to the Options page, you&#8217;ll see another menu beneath the main navigation bar. You want to click the &#8220;Add QuickTags&#8221; link (see below).</p>
<p><img id="image775" src="http://www.solostream.com/wp-content/uploads/2006/09/controlpanel.gif" alt="controlpanel.gif" style="float:left" /></p>
<p style="clear:both">Once you get to the WP-Quicktag Management page, you&#8217;ll see three fields labled as follows: Buttontext, Start tag(s) and End tag(s). We&#8217;re only interested in the Buttontext field and the StartTag Field (see below).</p>
<p><img id="image776" src="http://www.solostream.com/wp-content/uploads/2006/09/qt2.gif" alt="qt2.gif" style="float:left" /> </p>
<p style="clear:both"><strong>In the field for ButtonText, enter the following</strong>:<br />
Insert QT Movie</p>
<p><strong>In the field for Start tag(s), enter the following</strong>:<br />
<code>&lt;object classid=&quot;clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B&quot; codebase=&quot;http://www.apple.com/qtactivex/qtplugin.cab&quot; height=&quot;256&quot; width=&quot;320&quot;&gt;&lt;param name=&quot;src&quot; value=&quot;/videos/movie.mov&quot;&gt;&lt;param name=&quot;autoplay&quot; value=&quot;false&quot;&gt;&lt;param name=&quot;type&quot; value=&quot;video/quicktime&quot; height=&quot;256&quot; width=&quot;320&quot;&gt;&lt;embed src=&quot;/videos/movie.mov&quot; height=&quot;256&quot; width=&quot;320&quot; autoplay=&quot;false&quot; type=&quot;video/quicktime&quot; pluginspage=&quot;http://www.apple.com/quicktime/download/&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</code></p>
<p><strong>Leave all other fields blank, and then click the Update Options button</strong>.</p>
<h2>Step 3 - Publish Your Video</h2>
<p><strong>1. Make sure your video is in Quicktime format</strong>. Quicktime videos have the file extension <em>.mov</em>. </p>
<p><strong>2. Upload your video (via FTP) to your server</strong>. If you need an FTP program, I use <a href="http://www.smartftp.com/download/">SmartFTP</a>, which is only compatible with Windows machines. If you use a Mac, I hear <a href="http://www.fetchsoftworks.com/">Fetch</a> is a pretty cool FTP program, but I&#8217;m sure some of you Macheads have other options. </p>
<p>It&#8217;s crucial that when you upload your videos, you store them in a subdirectory called &#8220;videos.&#8221; If you want to store them in a different directory, you&#8217;ll have to change the code above that reads &#8220;<strong>/videos/movie.mov</strong>.&#8221; For example, if you store your videos in the root directory of your site, you&#8217;d want the code to read simple &#8220;/movie.mov.&#8221;  </p>
<p><strong>3. Write a new Worpdress post containing the code for your video</strong>. Now that you&#8217;ve uploaded your video, you want to write a new post. Enter a title for the post as you normally would. Just below the field for your post title, you should see the quicktag we created. It&#8217;s labled &#8220;Insert QT Movie.&#8221; Click that tag/button. When you clcik the quicktag, the code for your video will pop up in your post field.</p>
<p><a class="imagelink" href="http://www.solostream.com/wp-content/uploads/2006/09/wp.gif" title="wp.gif"><img class="alignright" id="image777" src="http://www.solostream.com/wp-content/uploads/2006/09/wp.thumbnail.gif" alt="wp.gif" /></a><strong>4. Change the default name of your movie</strong>. The quick tag will automatically insert the movie name as &#8220;/videos/movie.mov.&#8221; So you&#8217;ll need to change that to whatever name you gave your movie. Click the graphic to the right, and you&#8217;ll see I&#8217;ve highlighted the quicktag itself, as well as the movie name (in two places). You have to change the movie name in both places. For example, if you gave your movie the filename &#8220;mymovie.mov,&#8221; you should change the highlighted code to &#8220;/videos/mymovie.mov&#8221; without the quotations, of course. </p>
<p>And that should do it. If you try this out, shoot me a message an let me know about it. I&#8217;d like ot make sure it works as easily as it should.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.solostream.com/2006/09/20/set-up-a-videoblog-part-deux-or-how-to-easily-add-quicktime-video-to-your-wordpress-site/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Set up a Video Blog (or How to Add Flash Video to Your WordPress Site)</title>
		<link>http://www.solostream.com/2006/08/05/set-up-a-video-blog-or-how-to-add-flash-video-to-your-wordpress-site/</link>
		<comments>http://www.solostream.com/2006/08/05/set-up-a-video-blog-or-how-to-add-flash-video-to-your-wordpress-site/#comments</comments>
		<pubDate>Sun, 06 Aug 2006 02:31:23 +0000</pubDate>
		<dc:creator>Michael Pollock</dc:creator>
		
		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[WordPress]]></category>

	<!-- AutoMeta Start -->
	<category>riva</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.solostream.com/2006/08/05/set-up-a-video-blog-or-how-to-add-flash-video-to-your-wordpress-site/</guid>
		<description><![CDATA[So you want to create the next Rocketboom (video blog). Or perhaps you have some video you want to add to your WordPress blog or website. This tutorial shows you how to do it with WordPress.]]></description>
			<content:encoded><![CDATA[<p><strong>So you want to create the next <a href="http://www.rocketboom.com">Rocketboom</a> (video blog)</strong>. Or perhaps you have some video you want to add to your WordPress blog or website. Maybe it&#8217;s a video of last year&#8217;s Christmas party, a business conference you attended or the kids&#8217; soccer game. </p>
<p><strong>Maybe you have a business site and want to provide some video for customers and/or potential customers</strong>. For example, when I designed a site for Hi-Way Campers, an RV dealer, I included video walk-through tours of some of the RVs for folks who started their RV shopping online (see an example <a href="http://www.hiwaycampers.com/2006/02/23/2006-chariot-eagle-model-464/">here</a>). Website video would also be great for restaurants, conference facilities, hotels, resorts, real estate brokers or anyone with a product people need to see. <span id="more-716"></span></p>
<p><strong>Whatever your reason for wanting to add video to your site, it&#8217;s pretty easy with WordPress and a couple of other tools</strong>. Before anyone else mentions it, let me say at the outset that sites like <a href="http://youtube.com/">YouTube</a>, <a href="http://www.vimeo.com/">Vimeo</a>, <a href="http://video.google.com/">Google Video</a> and the like also make it pretty easy to upload and share video. If, however, you&#8217;re a tad paranoid like me and you&#8217;d rather not rely on another service (who may insert ads into your video at some point) to help you share your video with the world, this tutorial is for you.</p>
<h3>Step One: Gather Your Tools</h3>
<p><strong>1. A WordPress Blog/Site</strong> - Okay, so you probably already have this part covered. If not, <a href="http://www.solostream.com/2006/01/17/lesson-12-download-and-install-wordpress-on-your-server/">this tutorial</a> will show you how to download and install WordPress on your own server.</p>
<p><strong>2. Download, install and activate the WP-FLV Plugin</strong> - This is an <a href="http://roel.meurders.nl/wordpress-plugins/wp-flv-video-player-plugin/">excellent little plugin created by Roel Meurders</a>. It greatly simplifies the task of inserting flash video into your WordPress site. </p>
<p><strong>Download the wp-flv.txt file from Roel&#8217;s site and change the file name to wp-flv.php</strong>. Next you&#8217;ll need to open your favorite <a href="http://www.smartftp.com/">FTP program</a> and add the wp-flv.php file to your <strong>wp-content/plugins</strong> directory. Finally, visit the Plugin managment page on your WordPress site, and activate the WP-FLV plugin.</p>
<p><strong>3. Download and install a free Flash video player</strong>. If people are going watch videos on your site, you&#8217;ll need to embed a Flash video player for them to use (don&#8217;t worry, it&#8217;s not as difficult as it may sound). </p>
<blockquote><p>As a brief side note before we go further, the other way to distribute video is via <strong>download</strong>. In other words, you could simply link to the video file in your blog post, and allow folks to download the file to their own computer. A true video blog also distributes video via RSS feed. In that case folks use a piece of software called a podcatcher to receive new videos. The podcatcher software (e.g. <a href="http://www.itunes.com">iTunes</a>, <a href="http://juicereceiver.sourceforge.net/">Juice</a>, <a href="http://www.newsgator.com/NGOLProduct.aspx?ProdID=FeedStation">Newsgator</a>, etc) automatically detects and downloads new videos for its user. This particular tutorial is geared more toward what&#8217;s known as &#8220;streaming video,&#8221; in which case someone visits your site and watches the video while there. So let&#8217;s move on. </p></blockquote>
<p><strong>Visit Jeroen Wijering&#8217;s site, and download his <a href="http://www.jeroenwijering.com/?item=Flash_Video_Player">Flash Video Player 2.4</a></strong>. The player downloads as a zip file, so you&#8217;ll need to use your favorite unzip program to unzip it.  If you don’t have an unzip feature already installed on your computer, you can download a free program called <a href="http://www.stuffit.com/win/expander/">Stuffit Expander</a> (for PC or Mac). After you unzip the file, you&#8217;ll end up with a folder named: <strong>flash_flv_player</strong>.</p>
<p><strong>Next, you&#8217;ll need to upload the Flash player to your website</strong>. The actual file name you&#8217;re looking for is <strong>flvplayer.swf</strong>. You&#8217;ll find it in the unzipped flash_flv_player folder. Again, FTP that file over to your website. <strong>I strongly suggest</strong> you create a folder named &#8220;videos&#8221; within your main WordPress folder, and copy the flvplayer.swf file into that folder. This is also the folder into which you&#8217;ll need to place your video files once you have them ready (more on that later). <strong>If the video files and video player are not in the same folder/directory, this won&#8217;t work</strong>.</p>
<h3>Step Two: Create Your Video</h3>
<p>Now that you have everything in place to play videos from your WordPress site, the next thing to do is actually create and publish your videos. Again, you&#8217;ll need some tools for this part as well. Before we get to that, however, lets talk about file formats.</p>
<p><strong>The Flash Video Player you just installed will only play Flash Videos</strong>, which have a file name that looks like this: <strong>filename.flv</strong> (notice the .flv file extension). If your digital video camera is anything like mine, it will probably create video files in what&#8217;s known as Quicktime format. Quicktime files have the file extension .mov. So you&#8217;ll have to convert those files to the .flv format. Again, this is much easier than it sounds, and that brings us to the next free tool you&#8217;ll need.</p>
<p><a class="imagelink" href="http://www.solostream.com/wp-content/uploads/2006/08/riva.gif" title="riva.gif"><img id="image718" src="http://www.solostream.com/wp-content/uploads/2006/08/riva.gif" alt="riva.gif" height="96" width="106" style="float:right" /></a><strong>1. Download the free Riva FLV Encoder</strong>. This is a cool little program that will convert various file types (e.g. .mov, .avi, mp4) into the .flv format. You can download the program <a href="http://www.rivavx.com/index.php?encoder&#038;L=3">here</a>. </p>
<p><strong>The Riva Encoder is pretty intuitive to use</strong>. There&#8217;s a box for you to enter the file you want to convert, and there&#8217;s the &#8220;Encode&#8221; button (click the graphic to the right for a larger view). On the right, you can set some of the parameters for the output video, such as size and quality. I use a file size 320&#215;240, but you can decide what size you prefer. As for teh other parameters, I simply use the default settings, but again, you may want to experiment with different ones. After you&#8217;ve converted your video to the .flv format, you simply need to FTP it into the same folder/directory where your Flash video player is installed (see above).</p>
<p>We&#8217;re in the home stretch. Just one more step.</p>
<h3>Step Three: Publish Your Video</h3>
<p>Again this part is pretty easy. It&#8217;s as simple as writing a new post on your WordPress site. In fact, that&#8217;s all it is &#8230; with one little twist. Before we get to that, however, you need to set the correct parameters for the WP-FLV plugin we installed up in step one. </p>
<p><strong>So, login to your WordPress site, and click on the Options tab</strong>. In the submenu, you&#8217;ll see a tab that says &#8220;WP-FLV.&#8221; Click on it. In the top box, you need to tell WordPress where the Flash video player is located. If you followed my directions above, all you need to enter in this first box is: http://www.yourwordpresssite.com/video/flvplayer.swf (just change the &#8220;yourwordpresssite.com&#8221; portion to whatever your is). </p>
<p><a class="imagelink" href="http://www.solostream.com/wp-content/uploads/2006/08/flv.gif" title="flv.gif"><img id="image719" src="http://www.solostream.com/wp-content/uploads/2006/08/flv.thumbnail.gif" alt="flv.gif" height="84" width="128" style="float:right" /></a><strong>Click the graphic to the right</strong>, and you&#8217;ll see the other settings you need to set. In the &#8220;Default movie size&#8221; box, make sure you use the same size you used when you converted your videos with the Riva Encoder above. After you enter your setting, click the &#8220;Update Options&#8221; at the bottom.</p>
<p><strong>There&#8217;s one more thing to take care of before you publish your first video</strong>. The WP-FLV plugin only works if you&#8217;re NOT using the WordPress WYSIWYG or &#8220;Rich Text&#8221; editor. So, click on the Users tab from the top menu. At the bottom left of your profile, you&#8217;ll see a checkbox with the phrase &#8220;Use the visual rich editor when writing&#8221; next to it. Make sure this box IS NOT checked. If it is, uncheck it, and click the &#8220;Update Options&#8221; button. After that, you&#8217;re ready to publish your first video.</p>
<p><strong>Click on the Write tab from the main menu to create a new post</strong>. Just above the Post box, you&#8217;ll see a quicktag that says &#8220;FLV.&#8221; Click that button. This will open a new box that asks you for the file name of your video. It will probably already have &#8220;/video&#8221; in the box, so all you have to do is add the video&#8217;s file name after so it&#8217;ll end up like this /video/filename.flv. </p>
<p><strong>The next series of boxes that come up should be filled in by default</strong>. The final box will ask &#8220;Do you want this video to start playing automatically?&#8221; Just click the cancel button because you DON&#8217;T want the video to start playing automatically (there&#8217;s nothing more annoying than going to a site and immediately some strange video starts playing in your face). </p>
<p><strong>After you click the cancel button</strong>, you&#8217;ll end up with something in your post box that looks like this: [flv href="/video/filename.flv" width="320" height="240" autostart="false" /]. If you want to also write some commentary on the video, you can do that as well. If not, just click the publish button, and you&#8217;re all done.</p>
<p>And that&#8217;s it. You now have a video blog (minus the RSS video distribution). If you do use this tutorial to add video to your site, I&#8217;d love to hear your feedback, and see your site, so please shoot me an email or leave a comment on this post. Likewise, if you have troubles, share those as well, and I&#8217;ll try to help you get them sorted out. Happy Vlogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.solostream.com/2006/08/05/set-up-a-video-blog-or-how-to-add-flash-video-to-your-wordpress-site/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Add New Pages to Your WordPress Site, Including a Contact Page</title>
		<link>http://www.solostream.com/2006/05/16/lesson-32-how-to-add-new-pages-including-a-contact-page/</link>
		<comments>http://www.solostream.com/2006/05/16/lesson-32-how-to-add-new-pages-including-a-contact-page/#comments</comments>
		<pubDate>Tue, 16 May 2006 14:42:08 +0000</pubDate>
		<dc:creator>Michael Pollock</dc:creator>
		
		<category><![CDATA[Blog Design]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[WordPress]]></category>

	<!-- AutoMeta Start -->
	<category>pages</category>
	<category>lesson</category>
	<category>page</category>
	<category>feedback</category>
	<category>plugin</category>
	<category>wordpress</category>
	<category>create</category>
	<category>install</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.solostream.com/2006/05/16/lesson-32-how-to-add-new-pages-including-a-contact-page/</guid>
		<description><![CDATA[In this lesson, I show you how to install a plugin that'll help create an email feedback page for your site. In the process, you'll also learn how to create new pages for your WordPress site.]]></description>
			<content:encoded><![CDATA[<p>In this lesson, I show you how to install a plugin that&#8217;ll help create an email feedback page for your site. In the process, you&#8217;ll also learn how to create new pages for your WordPress site.</p>
<p>The video fo this lesson is about 16 minutes long, and you can download it <a href="http://www.solostream.com/video/createpages.avi"><strong>here</strong></a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.solostream.com/2006/05/16/lesson-32-how-to-add-new-pages-including-a-contact-page/feed/</wfw:commentRss>
<enclosure url="http://www.hackingkubrick.com/createpages.avi" length="73715200" type="video/x-msvideo" />
<enclosure url="http://www.solostream.com/video/createpages.avi" length="18841004" type="video/x-msvideo" />
		</item>
		<item>
		<title>More Work on the Kubrick Sidebar and Main Content Area</title>
		<link>http://www.solostream.com/2006/05/16/lesson-25-more-work-on-the-sidebar-and-main-content-area/</link>
		<comments>http://www.solostream.com/2006/05/16/lesson-25-more-work-on-the-sidebar-and-main-content-area/#comments</comments>
		<pubDate>Tue, 16 May 2006 14:32:52 +0000</pubDate>
		<dc:creator>Michael Pollock</dc:creator>
		
		<category><![CDATA[Blog Design]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[WordPress]]></category>

	<!-- AutoMeta Start -->
	<category>sidebar</category>
	<category>area</category>
	<category>widen</category>
	<category>lesson</category>
	<category>main</category>
	<category>runs</category>
	<category>pages</category>
	<category>move</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.solostream.com/2006/05/16/lesson-25-more-work-on-the-sidebar-and-main-content-area/</guid>
		<description><![CDATA[In this lesson, we move the sidebar a little more, widen the main content area, and add the sidebar to all the other pages on your site.
The video for this lesson runs about 8 minutes, and you can download here.
]]></description>
			<content:encoded><![CDATA[<p>In this lesson, we move the sidebar a little more, widen the main content area, and add the sidebar to all the other pages on your site.</p>
<p>The video for this lesson runs about 8 minutes, and you can download <strong><a href="http://www.solostream.com/video/sidebarmove.avi">here</a></strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.solostream.com/2006/05/16/lesson-25-more-work-on-the-sidebar-and-main-content-area/feed/</wfw:commentRss>
<enclosure url="http://www.hackingkubrick.com/sidebarmove.avi" length="43787776" type="video/x-msvideo" />
		</item>
		<item>
		<title>How to Move and Change the WordPress Sidebar</title>
		<link>http://www.solostream.com/2006/05/16/lesson-24-how-to-move-and-change-the-sidebar/</link>
		<comments>http://www.solostream.com/2006/05/16/lesson-24-how-to-move-and-change-the-sidebar/#comments</comments>
		<pubDate>Tue, 16 May 2006 14:28:05 +0000</pubDate>
		<dc:creator>Michael Pollock</dc:creator>
		
		<category><![CDATA[Blog Design]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[WordPress]]></category>

	<!-- AutoMeta Start -->
	<category>sidebar</category>
	<category>manipulate</category>
	<category>lesson</category>
	<category>internal</category>
	<category>move</category>
	<category>change</category>
	<category>page</category>
	<category>continue</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.solostream.com/2006/05/16/lesson-24-how-to-move-and-change-the-sidebar/</guid>
		<description><![CDATA[In this lesson, we continue to manipulate the internal page structure. I show you how to change the sidebar content and background, as well as move it from one side of the page to the other.
The video for this lesson runs about 12 minutes, and you can download it here.
]]></description>
			<content:encoded><![CDATA[<p>In this lesson, we continue to manipulate the internal page structure. I show you how to change the sidebar content and background, as well as move it from one side of the page to the other.</p>
<p>The video for this lesson runs about 12 minutes, and you can download it <a href="http://www.solostream.com/video/pagestructure2.avi"><strong>here</strong></a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.solostream.com/2006/05/16/lesson-24-how-to-move-and-change-the-sidebar/feed/</wfw:commentRss>
<enclosure url="http://www.hackingkubrick.com/pagestructure2.avi" length="54948352" type="video/x-msvideo" />
		</item>
		<item>
		<title>How to Change the Internal Page Structure of Your WordPress Site</title>
		<link>http://www.solostream.com/2006/05/14/lesson-23-how-to-change-the-internal-page-structure/</link>
		<comments>http://www.solostream.com/2006/05/14/lesson-23-how-to-change-the-internal-page-structure/#comments</comments>
		<pubDate>Sun, 14 May 2006 22:27:23 +0000</pubDate>
		<dc:creator>Michael Pollock</dc:creator>
		
		<category><![CDATA[Blog Design]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[WordPress]]></category>

	<!-- AutoMeta Start -->
	<category>change</category>
	<category>lesson</category>
	<category>page</category>
	<category>clicking</category>
	<category>expand</category>
	<category>header</category>
	<category>sidebar</category>
	<category>runs</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.solostream.com/2006/05/14/lesson-23-how-to-change-the-internal-page-structure/</guid>
		<description><![CDATA[In this lesson, I show you how to change change the size of the header and sidebar, as well as expand the overall page width. You&#8217;ll also learn a little more about the page layout of a WordPress page.
The video for this lesson runs about 12 minutes, and you can download it by clicking here.
]]></description>
			<content:encoded><![CDATA[<p>In this lesson, I show you how to change change the size of the header and sidebar, as well as expand the overall page width. You&#8217;ll also learn a little more about the page layout of a WordPress page.</p>
<p>The video for this lesson runs about 12 minutes, and you can download it by clicking <a href="http://www.solostream.com/video/pagestructure.avi"><strong>here</strong></a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.solostream.com/2006/05/14/lesson-23-how-to-change-the-internal-page-structure/feed/</wfw:commentRss>
<enclosure url="http://www.hackingkubrick.com/pagestructure.avi" length="79071744" type="video/x-msvideo" />
		</item>
		<item>
		<title>How to Add a Statistics Tracker to Your WordPress Site</title>
		<link>http://www.solostream.com/2006/05/14/lesson-31-how-to-add-a-statistics-tracker-to-your-wordpress-site/</link>
		<comments>http://www.solostream.com/2006/05/14/lesson-31-how-to-add-a-statistics-tracker-to-your-wordpress-site/#comments</comments>
		<pubDate>Sun, 14 May 2006 18:56:10 +0000</pubDate>
		<dc:creator>Michael Pollock</dc:creator>
		
		<category><![CDATA[Blog Design]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[WordPress]]></category>

	<!-- AutoMeta Start -->
	<category>meter</category>
	<category>statistics</category>
	<category>lesson</category>
	<category>visiting</category>
	<category>referral</category>
	<category>install</category>
	<category>site</category>
	<category>clicking</category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.solostream.com/2006/05/14/lesson-31-how-to-add-a-statistics-tracker-to-your-wordpress-site/</guid>
		<description><![CDATA[Site statistics are an important part of managing your WordPress site. At the very least, you&#8217;ll want to know how many people are visiting your site and where those people are coming from, whether it be from a search engine or referral from another site.
There are many different site statistics programs out there, but one [...]]]></description>
			<content:encoded><![CDATA[<p>Site statistics are an important part of managing your WordPress site. At the very least, you&#8217;ll want to know how many people are visiting your site and where those people are coming from, whether it be from a search engine or referral from another site.</p>
<p>There are many different site statistics programs out there, but one of the simplest to install and use is <a href="http://www.sitemeter.com">Site Meter</a>. In this brief lesson, I show you how to set up your Site Meter account and install it on your WordPress site.</p>
<p>The video for this lesson runs about 7 minutes, and you can download it by clicking <a href="http://www.solostream.com/video/wpstats.avi"><strong>here</strong></a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.solostream.com/2006/05/14/lesson-31-how-to-add-a-statistics-tracker-to-your-wordpress-site/feed/</wfw:commentRss>
<enclosure url="http://www.hackingkubrick.com/wpstats.avi" length="19173376" type="video/x-msvideo" />
		</item>
	</channel>
</rss>
