<?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>FreshSubject</title>
	<atom:link href="http://www.freshsubject.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.freshsubject.com</link>
	<description>Blog</description>
	<lastBuildDate>Wed, 07 Oct 2009 14:11:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Search Engine Optimization Guide For Clipshare cont</title>
		<link>http://www.freshsubject.com/search-engine-optimization-guide-for-clipshare-cont/</link>
		<comments>http://www.freshsubject.com/search-engine-optimization-guide-for-clipshare-cont/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 13:13:09 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Clipshare]]></category>
		<category><![CDATA[clipshare seo]]></category>
		<category><![CDATA[Forbidden]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.freshsubject.com/?p=278</guid>
		<description><![CDATA[
This post continues on from my previous one here.  I broke it down so that it would not be so overwhelming for new comers to Clipshare to understand, please if you haven&#8217;t read the first part and want to know how to improve the SEO on your clipshare based video site please read part1 [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.freshsubject.com/search-engine-optimization-guide-for-clipshare-cont/" title="Permanent link to Search Engine Optimization Guide For Clipshare cont"><img class="post_image alignleft frame" src="http://www.freshsubject.com/wp-content/uploads/2009/10/seo_guide.jpg" width="250" height="200" alt="search engine guide for clipshare part2" /></a>
</p><p>This post continues on from my previous one here.  I broke it down so that it would not be so overwhelming for new comers to Clipshare to understand, please if you haven&#8217;t read the <a href="http://www.freshsubject.com/search-engine-optimization-guide-for-clipshare/">first part</a> and want to know how to improve the SEO on your clipshare based video site please read <a href="http://www.freshsubject.com/search-engine-optimization-guide-for-clipshare/">part1</a> before continuing with this post.</p>
<h3>It&#8217;s time to setup your channel detail pages</h3>
<p><em>Step5 &#8211; the channel detail pages explained</em></p>
<p>In the clipshare siteadmin we can add a description for our channel, this is a great opportunity to add a lengthy, keyword rich relevant description that will provide both readers and search engines a guide to the videos which will be in this category (channel).  So to do this we first need to create a channel specific header tpl file. In this case we will call it head_cat.tpl to first copy the head_seo.tpl file and rename to head_cat.tpl</p>
<p>Once copied, change;</p>
<pre>
&lt;title&gt;{$meta_title}&lt;/title&gt;
&lt;meta name="description" content="{$meta_description}" /&gt;
&lt;meta name="keywords" content="{$meta_keywords}" /&gt;
</pre>
<p>To:</p>
<pre>
&lt;title&gt;{$answers[0].name} Videos | sitename&lt;/title&gt;
&lt;meta name="description" content="{$answers[0].descrip|truncate:160}" /&gt;
&lt;meta name="keywords" content="{$answers[0].name|lower} videos, free {$answers[0].name|lower} videos, watch {$answers[0].name|lower} videos" /&gt;
</pre>
<p>So what this means is that each channel will have a different title, description and keywords.</p>
<p>For example if i had a Manchester United channel the above would translate to;</p>
<p><strong>Title</strong> &#8211; <em>Manchester United Videos | My Site name</em><br />
<strong>Description</strong> &#8211; <em>Watch all the latest manchester united football videos here with videos featuring micheal owen, alan shearer and blah blah blah blah&#8230;.</em><br />
<strong>Keywords</strong> &#8211; <em>Manchester United videos, free manchester united videos, watch manchester united videos</em></p>
<p>next we need to edit the channels_detail.php page to call the new head_cat.tpl instead of it&#8217;s original head1.tpl.  To do this open up channels_detail.php and change;</p>
<pre>STemplate::display('head1.tpl');</pre>
<p>To:</p>
<pre>STemplate::display('head_cat.tpl');</pre>
<p>Then upload.</p>
<p>So how are these generated? Well when you create a channel in the clipshare siteadmin, you are requested to enter a name for the chanel (title) and a channel description, the above code then uses that title and description to create unique page titles, description and keywords.</p>
<h3>Adding unique content to your channels detail page</h3>
<p><em>Step6 &#8211; Going that step further and adding unique content to your page</em></p>
<p>Before we&#8217;ve talked about adding unique page titles and descriptions, step6 takes your channel description and adds it straight onto the page creating some unique content for both the user and search engines.  This step is optional and the following example will only work for theme&#8217;s in the Freshpack series &#8211; Allowed and Forbidden.  If there is demand i&#8217;ll add the code to achieve the same result in the default themes from clipshare.</p>
<p>Open up channel_detail.tpl file in your editor and add;</p>
<pre>
&lt;div class="mainBoxTitle"&gt;
&lt;h1 class="mainBoxHeader"&gt;{$answers[0].name} Videos&lt;/h1&gt;
&lt;/div&gt;
&lt;p class="catInfo">{$answers[0].descrip}&lt;/p&gt;
&lt;/div&gt;
</pre>
<p>What this does is add unique content to the channel_detail page itself via the descrip call which is the channel&#8217;s description, we also surround the channel name with h1 tags as it is the pages title.</p>
<p>If you would like some examples and css stylings for step6 let me know.</p>
<h3>Lets index the tag pages with unique titles and descriptions</h3>
<p><em>Step7 &#8211; How to index your tag pages correctly</em></p>
<p>In step7, which is optional &#8211; we will discuss how to create our tag pages with unique titles and descriptions.  If you&#8217;ve decided not to index your tag pages then please do not do this step.</p>
<p>Create a new head_search.tpl from copying your head_seo.tpl file and change;</p>
<pre>&lt;title&gt;{$meta_title}&lt;/title&gt;
&lt;meta name="description" content="{$meta_description}" /&gt;
&lt;meta name="keywords" content="{$meta_keywords}" /&gt; </pre>
<p>To:</p>
<pre>&lt;title&gt;{$smarty.request.search_id|escape:'html'} Videos&lt;/title&gt;
&lt;meta name="description" content="A comprehensive and detailed list of {$smarty.request.search_id|escape:'html'} videos from sitename" /&gt;
&lt;meta name="keywords" content="{$smarty.request.search_id|escape:'html'} videos, free {$smarty.request.search_id|escape:'html'} videos, amazing {$smarty.request.search_id|escape:'html'} videos, fake {$smarty.request.search_id|escape:'html'} videos" /&gt;</pre>
<p>Remember the above it just an example, the </p>
<pre>{$smarty.request.search_id|escape:'html'}</pre>
<p>will display your specific tag, so for instance if your tag was funny then the title of the page would end up being &#8211; &#8220;funny videos&#8221;</p>
<p>Next we edit the search_results.php and change;</p>
<pre>STemplate::display('head1.tpl');</pre>
<p>To:</p>
<pre>STemplate::display('head_search.tpl');</pre>
<p>Save and upload.</p>
<h3>Create a robots.txt file to stop indexing of your chosen pages</h3>
<p><em>Step8 &#8211; A robots.txt file can stop indexing of many inner pages</em></p>
<p>Create a robots.txt file and upload it into your main directory with the following code:</p>
<pre>Disallow:
User-agent: *
# disallow all files in these directories
Disallow: /siteadmin/
Disallow: /cache/
Disallow: /include/
Disallow: /language/
Disallow: /tmp/
Disallow: /ajax/
Disallow: /classes/
Disallow: /templates/
Disallow: /users/
Disallow: /related/
# disallow all files ending with these extensions
Disallow: /add_favour.php
Disallow: /add_video.php
Disallow: /captcha.php
Disallow: /compose.php
Disallow: /compose.php*
Disallow: /confirm_email.php
Disallow: /convert.php
Disallow: /create_group.php
Disallow: /feed_embed.php
Disallow: /ffavour.php
Disallow: /ffavour.php*
Disallow: /friend_accept.php
Disallow: /friends.php
Disallow: /friends.php*
Disallow: /fullscreen.php
Disallow: /fvideos.php
Disallow: /fvideos.php*
Disallow: /inbox.php
Disallow: /inbox.php*
Disallow: /index.php
Disallow: /invite_friends.php
Disallow: /invite_members.php
Disallow: /invite_signup.php
Disallow: /login.php
Disallow: /logout.php
Disallow: /members.php
Disallow: /members.php*
Disallow: /more_tags.php
Disallow: /msg.php
Disallow: /my_favour.php
Disallow: /my_favour.php*
Disallow: /my_playlist.php
Disallow: /my_playlist.php*
Disallow: /my_profile.php
Disallow: /my_vdo_edit.php
Disallow: /my_video.php
Disallow: /my_video.php*
Disallow: /mymail.php
Disallow: /nvplayer.swf*
Disallow: /outbox.php
Disallow: /outbox.php*
Disallow: /pack_ops.php
Disallow: /payment_ops.php
Disallow: /payment.php
Disallow: /pmt_success.php
Disallow: /recent.php
Disallow: /recoverpass.php
Disallow: /renew_account.php
Disallow: /share_video.php
Disallow: /signup.php
Disallow: /signup.php*
Disallow: /terms.php
Disallow: /test.php
Disallow: /ufavour.php
Disallow: /ufavour.php*
Disallow: /ufriends.php
Disallow: /uplaylist.php
Disallow: /uplaylist.php*
Disallow: /upload_success.php
Disallow: /upload.php
Disallow: /uprofile.php
Disallow: /uvideos.php
Disallow: /video.php
Disallow: /view_video.php
Disallow: /view_video.php*
# disallow all files with ? in url
Disallow:  </pre>
<p>The addition of the robots.txt essentially stops search engines from indexing two of the same pages, for instance view_video.php?viewkey=98909890 and /video/90/steven-gerards-goal/ are technically the same page, but we want the latter to be indexed and not the non-seo friendly edition.</p>
<h3>Final tips and information</h3>
<p class="alert">Make sure SEO url&#8217;s are turned on in the siteadmin</p>
<p class="alert">This guide is not an ideal fix as it creates new header files which may increase page loading times slightly, but it is a solution for the time being that anyone can apply</p>
<p>If you enjoyed this post why not comment below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freshsubject.com/search-engine-optimization-guide-for-clipshare-cont/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Search Engine Optimization Guide For Clipshare</title>
		<link>http://www.freshsubject.com/search-engine-optimization-guide-for-clipshare/</link>
		<comments>http://www.freshsubject.com/search-engine-optimization-guide-for-clipshare/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 22:02:48 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Clipshare]]></category>
		<category><![CDATA[Allowed]]></category>
		<category><![CDATA[clipshare seo]]></category>
		<category><![CDATA[Forbidden]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.freshsubject.com/?p=234</guid>
		<description><![CDATA[
Out of the box, Clipshare&#8217;s inbuilt seo leaves alot to be desired &#8211; this guide is an attempt to overcome the main issues of search engine optimization within the clipshare script.  Clipshare essentially has one page that is optimized for search engines, that is the View Video page. Every other page on the website [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.freshsubject.com/search-engine-optimization-guide-for-clipshare/" title="Permanent link to Search Engine Optimization Guide For Clipshare"><img class="post_image alignleft frame" src="http://www.freshsubject.com/wp-content/uploads/2009/10/seo_guide.jpg" width="250" height="200" alt="clipshare seo guide" /></a>
</p><p>Out of the box, Clipshare&#8217;s inbuilt seo leaves alot to be desired &#8211; this guide is an attempt to overcome the main issues of search engine optimization within the clipshare script.  Clipshare essentially has one page that is optimized for search engines, that is the View Video page. Every other page on the website shares the exact same page title, page description and page keywords &#8211; read below to find out how to create unique titles, descriptions and keywords for the pages of your choice.</p>
<p>You can apply this guide to your websites in around 10minutes, it should help you gain more organic traffic without diluting your pages down.  The SEO guide for Clipshare was originally written based on using the Forbidden theme from Freshsubject, there may be some differences with the default themes &#8211; if you have any issues just post a comment below and i&#8217;ll offer my advice.</p>
<p><strong>UPDATE:</strong> <em>the search engine optimization guide for clipshare turned out to be alot longer than i had originally planned, so i&#8217;ve split it up into two parts &#8211; you can read part2 <a href="http://www.freshsubject.com/search-engine-optimization-guide-for-clipshare-cont/">here</a>.</em></p>
<p>The Forbidden or Allowed themes are a great way to give a much needed boost to your Clipshare website, featuring valid xhtml and css code with correctly structured code for SEO, you can view the themes <a href="http://www.freshsubject.com/themes/">here</a>.</p>
<h3>Editing head1.tpl for SEO</h3>
<p><em>Step1 &#8211; Involves editing the template file head1.tpl located in the templates folder.</em></p>
<p>Change:</p>
<pre>&lt;meta name="robots" content="index,nofollow"&gt;</pre>
<p>To:</p>
<pre>&lt;meta name="robots" content="noindex,follow"&gt;</pre>
<p>What this code change does is tell the search engines not to index your website, you may not understand why this is important but i will explain it.  In the Clipshare script, like many other video scripts there is a distinct lack of original content as the same videos show up on hundreads of pages from user playlists to their uploaded videos.  Once we tell the search engines not to index the site we can select pages inwhich we do want indexed, pages that will show up in the search engines &#8211; For instance we want the view_video page to show up first for a particular video and not the Friends video page.</p>
<h3>Make a list of the pages we do want indexed</h3>
<p><em>Step2 – Involves choosing the correct pages to be indexed</em></p>
<p>So now we have to make a descision on the best pages (template files) to index on our site, these pages will feature heavily in the search engines.  The pages to be indexed are;</p>
<ul>
<li>Index Page &#8211; Frontpage of your video site</li>
<li>Channel Detail Page &#8211; Each channel on our website will be indexed</li>
<li>Channels Page &#8211; Indexed as link between our index and channel detail page</li>
<li>View Video Page &#8211; The video page, each video uploaded has a unique page</li>
<li>Individual Tags Page &#8211; Each tag has a seperate page created (optional)</li>
</ul>
<p>So the above is a list of the pages we will be indexing, please note that there are not 5 pages above but 5 section of possible pages above.  What i mean is that if your website has 100 videos uploaded to it, each with their own title, description and tags and each video has 2 different tags then we already have a possible further 300 pages to be indexed (100 unique video pages and 200 tag pages &#8211; 2&#215;100).  We are ofcourse not counting the channel detail pages inwhich you can also have any number of channels.</p>
<p class="note"><strong>The choice between Channels and Videos</strong><br />
I made the descision on how i wanted my site to be indexed, whether I wanted the video page to be my main link between the View Video page or my Channel Detail page. I picked the Channel Detail page because it has the ability to display unique content whereas the video page is simply a list of latest video&#8217;s added.  If you would like to index the video&#8217;s page also then you can add it to the list above.</p>
<p>So your site structure will be as follows:</p>
<pre>Index -> channels -> channel_detail -> view_video</pre>
<p>an example of a site using this structure would be;</p>
<pre>Footballvideo site -> list of football teams -> liverpool football videos -> steven gerrards goal against chelsea permier league game video</pre>
<p>The above example should give you a clear image of what we are trying to achieve in this guide.  If your not sure on step2 then please write in the comments below.</p>
<h3>Create a new header tpl file</h3>
<p><em>Step3 &#8211; Creation of a new header file that will allow the discussed pages to be indexed</em></p>
<p>Create a copy of the head1.tpl file you edited in step1 and rename this file head_seo.tpl, once this has been done open up your head_seo.tpl file and change;</p>
<pre>&lt;meta name="robots" content="noindex,follow"&gt;</pre>
<p>To:</p>
<pre>&lt;meta name="robots" content="index,follow"&gt;</pre>
<p>This is the new header file that will also allow us to add unique content to the pages discussed above in the form of Title, Description and Keywords.</p>
<p class="note">I will also explain some specific template mods on how to display a unique description on your Channel Detail page using your channel description text inwhich you entered in the siteadmin.</p>
<p class="alert">A View Video page edit is not required because it already contains unique content such as the Title and Description of the video.</p>
<p>Additional changes now need to be made in head_seo.tpl that will allow you to enter unqiue titles and descriptions, so change;</p>
<pre>
&lt;title&gt;{$site_name}&lt;/title&gt;
&lt;meta name="description" content="{$meta_description}" /&gt;
&lt;meta name="keywords" content="{$meta_keywords}" /&gt;
</pre>
<p>To:</p>
<pre>
&lt;title&gt;{$meta_title}&lt;/title&gt;
&lt;meta name="description" content="{$meta_description}" /&gt;
&lt;meta name="keywords" content="{$meta_keywords}" /&gt;
</pre>
<p>This is the end of editing the head_seo.tpl file so save and upload to your templates directory.</p>
<h3>Setting up our unique page titles and descriptions</h3>
<p><em>Step4 &#8211; Editing our .php files to include our unique titles and descriptions</em></p>
<p>Before we get stuck into this i will show you what files are associated with which page, although it is pretty self-explanatory it can be a tad confusing for someone who&#8217;s new to Clipshare.</p>
<p>channels.tpl -> channels.php<br />
Index.tpl -> index.php</p>
<p>In this step we will be creating our unique titles and descriptions for the channels page and the index page, the channel_detail page is a little more complicated and requires a new header file to be created so that will be explained in step5.</p>
<p>Open channels.php and change;</p>
<pre>STemplate::display('head1.tpl');</pre>
<p>To:</p>
<pre>STemplate::display('head_seo.tpl');</pre>
<p>Now you need to add your title, description and keywords and you do this by adding;</p>
<pre>STemplate::assign('meta_title','Your channels title here | Your site name');
STemplate::assign('meta_description','Description of this page');
STemplate::assign('meta_keywords','tags, tags2, tags3');</pre>
<p>Below the part you just changed in the channels.php file.  If your unsure of what to add, i&#8217;ve written an example of a channels page for a ficticious football website called FootballTube</p>
<pre>STemplate::assign('meta_title','Football Teams Videos | FootballTube');
STemplate::assign('meta_description','Selection of football league and trick videos from both englands professional and amateur teams such as manchester united, liverpool and chelsea');
STemplate::assign('meta_keywords','football team videos, football team traning videos, englands football videos, videos of professional football teams, professional football vids,');</pre>
<p>So to add a unique title and descrption to your index page, you do exactly the same thing as above but change the information you add in, such as meta_title.  This step can be used on any page you want to create a unique title for such as videos or community pages and does not need to be restricted to just your channels / index pages.</p>
<h3>RECAP</h3>
<p><em>So far we&#8217;ve decided on a site structure to follow and have created unique title, description and keyword tags for both the index page and the channels page.  You can use the exact same instructions layed out in step4 to create unique title, description and keywords tags for additional pages such as the community page and/or the videos page.</em></p>
<p>Click to read part2 of the <a href="http://www.freshsubject.com/search-engine-optimization-guide-for-clipshare-cont/">Clipshare Search Engine Optimization Guide</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.freshsubject.com/search-engine-optimization-guide-for-clipshare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freshsubject launches new website and design</title>
		<link>http://www.freshsubject.com/freshsubject-launches-new-website-and-design/</link>
		<comments>http://www.freshsubject.com/freshsubject-launches-new-website-and-design/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 15:57:26 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Freshsubject]]></category>
		<category><![CDATA[intro]]></category>

		<guid isPermaLink="false">http://www.freshsubject.com/?p=200</guid>
		<description><![CDATA[
Today freshsubject has launched a brand new website and design that will pave the way for how we do business in the future.  We have alot of exciting developments in terms of both current and future themes in addition to providing a more complete support package to clients in the form of written tutorials [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.freshsubject.com/freshsubject-launches-new-website-and-design/" title="Permanent link to Freshsubject launches new website and design"><img class="post_image alignleft frame" src="http://www.freshsubject.com/wp-content/uploads/2009/10/freshsubject.jpg" width="250" height="200" alt="freshsubject" /></a>
</p><p>Today freshsubject has launched a brand new website and design that will pave the way for how we do business in the future.  We have alot of exciting developments in terms of both current and future themes in addition to providing a more complete support package to clients in the form of written tutorials and screencasts.</p>
<h3>So what&#8217;s changed here at Freshsubject?</h3>
<p><em><a href="http://www.freshsubject.com/wp-content/uploads/2009/10/paper_content_pencil_48.png"><img class="alignleft size-full wp-image-226" title="paper_content_pencil_48" src="http://www.freshsubject.com/wp-content/uploads/2009/10/paper_content_pencil_48.png" alt="paper_content_pencil_48" width="48" height="48" /></a>FreshSubject Blog</em> &#8211; An important part of any website a blog is where discussions can happen and updates issued, the freshsubject&#8217;s blog has been in development for sometime but we are happy to open up to the public.</p>
<p><em><a href="http://www.freshsubject.com/wp-content/uploads/2009/10/spanner_48.png"><img class="alignleft size-full wp-image-227" title="spanner_48" src="http://www.freshsubject.com/wp-content/uploads/2009/10/spanner_48.png" alt="spanner_48" width="48" height="48" /></a>Support Documentation</em> &#8211; We know Clipshare themes and templates can be a tricky subject for some so we&#8217;ve decided to put together a more complete resource that will hopefully aid people in making changes to the themes themselves without much previous knowledge.</p>
<p><em><a href="http://www.freshsubject.com/wp-content/uploads/2009/10/thumbs_up_48.png"><img class="alignleft size-full wp-image-228" title="thumbs_up_48" src="http://www.freshsubject.com/wp-content/uploads/2009/10/thumbs_up_48.png" alt="thumbs_up_48" width="48" height="48" /></a>New theme&#8217;s page</em> &#8211; the previous website was lacking in the presentation of the themes, our new layout allows us to present them in a more professional manner and now you can easily view and demo the current themes.</p>
<h3>Whats next for FreshSubject</h3>
<p><img class="size-full wp-image-220 alignright" title="envient" src="http://www.freshsubject.com/wp-content/uploads/2009/10/envient.jpg" alt="envient" width="250" height="98" />Our key focus has always been on the envient brand scripts &#8211; Clip-share and the newly released AVS script, we also hope to expand into MediaShareSuite and while we will focus on the envient scripts for the time being if there is a demand we will of course work to fulfill those needs.  You can expect some new theme concepts to get published shortly, especially for AVS as we are extremely excited to be working with this script.</p>
<p>For more information aboutt he people behind Freshsubject &#8211; visit the <a href="http://www.freshsubject.com/about/">about</a> page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freshsubject.com/freshsubject-launches-new-website-and-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
