<?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>Web Design Vista Blog</title>
	<atom:link href="http://webdesignvista.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://webdesignvista.com/blog</link>
	<description></description>
	<lastBuildDate>Sat, 09 Jan 2010 14:13:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>List of Social Bookmarking Web Sites</title>
		<link>http://webdesignvista.com/blog/list-of-social-bookmarking-web-sites/</link>
		<comments>http://webdesignvista.com/blog/list-of-social-bookmarking-web-sites/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 14:27:07 +0000</pubDate>
		<dc:creator>iamzen</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://webdesignvista.com/blog/?p=31</guid>
		<description><![CDATA[Why another social bookmarking sites list &#8211; you may ask.
Well, there are lists and then there are lists. Some are good, some bad some downright ugly. There are not many lists of social bookmarking sites that list truly social bookmarking websites. Most of the lists consist of social networking and social news submission sites as [...]]]></description>
			<content:encoded><![CDATA[<p>Why another social bookmarking sites list &#8211; you may ask.</p>
<p>Well, there are lists and then there are lists. Some are good, some bad some downright ugly. There are not many lists of social bookmarking sites that list truly social bookmarking websites. Most of the lists consist of social networking and social news submission sites as well making it difficult to  segregate the true social bookmarking websites that allow you to do only one thing &#8211; bookmark your site.</p>
<p>I have spent many hours on the net to compile this list. I know that some of the listings will go bad after a while. But you need not worry! I will keep this list regularly updated with worthwhile social bookmarking sites that can serve your marketing purposes.</p>
<p>1. <a title="stumble upon" href="http://www.stumbleupon.com/" target="_self">Stumble Upon</a> : The grand dad of all social bookmarking sites. This one is an amazing site that keeps visitors entertained with unique, offbeat quality websites. Its user base has been growing exponentially over the years.  A few of my sites have experienced decent amount of traffic after getting bookmarked here.  Travel sites tend to draw more traffic via stumble upon &#8211; just my observation. If you have a remarkable website then you can not ignore stumble upon as a marketing channel.</p>
<p>2.<a href="http://delicious.com/"> Delicious</a> : An oldie, delicious had the rather tongue twisting domain name del.icio.us during the initial stages. Thank god, it has now been renamed/redirected to more chewable delicious.com! Like stumbleupon, this one also can send you huge traffic, especially if your bookmark makes it to the front page. Google used to rank the delicious tag pages some 2 years back, but since then has stopped ranking these pages as people started spamming the tag pages.  If you have even an average website you need to bookmark it on delicious.</p>
<p>3. <a href="http://spurl.net/">Spurl</a> : I came to know about spurl when i noticed a few referrals to some of my client sites from spurl. One of the sites made it to hot spurls section on the front page and received a few hundred visitors over next 5 &#8211; 6 days. I have bookmarked most of my sites in spurl now. I will keep you posted about the results.</p>
<p>4. <a href="http://blinklist.com/">Blink List</a>: A few technology sites that i bookmarked here got decent traffic over the last 3 &#8211; 4 months.</p>
<p>5. <a href="http://www.diigo.com/">Diigo</a> : Branded as a research tool, Diigo is a collaborative application that makes information discovery easy with its rich set of web tools.</p>
<p>6. <a href="http://faves.com">Faves</a>: Easy to use social bookmarking application. Previously known as bluedot.us.</p>
<p>Update: I was going to post the complete list of 50 social sites that have generated traffic for me in the past.  But i came across comprehensive list on the net that covers all the sites in my list.  So  i will point you to that list instead (kudos to me for preventing information pollution <img src='http://webdesignvista.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> )</p>
<p><a href="http://www.social-bookmarking-sites-list.com/">http://www.social-bookmarking-sites-list.com/</a></p>
<p>I have not personally tested all these site, so i would appreciate if you can post your experience with these sites on the comments section below.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignvista.com/blog/list-of-social-bookmarking-web-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redirecting URLs without www prefix to URLs with www Prefix using htaccess</title>
		<link>http://webdesignvista.com/blog/redirecting-urls-without-www-prefix-to-urls-with-www-prefix-using-htaccess/</link>
		<comments>http://webdesignvista.com/blog/redirecting-urls-without-www-prefix-to-urls-with-www-prefix-using-htaccess/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 12:47:59 +0000</pubDate>
		<dc:creator>iamzen</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://webdesignvista.com/blog/?p=29</guid>
		<description><![CDATA[Put the following lines of code in htaccess:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yourdomain.com$
RewriteRule (.*) http://www.yourdomain.com/$1 [R=301,L]
Replace yourdomain.com with your actual domain name.
]]></description>
			<content:encoded><![CDATA[<p>Put the following lines of code in htaccess:</p>
<p><code>RewriteEngine on<br />
RewriteCond %{HTTP_HOST} ^yourdomain.com$<br />
RewriteRule (.*) http://www.yourdomain.com/$1 [R=301,L]</code></p>
<p>Replace yourdomain.com with your actual domain name.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignvista.com/blog/redirecting-urls-without-www-prefix-to-urls-with-www-prefix-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to do 301 (Permanent Redirection) in PHP</title>
		<link>http://webdesignvista.com/blog/how-to-do-301-permanent-redirection-in-php/</link>
		<comments>http://webdesignvista.com/blog/how-to-do-301-permanent-redirection-in-php/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 12:17:26 +0000</pubDate>
		<dc:creator>iamzen</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://webdesignvista.com/blog/?p=25</guid>
		<description><![CDATA[It is really simple.
Just put the following 2 lines at the top of the page you are trying to redirect.
header(&#8220;HTTP/1.1 301 Moved Permanently&#8221;);
header (&#8216;location: &#60;&#60;your landing page&#62;&#62;&#8221;);
Replace &#60;&#60;your landing page&#62;&#62; with the URL of the landing page.
Remember, you need these 2 lines before any output statement is made on your script, else you will get [...]]]></description>
			<content:encoded><![CDATA[<p>It is really simple.</p>
<p>Just put the following 2 lines at the top of the page you are trying to redirect.</p>
<p>header(&#8220;HTTP/1.1 301 Moved Permanently&#8221;);<br />
header (&#8216;location: &lt;&lt;your landing page&gt;&gt;&#8221;);</p>
<p>Replace &lt;&lt;your landing page&gt;&gt; with the URL of the landing page.</p>
<p>Remember, you need these 2 lines before any output statement is made on your script, else you will get a &#8216;headers already sent&#8217; error.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignvista.com/blog/how-to-do-301-permanent-redirection-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Sitemap Script (php) for Static Websites</title>
		<link>http://webdesignvista.com/blog/google-sitemap-script-php-for-static-websites/</link>
		<comments>http://webdesignvista.com/blog/google-sitemap-script-php-for-static-websites/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 13:34:17 +0000</pubDate>
		<dc:creator>iamzen</dc:creator>
				<category><![CDATA[scripts]]></category>
		<category><![CDATA[google sitemap]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php sitemap]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://webdesignvista.com/blog/google-sitemap-script-php-for-static-websites/</guid>
		<description><![CDATA[Just completed a Google sitemap script in PHP. I had been long searching for a script for static sites but found none suitable. Most scripts are incomplete and wont run on my server. Plus i did not want to spend money after a simple thing such as a sitemap. So i wrote my own script [...]]]></description>
			<content:encoded><![CDATA[<p>Just completed a Google sitemap script in PHP. I had been long searching for a script for static sites but found none suitable. Most scripts are incomplete and wont run on my server. Plus i did not want to spend money after a simple thing such as a sitemap. So i wrote my own script in PHP.</p>
<p>You can download it from <a href="http://www.webdesignvista.com/scripts/sitemap.zip" target="_blank">http://www.webdesignvista.com/scripts/sitemap.zip</a>, for any support related queries post a comment below this post.</p>
<p>Some people are asking $20 &#8211; $25 for the same set of features! I dont charge a penny for it! Its FREE!!! <img src='http://webdesignvista.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Have a look at the features below:</strong></p>
<p>1. Set option to ignore certain files<br />
2. Set option to ignore certain file extensions (ex. doc, pdf etc)<br />
3. Set option to ignore certain folders.<br />
4. Sitemap updates automatically each time you create/upload a static file on your server &#8211; so no ongoing administration needed from your side<br />
5. Follows sitemap protocol specified by Google.<br />
6. Includes style sheet to get a nice sitemap output like this one: <a href="http://www.aetw.org/sitemap.php">http://www.aetw.org/sitemap.php</a></p>
<p><strong>Installation Instructions:</strong><br />
1. Unzip sitemap.zip<br />
2. Upload sitemap.php, sitemap_config.php and sitemap_style.xls to your root directory (document root).<br />
3. Open sitemap_config.php and set up values for your own website.<br />
4. Open sitemap.php in browser &#8211; you are done!</p>
<p>If you have trouble using this sitemap or have any queries then post a comment below this post.</p>
<p><a href="http://www.scripts.com">Best Scripts on the Internet &#8211; Scripts.com™!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignvista.com/blog/google-sitemap-script-php-for-static-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Hide Blogger Navigation Bar in Blogspot Blogs</title>
		<link>http://webdesignvista.com/blog/how-to-hide-blogger-navigation-bar-in-blogspot-blogs/</link>
		<comments>http://webdesignvista.com/blog/how-to-hide-blogger-navigation-bar-in-blogspot-blogs/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 14:02:54 +0000</pubDate>
		<dc:creator>iamzen</dc:creator>
				<category><![CDATA[how to]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://webdesignvista.com/blog/?p=8</guid>
		<description><![CDATA[If you have a blogspot blog you must have noticed the blogger navigation bar at the top of the page. Looks distracting to me!
If you want to know how to hide that navigation bar from displaying, there are 2 tricks &#8211; one based on javascript and the 2nd one pure CSS code.
Here i am describing [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a blogspot blog you must have noticed the blogger navigation bar at the top of the page. Looks distracting to me!</p>
<p>If you want to know how to hide that navigation bar from displaying, there are 2 tricks &#8211; one based on javascript and the 2nd one pure CSS code.</p>
<p>Here i am describing the CSS hack to hide the navigation bar. Javascript code for hiding the navigation bar will be posted later.</p>
<p>Here is what need to do:</p>
<p>Login to your blogger account</p>
<p>Click on &#8216;Layout&#8217; option</p>
<p>Click on &#8216;Edit HTML&#8217; option under &#8216;Layout&#8217; tab</p>
<p>You will be presented with the &#8216;Edit Template&#8217; screen</p>
<p>Find following line</p>
<p>body {<br />
margin: 0;<br />
padding: 0;<br />
font-size: small;<br />
text-align: center;<br />
color: $textcolor;<br />
background: #000000<br />
}</p>
<p>[NOTE: code between body{ } may vary depending on the template chosen]</p>
<p>Just below this code copy and paste the following code -</p>
<p>#navbar-iframe{</p>
<p>display: none;</p>
<p>}</p>
<p>Now save the template and publish.</p>
<p>Thats it, you are done! Check out the blog in a new window. The navigation bar will be gone.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignvista.com/blog/how-to-hide-blogger-navigation-bar-in-blogspot-blogs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
