<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>spiced2.com</title>
	
	<link>http://www.spiced2.com</link>
	<description>- Seasoning for online media</description>
	<lastBuildDate>Tue, 15 May 2012 17:35:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Spiced2com" /><feedburner:info uri="spiced2com" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>Spiced2com</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>2 ways to disable directory browsing on your server</title>
		<link>http://feedproxy.google.com/~r/Spiced2com/~3/CnN2T2iC2zo/</link>
		<comments>http://www.spiced2.com/disable-directory-browsing-on-your-server/#comments</comments>
		<pubDate>Tue, 13 Mar 2012 19:10:38 +0000</pubDate>
		<dc:creator>Thomas Fjordside</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://www.spiced2.com/?p=734</guid>
		<description><![CDATA[You should always disable directory browsing on your server to prevent other people to look around in your file structure. But some servers don&#8217;t come with this setting as standard. So I&#8217;m going to give you two ways of doing it. .htaccess The first is in a .htaccess file. This is not the solution I [...]]]></description>
			<content:encoded><![CDATA[<p>You should always disable directory browsing on your server to prevent other people to look around in your file structure. But some servers don&#8217;t come with this setting as standard. So I&#8217;m going to give you two ways of doing it.<span id="more-734"></span></p>
<h2>.htaccess</h2>
<p>The first is in a .htaccess file. This is not the solution I would recommend. But you might find yourself in a situation where you don&#8217;t have any other choices, because you don&#8217;t have deeper access. In your htaccess file you just type in:</p>
<p><strong>IndexIgnore *</strong></p>
<p>This will make sure that directory listing is not allowed in that directory.</p>
<h2>Using http.conf</h2>
<p>The second and better solution in my opinion is via the http.conf file on your webserver.<br />
What you do is that you open the http.conf file and find the line that look like this:</p>
<p><strong>Options All Indexes FollowSymLinks MultiViews</strong></p>
<p>From that line you delete the word Indexes so it looks like this:</p>
<p><strong>Options All FollowSymLinks MultiViews</strong></p>
<p>Then you just have to restart your webserver and it should be working.</p>
<p>Good luck. Hope it saves a bit of trouble.</p>
<img src="http://feeds.feedburner.com/~r/Spiced2com/~4/CnN2T2iC2zo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spiced2.com/disable-directory-browsing-on-your-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.spiced2.com/disable-directory-browsing-on-your-server/</feedburner:origLink></item>
		<item>
		<title>Prevent hotlinking of your images using htaccess</title>
		<link>http://feedproxy.google.com/~r/Spiced2com/~3/5m1cVE_jQIM/</link>
		<comments>http://www.spiced2.com/preventing-hotlinking-images-htaccess/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 21:05:06 +0000</pubDate>
		<dc:creator>Thomas Fjordside</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.spiced2.com/?p=701</guid>
		<description><![CDATA[If you suddenly experience a lot of traffic to your images that are not coming from your site, it&#8217;s often because of hotlinking. If you&#8217;re on limited bandwidth this can be a real pain. Here&#8217;s an easy way to prevent it using your .htaccess file. So here is how to do it in four lines: [...]]]></description>
			<content:encoded><![CDATA[<p>If you suddenly experience a lot of traffic to your images that are not coming from your site, it&#8217;s often because of hotlinking. If you&#8217;re on limited bandwidth this can be a real pain. Here&#8217;s an easy way to prevent it using your .htaccess file. So here is how to do it in four lines:<br />
<span id="more-701"></span></p>
<blockquote><p>RewriteEngine on<br />
RewriteCond %{HTTP_REFERER} !^$<br />
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?yourdomain.com [NC]<br />
RewriteRule \.(jpg|jpeg|png|gif)$ http://29.media.tumblr.com/tumblr_ltn3afEByB1r3arh5o1_100.gif [NC,R,L]</p></blockquote>
<p>If you want more sites to be able to implement your images, you can add more lines like this one:</p>
<blockquote><p>RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?yourotherdomain.com [NC]</p></blockquote>
<p>The image in RewriteRule \.(jpg|jpeg|png|gif)$ http://29.media.tumblr.com/tumblr_ltn3afEByB1r3arh5o1_100.gif [NC,R,L] should not be a picture on your domain, as your blocking will block that too. And all kinds of bad stuff happens! Just don&#8217;t do it.</p>
<p>That&#8217;s all that you need to do, simple right? <img src='http://www.spiced2.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/Spiced2com/~4/5m1cVE_jQIM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spiced2.com/preventing-hotlinking-images-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.spiced2.com/preventing-hotlinking-images-htaccess/</feedburner:origLink></item>
		<item>
		<title>Adding more languages to wordpress spellchecking</title>
		<link>http://feedproxy.google.com/~r/Spiced2com/~3/gddzPsMlUW4/</link>
		<comments>http://www.spiced2.com/wordpress-spellchecking-languages/#comments</comments>
		<pubDate>Mon, 24 Oct 2011 17:57:13 +0000</pubDate>
		<dc:creator>Thomas Fjordside</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[spellcheck]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.spiced2.com/?p=693</guid>
		<description><![CDATA[Just a little wordpress tip that you might find useful. I needed to add danish spellchecking to a wordpress blog and found that it was really really easy. All you need is you functions.php file in your theme and the ability to write in it. (If you&#8217;re scared, make a backup. If not then cry [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>Just a little wordpress tip that you might find useful. I needed to add danish spellchecking to a wordpress blog and found that it was really really easy. All you need is you functions.php file in your theme and the ability to write in it. (If you&#8217;re scared, make a backup. If not then cry if it fails.)</p>
<p><span id="more-693"></span></p>
<p>What you do is you go in to the functions.php file and add the following:</p>
<blockquote><p>function fb_mce_external_languages($initArray){<br />
$initArray['spellchecker_languages'] = &#8216;English=en,+Dansk=da&#8217;;<br />
return $initArray;<br />
}<br />
add_filter(&#8216;tiny_mce_before_init&#8217;, &#8216;fb_mce_external_languages&#8217;);</p></blockquote>
<p>Now if you have no use for danish spellchecking change this &#8220;+Dansk=da&#8221; to what you need. When you load your editor you should see your new languages in the spellcheck dropdown.</p>
</div>
<img src="http://feeds.feedburner.com/~r/Spiced2com/~4/gddzPsMlUW4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spiced2.com/wordpress-spellchecking-languages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.spiced2.com/wordpress-spellchecking-languages/</feedburner:origLink></item>
		<item>
		<title>Free small 16×16 icons – Spiced2Simple</title>
		<link>http://feedproxy.google.com/~r/Spiced2com/~3/J18ybP1Yr54/</link>
		<comments>http://www.spiced2.com/small-16x16-icons-spiced2simple/#comments</comments>
		<pubDate>Wed, 19 May 2010 20:36:27 +0000</pubDate>
		<dc:creator>Thomas Fjordside</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.spiced2.com/?p=639</guid>
		<description><![CDATA[I like Icons, they tell me, what to do, without making me think too much. I&#8217;ve been making a bunch of icons lately for different work related things. I also had time to make a small set of icons that I&#8217;m going to give you for free. These are basic, general icons that you can [...]]]></description>
			<content:encoded><![CDATA[<p>I like Icons, they tell me, what to do, without making me think too much. I&#8217;ve been making a bunch of icons lately for different work related things. I also had time to make a small set of icons that I&#8217;m going to give you for free. These are basic, general icons that you can use for many different types of websites (and other things). I call them Spiced2Simple.</p>
<p><img class="alignnone size-full wp-image-641" title="Spiced2Simple 16x16 icons" src="http://www.spiced2.com/wp-content//icons1.png" alt="Spiced2Simple 16x16 icons" width="500" height="169" /><br />
<span id="more-639"></span></p>
<h2><a onclick="_gaq.push(['_trackEvent', 'freebies', 'download', 'spiced2simple']);" href="http://www.spiced2.com/spiced2simple.zip">Download Spiced2Simple</a></h2>
<p>Please: Do not hotlink to the download link.</p>
<p>These are free, license: none! Do whatever you like with them icons. Have fun with them. And if you want to show me you have used them, shoot a mail my way <img src='http://www.spiced2.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Go nuts, and tell me what you think down below <img src='http://www.spiced2.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/Spiced2com/~4/J18ybP1Yr54" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spiced2.com/small-16x16-icons-spiced2simple/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.spiced2.com/small-16x16-icons-spiced2simple/</feedburner:origLink></item>
		<item>
		<title>Great WordPress plugins you never knew existed</title>
		<link>http://feedproxy.google.com/~r/Spiced2com/~3/GKFtrVB3SKo/</link>
		<comments>http://www.spiced2.com/great-wordpress-plugins-you-never-knew-existed/#comments</comments>
		<pubDate>Wed, 05 May 2010 19:20:39 +0000</pubDate>
		<dc:creator>Thomas Fjordside</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.spiced2.com/?p=625</guid>
		<description><![CDATA[WordPress plugins are great for extending the capabilities of WordPress to fit your needs or just save some time for you. But there are so many of them that some of the great ones seem to go unnoticed. Here&#8217;s a list of great WordPress plugins you never knew existed. Jquery Image lazy load Great wordpress [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress plugins are great for extending the capabilities of WordPress to fit your needs or just save some time for you. But there are so many of them that some of the great ones seem to go unnoticed. Here&#8217;s a list of great WordPress plugins you never knew existed.</p>
<p><img class="alignnone size-full wp-image-633" title="easyjscss" src="http://www.spiced2.com/wp-content//easyjscss.png" alt="" width="500" height="257" /><br />
<span id="more-625"></span></p>
<h3>Jquery Image lazy load</h3>
<p>Great wordpress plugin for sites with a lot of images. The plugin holds off loading images, that&#8217;s lower on the page until the user scrolls down to them. Great for giving a better user experience and a faster loading site. Get <a href="http://wordpress.org/extend/plugins/jquery-image-lazy-loading/">Jquery Image lazy load</a> here.</p>
<h3>Easy JS and CSS</h3>
<p>Implement css and javascript on specific posts on your blog. Great if you are using things like crazyegg or would like to use a specific jquery plugin in on only one post or page of your blog. Get <a href="http://wordpress.org/extend/plugins/easyjscss/">Easy JS and CSS</a> here.</p>
<h3>Simple 301 redirects</h3>
<p>The name says it all. Create redirects from deleted content quick and easy. Great little plugin for creating 301 redirects. Get <a href="http://wordpress.org/extend/plugins/simple-301-redirects/">Simple 301 redirects</a> here.</p>
<h3>Ozh&#8217; Who Sees Ads</h3>
<p>Control who sees ads on your site. It has a number of different settings, like how many days since the post have been published and whether or not the user is logged in. Get <a href="http://wordpress.org/extend/plugins/ozh-who-sees-ads/">Who Sees Ads</a> here.</p>
<h3>Simple feed copyright</h3>
<p>Adds a simple copyright statement to your feed with a link. It won&#8217;t prevent people from stealing your content obviously but it might give you a link everytime someone does. Find <a href="http://wordpress.org/extend/plugins/simple-feed-copyright/">Simple feed copyright</a> here.</p>
<h3>Smooth Slider</h3>
<p>Great content slider plugin that makes it easy for notech people to add content to the slider by clicking a simple checkbox. Download <a href="http://wordpress.org/extend/plugins/smooth-slider/">Smooth Slider for WordPress</a> here.</p>
<h3>zeList</h3>
<p>Create a directory for you wordpress blog with this plugin. It makes it easy to create a resource list on your wordpress blog. Easy to use once installed. Get <a href="http://wordpress.org/extend/plugins/zelist/">zeList</a> here.</p>
<h3>Really Static</h3>
<p>Make your website static and really, really fast loading. Really great if you are suddenly getting traffic spikes. Download <a href="http://wordpress.org/extend/plugins/really-static/">Really Static for WordPress</a> here.</p>
<p>Did I miss a good one (of course I did)? Please post it in the comments and I will add it to the list.</p>
<img src="http://feeds.feedburner.com/~r/Spiced2com/~4/GKFtrVB3SKo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spiced2.com/great-wordpress-plugins-you-never-knew-existed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.spiced2.com/great-wordpress-plugins-you-never-knew-existed/</feedburner:origLink></item>
		<item>
		<title>Fun ways to use advanced segments in Google Analytics</title>
		<link>http://feedproxy.google.com/~r/Spiced2com/~3/PEQqLkrIo8s/</link>
		<comments>http://www.spiced2.com/fun-ways-advanced-segments-google-analytics/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 17:45:06 +0000</pubDate>
		<dc:creator>Thomas Fjordside</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Traffic]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[segments]]></category>

		<guid isPermaLink="false">http://www.spiced2.com/?p=605</guid>
		<description><![CDATA[Advanced segments is one of my favourite features in Google Analytics. It gives you the ability to create custom ways of viewing your analytics data with ease. In a few click you can segment visitors so you get data that you can actually use, rather than just overall numbers that don&#8217;t help you much. It [...]]]></description>
			<content:encoded><![CDATA[<p>Advanced segments is one of my favourite features in Google Analytics. It gives you the ability to create custom ways of viewing your analytics data with ease. In a few click you can segment visitors so you get data that you can actually use, rather than just overall numbers that don&#8217;t help you much. It gives you an easy way to answer questions that come up from the data that has already been collected which you are not able to with new site profiles.</p>
<p><img class="alignnone size-full wp-image-616" title="advanced-segments" src="http://www.spiced2.com/wp-content//advanced-segments.png" alt="Advanced segments in Google Analytics" width="500" height="273" /></p>
<p><span id="more-605"></span></p>
<h3>Time of day segments</h3>
<p><em><a href="http://www.google.com/analytics/reporting/add_segment?share=iwcLNSgBAAA.RD_MY1rbVaEf7ayaUJLvVM17tDYj0ZwEOoNRjgo2pnE73IaM9q0XuIup-Khtsdf-p1nzy9eSFo4wVjBE09wimg.wKxK1Yrl_oHLt3vYBOcDSQ">Hour of the day Matches regular expression 22|23|24</a> (click to import segment into GA)</em></p>
<p>It&#8217;s a good way of gathering intel on when to push ads for TV, radio and of course Adwords. And It can also help you in timing your social media activities and your content pushes on these. This has helped me a fair bit as I&#8217;m in a different timezone to most of my visitors and I&#8217;m not that good at figuring out when to publish new things. Combine it with a look at day of the week to see when you convert the best and you have a better understanding of when you can bid higher on your ads.</p>
<h3>User engagement</h3>
<p><em><a href="http://www.google.com/analytics/reporting/add_segment?share=iwcLNSgBAAA.RD_MY1rbVaEf7ayaUJLvVM17tDYj0ZwEOoNRjgo2pnE73IaM9q0XuIup-Khtsdf-Ubt7mn_HjowtrBqk2xGtMg.3YG1iVgYSaGxxS4MENkeUQ">Page Depth Greater than or equal to 3</a> (click to import segment into GA)</em></p>
<p>Where do your most valuable visitors come from? Are you getting enough traffic from those sources? Could you get more? This can be &#8220;low-hanging fruit&#8221; that you can easily get more of. You can also do the opposite and find the traffic sources that bounce often.</p>
<h3>Branded searches</h3>
<p><em>Keyword matches regular expression KW1|KW2|KW3</em></p>
<p>You can bundle your branded keywords together to see them in one report. This will give you an idea of how many visits you get from people who are already familiar with your products and with you.</p>
<h3>Head search terms</h3>
<p><em>Keyword matches regular expression KW1|KW2|KW3</em></p>
<p>In the same way as above you can bundle up the big keywords you are going for to see how much traffic they are providing to your site. And then you can see if they are converting in the way you want them to. If you are targeting these terms in adwords you will want to make a separate segment for cpc and organic.</p>
<h3>Regional segments</h3>
<p><em>Region matches Targeted region</em></p>
<p>View your traffic from different regions and see if some regions respond better to you, than others. These can be great segments for when you are doing a regional push and can help you determine if you should continue your push or revise your campaign. You could do this with cities too.</p>
<h3>Tracking people coming from feed readers</h3>
<p><em><a href="http://www.google.com/analytics/reporting/add_segment?share=XhMWNSgBAAA.RD_MY1rbVaEf7ayaUJLvVCohbV0yFmGXFSO6VT2p8VE73IaM9q0XuIup-Khtsdf-4JvRfKIeH4hfjwMxEbOj0w.lL7ODi53U00S6XHWQaYdEQ">Medium Matches exactly feed</a> (click to import segment into GA)</em></p>
<p>Find out how people using feed readers use your site. See if there are any difference between them and other returning visitors. You might be able to find places where you can improve the site experience.</p>
<h3>Tracking email visits (not from email campaigns)</h3>
<p><em><a href="http://www.google.com/analytics/reporting/add_segment?share=iwcLNSgBAAA.RD_MY1rbVaEf7ayaUJLvVM17tDYj0ZwEOoNRjgo2pnE73IaM9q0XuIup-Khtsdf-HX8PFXoka29ZWt5iQ12EHA.OldUHI3wPqVkZAPmCRprtA">Source Contains  mail</a> (click to import segment into GA)</em></p>
<p>Make a segment that filters sources by the word mail. This will give you most of the online email clients. This is great for testing if visitors who have been recommended by a friend turn into customers or leads for you.</p>
<p>These examples are some of the ways I use Advanced segments to get some data points that gives me a better idea of how to optimize a website. What do you use advanced segments for?</p>
<img src="http://feeds.feedburner.com/~r/Spiced2com/~4/PEQqLkrIo8s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spiced2.com/fun-ways-advanced-segments-google-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.spiced2.com/fun-ways-advanced-segments-google-analytics/</feedburner:origLink></item>
		<item>
		<title>How to check if your email has been blacklisted</title>
		<link>http://feedproxy.google.com/~r/Spiced2com/~3/WCf_IBTPanc/</link>
		<comments>http://www.spiced2.com/check-if-email-blacklisted/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 17:57:31 +0000</pubDate>
		<dc:creator>Thomas Fjordside</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[blacklist]]></category>
		<category><![CDATA[email]]></category>

		<guid isPermaLink="false">http://www.spiced2.com/?p=601</guid>
		<description><![CDATA[Ever started to get those not delivered emails in your inbox? It&#8217;s annoying, especially if you have sent some important emails to clients or partners. Often it is because of the recipients spam filter or a large file that is too big. But sometimes it can be your email that has been blacklisted. And that [...]]]></description>
			<content:encoded><![CDATA[<p>Ever started to get those not delivered emails in your inbox? It&#8217;s annoying, especially if you have sent some important emails to clients or partners. Often it is because of the recipients spam filter or a large file that is too big. But sometimes it can be your email that has been blacklisted. And that can be a big problem. I just had this problem not that long ago so I thought I would just share the tools I used to figure out what was wrong. So here are some ways to check if you have been blacklisted.</p>
<p><span id="more-601"></span><a href="http://www.mxtoolbox.com/blacklists.aspx">MXToolbox</a> has a great service where you can look up your mail server IP and see if it&#8217;s on any of the blacklists out there (don&#8217;t worry if you don&#8217;t know the IP, just type in the domain).<br />
If you domain is blacklisted, you can then click the links next to them for more information on how to remove it. They also have tool to check your mail headers.</p>
<p><strong><br />
Other places to check if you are blacklisted</strong><br />
<a href="http://mailboxtools.com/tools/blc.aspx">mailboxtools.com</a><br />
<a href="http://www.mailradar.com/rbl/">Mailradar.com</a><br />
<a href="http://www.dnsbl.info/">dnsbl.info</a></p>
<p>Once you have discovered a problem, most of the lists will tell you what is wrong with your setup if that&#8217;s what&#8217;s wrong. So just a small post that I hope will save somebody some time <img src='http://www.spiced2.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/Spiced2com/~4/WCf_IBTPanc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spiced2.com/check-if-email-blacklisted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.spiced2.com/check-if-email-blacklisted/</feedburner:origLink></item>
		<item>
		<title>Make your website sticky!</title>
		<link>http://feedproxy.google.com/~r/Spiced2com/~3/aL0Uhc2FYnk/</link>
		<comments>http://www.spiced2.com/make-your-website-sticky/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 18:36:21 +0000</pubDate>
		<dc:creator>Thomas Fjordside</dc:creator>
				<category><![CDATA[Traffic]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[conversion rate]]></category>

		<guid isPermaLink="false">http://www.spiced2.com/?p=594</guid>
		<description><![CDATA[Peanut butter and jelly. So tasty, so sweet and so sticky! Make your website like that and you are on your way to having a successful website. A Sticky website is a website that keep visitors around for longer, that make them view more pages and a website that get them to come back for [...]]]></description>
			<content:encoded><![CDATA[<p>Peanut butter and jelly. So tasty, so sweet and so sticky! Make your website like that and you are on your way to having a successful website. A Sticky website is a website that keep visitors around for longer, that make them view more pages and a website that get them to come back for more. It should be said that this will be a good thing for most websites but not for all.</p>
<p><img class="alignnone size-full wp-image-596" title="sticky" src="http://www.spiced2.com/wp-content//sticky.jpg" alt="" width="500" height="500" /></p>
<div><a rel="cc:attributionURL" href="http://www.flickr.com/photos/fixe/">http://www.flickr.com/photos/fixe/</a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a></div>
<p>So let&#8217;s have a look at how you can make your website more sticky. I&#8217;m going to look at some of the things you can do, if you have a content site, like a blog, but you can use it across other types of websites as well.<br />
<span id="more-594"></span></p>
<h3>Provide good content, consistently</h3>
<p>Good content should be quite a no brainer, it is the number one way to make your website more sticky. If your content is consistently good people will pick up on it and they will browser more pages on your site. Make sure your content is the content people are coming for and make sure you have lots of it.</p>
<h3>Provide somewhere else to go on your site</h3>
<p>This is often done by providing related articles, a where to go next or by links in the content. This is a great way to let visitor explore more of your content. Make sure there are somewhere else to go from your article pages. When visitors are reading your articles all the way to the bottom, they often go away if you don&#8217;t provide them with something else to do.</p>
<h3>Make theme pages</h3>
<p>If you have a lot of content about a topic. It can be great to make a page with small excerpts and pictures from those articles and use that page to get visitors to dive in to a topic. Blogs have category pages, but if you have a regular website, this is an even better idea. Take something like the <a href="http://www.bbc.co.uk/food/">BBC&#8217;s food section</a>, that&#8217;s a great inspiration on how to get visitors deep on your site.</p>
<h3>Have internal content campaigns</h3>
<p>You can make &#8220;internal campaigns&#8221; for your good content. It can be done by making a Interesting reads section in your navigation or having a block of text below your articles with a link to some new/good article about an interesting subject.</p>
<h3>How to measure your &#8220;stickyness&#8221;</h3>
<p>Some of the metrics you can use to measure your stickyness is bounce rate, pages per visit and average time on site. You can also have a look at your top exit pages and look for ways to get visitors to go elsewhere. Always compare these metrics with your own data. You will not get any good data by finding average bounce rate data online, because every website is different and every audience is different.</p>
<img src="http://feeds.feedburner.com/~r/Spiced2com/~4/aL0Uhc2FYnk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spiced2.com/make-your-website-sticky/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.spiced2.com/make-your-website-sticky/</feedburner:origLink></item>
		<item>
		<title>12 Firefox tweaks and hacks</title>
		<link>http://feedproxy.google.com/~r/Spiced2com/~3/6g-GVWSY51U/</link>
		<comments>http://www.spiced2.com/12-firefox-tweaks-and-hacks/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 17:59:50 +0000</pubDate>
		<dc:creator>Thomas Fjordside</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[speed]]></category>

		<guid isPermaLink="false">http://www.spiced2.com/?p=583</guid>
		<description><![CDATA[Firefox, the application most used on my computer. Take away itunes, skype, hell even photoshop but leave me with firefox and I&#8217;ll be al right But there are some hacks and tweaks to make firefox even better. I&#8217;ve gathered 12 that I use on my personal installation here. Change the search features in Firefox Changing [...]]]></description>
			<content:encoded><![CDATA[<p>Firefox, the application most used on my computer. Take away itunes, skype, hell even photoshop but leave me with firefox and I&#8217;ll be al right <img src='http://www.spiced2.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  But there are some hacks and tweaks to make firefox even better. I&#8217;ve gathered 12 that I use on my personal installation here.<br />
<span id="more-583"></span></p>
<h3>Change the search features in Firefox</h3>
<p><strong>Changing the default google location in the search box.</strong><br />
I&#8217;m from Denmark and I want to search on google.dk instead of google.com (This works with every other google local site)</p>
<ul>
<li> Go to your program files\mozilla firefox\searchplugins folder and edit the google.xml file.</li>
<li> Find this line &lt;Url type=”text/html” method=”GET” template=”http://www.google.com/search”&gt;</li>
<li>change it to &lt;Url type=”text/html” method=”GET” template=”http://www.google.dk/search”&gt; of course you should change this to whatever location you want.</li>
</ul>
<p><strong>Open search box results in a new tab</strong><br />
Opening the searchresults in a new tab is a great feature as I always forget to open a new tab and end up losing the site I was on. You can change it in you about:config file:</p>
<ul>
<li> In your address type in: about:config</li>
<li> Search for browser.search.openintab and change it to true.</li>
</ul>
<p><strong>Change the I&#8217;m feeling lucky google search when you search via your address bar</strong><br />
I never feel lucky. And I don&#8217;t want to visit the first google result when I type something in my browser.</p>
<ul>
<li> In your address type in: about:config</li>
<li> Find keyword:URL and change it to http://www.google.com/search?q=</li>
</ul>
<p>
<h3>Changing the Firefox user interface</h3>
<p><strong>Making new tabs open at the end</strong><br />
Firefox 3.6 made a change so new tabs open next to the current one. I don&#8217;t like this feature, I like when they just go to the end of the tabs bar. You can change it quite easily.</p>
<ul>
<li> Type about:config in your address bar.</li>
<li> Search for browser.tabs.insertRelatedAfterCurrent and change it to false  and close the tab. Now your new tabs will open at the end instead of  grouping them together</li>
</ul>
<p><strong>Change the close tab button so it shows at the end of the tab bar.</strong><br />
I like to open and close many tabs at a time, so it annoyed me when the tabs get bigger and smaller so I have to shift around with my mouse (I&#8217;ll never get used to ctrl-w).</p>
<ul>
<li> Type about:config in your address bar.</li>
<li> Find browser.tabs.closeButtons and set it to 3.</li>
</ul>
<p>Now your close button will be at the end ( Like it was in some of the older version ) which is great for closing a lot of tabs at the time.</p>
<p><strong>Get Firefox spell check in all fields.</strong><br />
Firefox spellchecks in fields that are more than one line. You can get it to spell check in all fields.</p>
<ul>
<li> Type about:config in your address bar.</li>
<li> layout.spellcheckDefault change the value to 2</li>
</ul>
<p><strong>Get Firefox to remember more (or less) than 10 recently closed tabs</strong><br />
I said I like to open and close a lot of tabs. I tend to lose some important ones at times <img src='http://www.spiced2.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  So this is a nice hack for me.</p>
<ul>
<li> Type about:config in your address bar.</li>
<li> browser.sessionstore.max_tabs_undo change this to the number you want to see.</li>
</ul>
<p><strong>Change the number of suggestions Firefox show while you type</strong><br />
This can fill your screen when you are on a laptop, which is annoying. You can lower the number like this.</p>
<ul>
<li> Type about:config in your address bar.</li>
<li> browser.urlbar.maxRichResults change to another number.</li>
</ul>
<p><strong>Enable autofill in address bar as you type</strong><br />
Here&#8217;s how to enable autofill in your addressbar.</p>
<ul>
<li>Type about:config in your address bar.</li>
<li> browser.urlbar.autoFill set to true</li>
</ul>
<p><strong>Remove the menu delay</strong><br />
Remove the menu delay in firefox.</p>
<ul>
<li> Type about:config in your address bar.</li>
<li> Right click and choose new &#8211; integer</li>
<li> Call it ui.submenuDelay and set it to 0</li>
</ul>
<p>
<h3>Speed and memory in Firefox</h3>
<p><strong>Make firefox use less memory when minimized</strong><br />
Firefox loves memory, but I like to use it for other things when Firefox is minimized. You can change the setting here.</p>
<ul>
<li> Type about:config in your address bar.</li>
<li> Search for config.trim_on_minimize and change this to true.</li>
</ul>
<p><strong>Pipelining</strong><br />
Pipelining will speed up your browser by allowing you to make more http connections simultaniously.</p>
<ul>
<li> type about:config in your address bar.</li>
<li> Type network.http in the filter box.</li>
<li> Find network.http.keep-alive and set it to true if it isn&#8217;t</li>
<li> network.http.version and set it to 1.1 if it isn&#8217;t.</li>
<li> network.http.pipelining and set it to true</li>
<li> network.http.pipelining.maxrequests and set it to 8, if your internet starts to get a bit tipsy after this set this value to a lower number.</li>
</ul>
<p>That was 12 small Firefox hacks that I use. Please share your favourite ones.</p>
<img src="http://feeds.feedburner.com/~r/Spiced2com/~4/6g-GVWSY51U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spiced2.com/12-firefox-tweaks-and-hacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.spiced2.com/12-firefox-tweaks-and-hacks/</feedburner:origLink></item>
		<item>
		<title>Website redesigns – what to think about</title>
		<link>http://feedproxy.google.com/~r/Spiced2com/~3/iB7GDcB4M3E/</link>
		<comments>http://www.spiced2.com/website-redesigns-what-to-think/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 16:04:39 +0000</pubDate>
		<dc:creator>Thomas Fjordside</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[redesign]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.spiced2.com/?p=578</guid>
		<description><![CDATA[I&#8217;ve done a bunch of redesigns lately and It&#8217;s been a challenge, to say the least. But I&#8217;ve learned a bunch about what not to do when you redesign a website. This is especially important when you are redesigning active and popular websites. If the site has been the same since 1996 and there isn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve done a bunch of redesigns lately and It&#8217;s been a challenge, to say the least. But I&#8217;ve learned a bunch about what not to do when you redesign a website. This is especially important when you are redesigning active and popular websites. If the site has been the same since 1996 and there isn&#8217;t much going on, it&#8217;s quite easy to redesign, but if it&#8217;s a popular site you have to be a little more careful in your redesign. These are some of the things that I have been thinking about during the redesigns, I hope they&#8217;ll help you too.<br />
<span id="more-578"></span></p>
<h3>Do not change everything</h3>
<p>Hold yourself back, just a little bit. Don&#8217;t go crazy right out of the gate. Have you ever heard the cries when facebook changes some really small detail? Now, facebook users say things, that&#8217;s kinda the point of facebook, but your users might not be telling you, when they get annoyed by changes you made. They might just leave. So be careful when making changes, be sure that it&#8217;s a change for the better and that it will not hurt the user experience.</p>
<h3>Keep return visitors in mind</h3>
<p>On a similar note, keep your biggest fans happy, that&#8217;s your return visitors, your repeat customers. You might even want to let them test your new design out and tell you what they think (put in a gift for participating). They will often give you a better understanding of what you do right and what they don&#8217;t use at all.</p>
<h3>Find and promote key content better</h3>
<p>A big part of redesigning a site is to find the important content and pages and promote them to visitors better than they were before. Find the content that people love and promote that to new visitors. Find the great pieces of content that nobody seems to be finding and promote those better too.</p>
<h3>Do shine up elements</h3>
<p>Some redesigns is just that, the look needs to be a little more modern and you can do that quite easily be making small changes to the site and making 4 very small changes will give the site a completely new feel without making the site hard to understand.</p>
<img src="http://feeds.feedburner.com/~r/Spiced2com/~4/iB7GDcB4M3E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.spiced2.com/website-redesigns-what-to-think/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.spiced2.com/website-redesigns-what-to-think/</feedburner:origLink></item>
	</channel>
</rss>

