<?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>Prozilla 2.0</title>
	<atom:link href="http://prozilla.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://prozilla.net/blog</link>
	<description>Webmastery and SEO Community</description>
	<lastBuildDate>Wed, 03 Feb 2010 18:41:32 +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>Javascript Form Validation</title>
		<link>http://prozilla.net/blog/2010/02/03/javascript-form-validation/</link>
		<comments>http://prozilla.net/blog/2010/02/03/javascript-form-validation/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 18:21:45 +0000</pubDate>
		<dc:creator>Prozilla 2.0</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://prozilla.net/blog/?p=473</guid>
		<description><![CDATA[Using forms
to collect data is required for specific information and formatting, which can be used for sending message, populating databases, calculations etc., however missing and improper field data can cause problems with generating information. This W3 tutorial shows how to use javascript to check
Required Fields



function validate_required(field,alerttxt)
{
with (field)
{
if (value==null&#124;&#124;value==&#8221;")
{
alert(alerttxt);return false;
}
else
{
return true;
}
}
}



The entire script, with the HTML [...]]]></description>
			<content:encoded><![CDATA[<p>Using forms<br />
to collect data is required for specific information and formatting, which can be used for sending message, populating databases, calculations etc., however missing and improper field data can cause problems with generating information. This W3 tutorial shows how to use javascript to check</p>
<h1>Required Fields</h1>
<table class="code" border="0" cellspacing="0" cellpadding="4" width="100%">
<tbody>
<tr>
<td bgcolor="#e9e9e9">function validate_required(field,alerttxt)</p>
<p>{</p>
<p>with (field)</p>
<p>{</p>
<p>if (value==null||value==&#8221;")</p>
<p>{</p>
<p>alert(alerttxt);return false;</p>
<p>}</p>
<p>else</p>
<p>{</p>
<p>return true;</p>
<p>}</p>
<p>}</p>
<p>}</td>
</tr>
</tbody>
</table>
<p>The entire script, with the HTML form could look something like this:</p>
<table class="code" border="0" cellspacing="0" cellpadding="4" width="100%">
<tbody>
<tr>
<td bgcolor="#e9e9e9">&lt;html&gt;</p>
<p>&lt;head&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221;&gt;</p>
<p>function validate_required(field,alerttxt)</p>
<p>{</p>
<p>with (field)</p>
<p>{</p>
<p>if (value==null||value==&#8221;")</p>
<p>{</p>
<p>alert(alerttxt);return false;</p>
<p>}</p>
<p>else</p>
<p>{</p>
<p>return true;</p>
<p>}</p>
<p>}</p>
<p>}</p>
<p>function validate_form(thisform)</p>
<p>{</p>
<p>with (thisform)</p>
<p>{</p>
<p>if (validate_required(email,&#8221;Email must be filled out!&#8221;)==false)</p>
<p>{email.focus();return false;}</p>
<p>}</p>
<p>if (validate_required(name,&#8221;Name must be filled out!&#8221;)==false)</p>
<p>{email.focus();return false;}</p>
<p>}</p>
<p>}</p>
<p>&lt;/script&gt;</p>
<p>&lt;/head&gt;</p>
<p>&lt;body&gt;</p>
<p>&lt;form action=&#8221;submit.htm&#8221;<br />
onsubmit=&#8221;return validate_form(this)&#8221;<br />
method=&#8221;post&#8221;&gt;<br />
email: &lt;input type=&#8221;text&#8221; name=&#8221;email&#8221; size=&#8221;30&#8243;&gt;</p>
<p>name: &lt;input type=&#8221;text&#8221; name=&#8221;name&#8221; size=&#8221;30&#8243;&gt;<br />
&lt;input type=&#8221;submit&#8221; value=&#8221;Submit&#8221;&gt;</p>
<p>&lt;/form&gt;</p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</td>
</tr>
</tbody>
</table>
<hr />
<h2>E-mail Validation</h2>
<p>The function below checks if the content has the general syntax of an email and looks for @ sign and a dot (.).<br />
Also, the @ must not be the first character of the email address, and the last<br />
dot must at least be one character after the @ sign:</p>
<table class="code" border="0" cellspacing="0" cellpadding="4" width="100%">
<tbody>
<tr>
<td bgcolor="#e9e9e9">function validate_email(field,alerttxt)</p>
<p>{</p>
<p>with (field)</p>
<p>{</p>
<p>apos=value.indexOf(&#8220;@&#8221;);</p>
<p>dotpos=value.lastIndexOf(&#8220;.&#8221;);</p>
<p>if (apos&lt;1||dotpos-apos&lt;2)</p>
<p>{alert(alerttxt);return false;}</p>
<p>else {return true;}</p>
<p>}</p>
<p>}</td>
</tr>
</tbody>
</table>
<p>The entire script, with the HTML form could look something like this:</p>
<table class="code" border="0" cellspacing="0" cellpadding="4" width="100%">
<tbody>
<tr>
<td bgcolor="#e9e9e9">&lt;html&gt;</p>
<p>&lt;head&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221;&gt;</p>
<p>function validate_email(field,alerttxt)</p>
<p>{</p>
<p>with (field)</p>
<p>{</p>
<p>apos=value.indexOf(&#8220;@&#8221;);</p>
<p>dotpos=value.lastIndexOf(&#8220;.&#8221;);</p>
<p>if (apos&lt;1||dotpos-apos&lt;2)</p>
<p>{alert(alerttxt);return false;}</p>
<p>else {return true;}</p>
<p>}</p>
<p>}</p>
<p>function validate_form(thisform)</p>
<p>{</p>
<p>with (thisform)</p>
<p>{</p>
<p>if (validate_email(email,&#8221;Not a valid e-mail address!&#8221;)==false)</p>
<p>{email.focus();return false;}</p>
<p>}</p>
<p>}</p>
<p>&lt;/script&gt;</p>
<p>&lt;/head&gt;</p>
<p>&lt;body&gt;</p>
<p>&lt;form action=&#8221;submit.htm&#8221;<br />
onsubmit=&#8221;return validate_form(this);&#8221;<br />
method=&#8221;post&#8221;&gt;</p>
<p>Email: &lt;input type=&#8221;text&#8221; name=&#8221;email&#8221; size=&#8221;30&#8243;&gt;</p>
<p>&lt;input type=&#8221;submit&#8221; value=&#8221;Submit&#8221;&gt;</p>
<p>&lt;/form&gt;</p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</td>
</tr>
</tbody>
</table>
<a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F03%2Fjavascript-form-validation%2F&amp;linkname=Javascript%20Form%20Validation" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/blogger_post?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F03%2Fjavascript-form-validation%2F&amp;linkname=Javascript%20Form%20Validation" title="Blogger Post" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/blogger.png" width="16" height="16" alt="Blogger Post"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F03%2Fjavascript-form-validation%2F&amp;linkname=Javascript%20Form%20Validation" title="Delicious" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F03%2Fjavascript-form-validation%2F&amp;linkname=Javascript%20Form%20Validation" title="Digg" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F03%2Fjavascript-form-validation%2F&amp;linkname=Javascript%20Form%20Validation" title="Facebook" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F03%2Fjavascript-form-validation%2F&amp;linkname=Javascript%20Form%20Validation" title="Reddit" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/yahoo_buzz?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F03%2Fjavascript-form-validation%2F&amp;linkname=Javascript%20Form%20Validation" title="Yahoo Buzz" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/buzz.png" width="16" height="16" alt="Yahoo Buzz"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F03%2Fjavascript-form-validation%2F&amp;linkname=Javascript%20Form%20Validation" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F03%2Fjavascript-form-validation%2F&amp;linkname=Javascript%20Form%20Validation" title="Twitter" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F03%2Fjavascript-form-validation%2F&amp;linkname=Javascript%20Form%20Validation" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/squidoo?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F03%2Fjavascript-form-validation%2F&amp;linkname=Javascript%20Form%20Validation" title="Squidoo" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/squidoo.png" width="16" height="16" alt="Squidoo"/></a> <a href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F03%2Fjavascript-form-validation%2F&amp;linkname=Javascript%20Form%20Validation" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F03%2Fjavascript-form-validation%2F&amp;linkname=Javascript%20Form%20Validation">Share/Bookmark</a>]]></content:encoded>
			<wfw:commentRss>http://prozilla.net/blog/2010/02/03/javascript-form-validation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using blogs to create backlinks</title>
		<link>http://prozilla.net/blog/2010/02/02/using-blogs-to-create-backlinks/</link>
		<comments>http://prozilla.net/blog/2010/02/02/using-blogs-to-create-backlinks/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 16:47:46 +0000</pubDate>
		<dc:creator>Prozilla 2.0</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[SEM]]></category>

		<guid isPermaLink="false">http://prozilla.net/blog/?p=470</guid>
		<description><![CDATA[Prozilla 2.0 is a website that is based on WordPress. If you don&#8217;t know what WordPress is, you should as it is a content management system that seriously helps your SERP&#8217;s (Search Engine Results Pages).
First, by using WordPress, you can enable visitor&#8217;s to make comments on your posts which keeps your content fresh which SE [...]]]></description>
			<content:encoded><![CDATA[<p>Prozilla 2.0 is a website that is based on WordPress. If you don&#8217;t know what WordPress is, you should as it is a content management system that seriously helps your SERP&#8217;s (Search Engine Results Pages).</p>
<p>First, by using WordPress, you can enable visitor&#8217;s to make comments on your posts which keeps your content fresh which SE robots like which in turn increases your value as a website.  Sounds good? It&#8217;s great! But not only can having your own WordPress based website be great for your SEO campaign, but other websites that are Wordpress or blog based, are great for you to use to create backlinks to your own website. By posting good, post related comments, you create a link to your own website that SE robots index.</p>
<p>To check it out, members can use our SEO tools, or enter your URL with Yahoo&#8217;s Site Explorer: http://siteexplorer.search.yahoo.com/</p>
<p>Visit the members forum to find out how and where you can create quality backlinks with keyword optimization.<a href="http://prozilla.net/forum/index.php/topic,40.0.html">Members click here</a></p>
<a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F02%2Fusing-blogs-to-create-backlinks%2F&amp;linkname=Using%20blogs%20to%20create%20backlinks" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/blogger_post?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F02%2Fusing-blogs-to-create-backlinks%2F&amp;linkname=Using%20blogs%20to%20create%20backlinks" title="Blogger Post" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/blogger.png" width="16" height="16" alt="Blogger Post"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F02%2Fusing-blogs-to-create-backlinks%2F&amp;linkname=Using%20blogs%20to%20create%20backlinks" title="Delicious" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F02%2Fusing-blogs-to-create-backlinks%2F&amp;linkname=Using%20blogs%20to%20create%20backlinks" title="Digg" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F02%2Fusing-blogs-to-create-backlinks%2F&amp;linkname=Using%20blogs%20to%20create%20backlinks" title="Facebook" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F02%2Fusing-blogs-to-create-backlinks%2F&amp;linkname=Using%20blogs%20to%20create%20backlinks" title="Reddit" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/yahoo_buzz?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F02%2Fusing-blogs-to-create-backlinks%2F&amp;linkname=Using%20blogs%20to%20create%20backlinks" title="Yahoo Buzz" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/buzz.png" width="16" height="16" alt="Yahoo Buzz"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F02%2Fusing-blogs-to-create-backlinks%2F&amp;linkname=Using%20blogs%20to%20create%20backlinks" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F02%2Fusing-blogs-to-create-backlinks%2F&amp;linkname=Using%20blogs%20to%20create%20backlinks" title="Twitter" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F02%2Fusing-blogs-to-create-backlinks%2F&amp;linkname=Using%20blogs%20to%20create%20backlinks" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/squidoo?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F02%2Fusing-blogs-to-create-backlinks%2F&amp;linkname=Using%20blogs%20to%20create%20backlinks" title="Squidoo" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/squidoo.png" width="16" height="16" alt="Squidoo"/></a> <a href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F02%2Fusing-blogs-to-create-backlinks%2F&amp;linkname=Using%20blogs%20to%20create%20backlinks" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F02%2F02%2Fusing-blogs-to-create-backlinks%2F&amp;linkname=Using%20blogs%20to%20create%20backlinks">Share/Bookmark</a>]]></content:encoded>
			<wfw:commentRss>http://prozilla.net/blog/2010/02/02/using-blogs-to-create-backlinks/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Models SEO Website</title>
		<link>http://prozilla.net/blog/2010/01/24/models-seo-website/</link>
		<comments>http://prozilla.net/blog/2010/01/24/models-seo-website/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 22:00:51 +0000</pubDate>
		<dc:creator>Prozilla 2.0</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[SEO Directories]]></category>

		<guid isPermaLink="false">http://prozilla.net/blog/?p=466</guid>
		<description><![CDATA[



Demo this web site
Install this web site
How to use the Prozilla 2.0 Installer



This website is a PHP/MySQL SEO website for models and agencies. Listings can be free or paid, and upgrade plans are available. Site also includes reviews for listings. This site is attractive to agency and independant modeling listers as it will give their [...]]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="4" width="568">
<tbody>
<tr>
<td width="39%"><img src="http://www.prozilla.net/thumbs/models_2.gif" alt="" width="200" height="143" /></td>
<td width="61%" valign="top"><a href="http://www.turnkeyzone.com/models" target="_blank"><strong>Demo this web site</strong></a></p>
<p><a href="http://www.prozilla.net/members/installer/index.php?script=609" target="_blank"><strong>Install this web site</strong></a></p>
<p><a href="http://prozilla.net/forum/index.php/topic,18.0.html" target="_blank">How to use the Prozilla 2.0 Installer</a></td>
</tr>
</tbody>
</table>
<p>This website is a PHP/MySQL SEO website for models and agencies. Listings can be free or paid, and upgrade plans are available. Site also includes reviews for listings. This site is attractive to agency and independant modeling listers as it will give their company/organization a top listing once listings start to be spidered through the search engines. You only need 3-4 listings to get your started. See the Prozilla forum as how to market this website.</p>
<p>The site also boasts search engine friendly URL&#8217;s for all listings making it a search engine optimized directory. Also features an included page for small banner ads. These spots can be sold to models/agencies or be used as affiliate based banners for other model directories, photographers, advertising companies and copy writers or related affiliate type websites, earning you a commission.</p>
<p>For this web site, you must have a Google Adsense publisher ID and a Cpanel hosting account (Our installer will not work on other platforms where the root web folder is not public_html). The Prozilla 2.0 Installer will install this web site in the root location of a domain name (ie: http://www.turnkeyzone.com) or in a folder (<a href="http://www.turnkeyzone.com/models">http://www.turnkeyzone.com/models</a>)</p>
<p><a href="https://www.google.com/adsense/login/en_US/" target="_blank"><strong>Signup for Google Adsense</strong></a></p>
<a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F24%2Fmodels-seo-website%2F&amp;linkname=Models%20SEO%20Website" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/blogger_post?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F24%2Fmodels-seo-website%2F&amp;linkname=Models%20SEO%20Website" title="Blogger Post" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/blogger.png" width="16" height="16" alt="Blogger Post"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F24%2Fmodels-seo-website%2F&amp;linkname=Models%20SEO%20Website" title="Delicious" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F24%2Fmodels-seo-website%2F&amp;linkname=Models%20SEO%20Website" title="Digg" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F24%2Fmodels-seo-website%2F&amp;linkname=Models%20SEO%20Website" title="Facebook" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F24%2Fmodels-seo-website%2F&amp;linkname=Models%20SEO%20Website" title="Reddit" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/yahoo_buzz?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F24%2Fmodels-seo-website%2F&amp;linkname=Models%20SEO%20Website" title="Yahoo Buzz" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/buzz.png" width="16" height="16" alt="Yahoo Buzz"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F24%2Fmodels-seo-website%2F&amp;linkname=Models%20SEO%20Website" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F24%2Fmodels-seo-website%2F&amp;linkname=Models%20SEO%20Website" title="Twitter" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F24%2Fmodels-seo-website%2F&amp;linkname=Models%20SEO%20Website" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/squidoo?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F24%2Fmodels-seo-website%2F&amp;linkname=Models%20SEO%20Website" title="Squidoo" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/squidoo.png" width="16" height="16" alt="Squidoo"/></a> <a href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F24%2Fmodels-seo-website%2F&amp;linkname=Models%20SEO%20Website" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F24%2Fmodels-seo-website%2F&amp;linkname=Models%20SEO%20Website">Share/Bookmark</a>]]></content:encoded>
			<wfw:commentRss>http://prozilla.net/blog/2010/01/24/models-seo-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>301 Redirect using .htaccess</title>
		<link>http://prozilla.net/blog/2010/01/03/301-redirect-using-htaccess/</link>
		<comments>http://prozilla.net/blog/2010/01/03/301-redirect-using-htaccess/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 19:47:26 +0000</pubDate>
		<dc:creator>Prozilla 2.0</dc:creator>
				<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[White Hat SEO]]></category>

		<guid isPermaLink="false">http://prozilla.net/blog/?p=452</guid>
		<description><![CDATA[301 redirect is the smoothest and most SEO friendly way to redirect traffic for a domain or webpage. We do this with .htaccess. This will only work on Apache and not on Windows servers.
If you do have an .htaccess file in your root directory, create one and upload in ASCII (text) mode.
To redirect a single [...]]]></description>
			<content:encoded><![CDATA[<p>301 redirect is the smoothest and most SEO friendly way to redirect traffic for a domain or webpage. We do this with .htaccess. This will only work on Apache and not on Windows servers.</p>
<p>If you do have an .htaccess file in your root directory, create one and upload in ASCII (text) mode.</p>
<p><strong>To redirect a single page</strong></p>
<p>Redirect 301 /oldpage.html http://www.example.com/newpage.html</p>
<p><strong>To redirect an entire site</strong></p>
<p>Redirect 301 / http://www.example.com/</p>
<p><strong>301 and Search Engine Optimization</strong></p>
<p>From a search engine point of view, 301 redirects are the <strong>only acceptable way</strong> to redirect URLs.  In the case of moved pages, search engines will index only the new         URL, but will transfer link popularity from the old URL to the new one so that search         engine rankings are not affected. The same behavior occurs when additional domains are set         to point to the main domain through a 301 redirect. If we use Meta-Refresh or delete the page/domain all together, we are loosing those rankings.</p>
<p>More information on using 301 for SEO can be found in the <strong><a title="members forum" href="http://prozilla.net/forum/index.php/topic,54.msg54.html" target="_blank">members forum</a></strong>.</p>
<a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F03%2F301-redirect-using-htaccess%2F&amp;linkname=301%20Redirect%20using%20.htaccess" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/blogger_post?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F03%2F301-redirect-using-htaccess%2F&amp;linkname=301%20Redirect%20using%20.htaccess" title="Blogger Post" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/blogger.png" width="16" height="16" alt="Blogger Post"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F03%2F301-redirect-using-htaccess%2F&amp;linkname=301%20Redirect%20using%20.htaccess" title="Delicious" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F03%2F301-redirect-using-htaccess%2F&amp;linkname=301%20Redirect%20using%20.htaccess" title="Digg" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F03%2F301-redirect-using-htaccess%2F&amp;linkname=301%20Redirect%20using%20.htaccess" title="Facebook" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F03%2F301-redirect-using-htaccess%2F&amp;linkname=301%20Redirect%20using%20.htaccess" title="Reddit" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/yahoo_buzz?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F03%2F301-redirect-using-htaccess%2F&amp;linkname=301%20Redirect%20using%20.htaccess" title="Yahoo Buzz" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/buzz.png" width="16" height="16" alt="Yahoo Buzz"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F03%2F301-redirect-using-htaccess%2F&amp;linkname=301%20Redirect%20using%20.htaccess" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F03%2F301-redirect-using-htaccess%2F&amp;linkname=301%20Redirect%20using%20.htaccess" title="Twitter" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F03%2F301-redirect-using-htaccess%2F&amp;linkname=301%20Redirect%20using%20.htaccess" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/squidoo?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F03%2F301-redirect-using-htaccess%2F&amp;linkname=301%20Redirect%20using%20.htaccess" title="Squidoo" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/squidoo.png" width="16" height="16" alt="Squidoo"/></a> <a href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F03%2F301-redirect-using-htaccess%2F&amp;linkname=301%20Redirect%20using%20.htaccess" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F03%2F301-redirect-using-htaccess%2F&amp;linkname=301%20Redirect%20using%20.htaccess">Share/Bookmark</a>]]></content:encoded>
			<wfw:commentRss>http://prozilla.net/blog/2010/01/03/301-redirect-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What is Alexa?</title>
		<link>http://prozilla.net/blog/2010/01/01/what-is-alexa/</link>
		<comments>http://prozilla.net/blog/2010/01/01/what-is-alexa/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 22:03:53 +0000</pubDate>
		<dc:creator>Prozilla 2.0</dc:creator>
				<category><![CDATA[Alexa]]></category>

		<guid isPermaLink="false">http://prozilla.net/?p=158</guid>
		<description><![CDATA[Alexa, The Web Information Company, is an Amazon.com entity that meters website traffic added to it&#8217;s index. The company offers a toolbar that gives Internet users suggestions on where to go next, based on the traffic patterns of its user community. Alexa also offers context for each site visited: to whom it was registered, how [...]]]></description>
			<content:encoded><![CDATA[<p>Alexa, The Web Information Company, is an Amazon.com entity that meters website traffic added to it&#8217;s index. The company offers a toolbar that gives Internet users suggestions on where to go next, based on the traffic patterns of its user community. Alexa also offers context for each site visited: to whom it was registered, how many pages it had, how many other sites pointed to it, and how frequently it was updated.</p>
<p>Alexa includes archiving of webpages as they are crawled. This database served as the basis for the creation of the Internet Archive (also located in the Presidio) and its Wayback Machine. Alexa continues to supply the Internet Archive with web crawls.</p>
<p>ok, so this might sound like a bunch of blah, blah, blah, but other than Google, Alexa does pull a lot of weight with some advertisers, other search engines (not Google) who use Alexa ratings in their algorythms and for generating additional traffic to your website.</p>
<p>Alexa can be considered a bad word to some marketing guru&#8217;s because it can be easily manipulated, but it&#8217;s a bad word that is quietly overlooked, just because the value is there, not just to help some search engine placement, but to sell your website to potential advertisers and increase traffic.</p>
<p>First, take a look at Alexa&#8217;s <a href="http://www.alexa.com/topsites" target="_blank">top sites list</a>. It will open in a new window, you can close it to return to this page after. Looks pretty accurate right? Google, Facebook, Yahoo, You Tube, Twitter and Yahoo! all top in the list. The ranking system works from 1 in the rankings and counts to down to how many websites it has indexed. So if a new website is added and crawled, you would likely see traffic rankings of about 23,000,000, Google, of course ranking at number 1.</p>
<p><strong>So how again is Alexa information useful?</strong></p>
<p>1. Based on your rankings, Alexa can suggest your website to it&#8217;s toolbar users.<br />
2. Based on your rankings, some search engines and directories give better page rank to higher ranking websites.<br />
3. Based on your rankings, you can promote your Alexa rankings to advertisers, and potential customers.</p>
<p>More information about Alexa and how it is benefitial to YOUR business can be found in the <a href="http://www.prozilla.net/forum"><strong>members forum</strong>.</a></p>
<a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Fwhat-is-alexa%2F&amp;linkname=What%20is%20Alexa%3F" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/blogger_post?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Fwhat-is-alexa%2F&amp;linkname=What%20is%20Alexa%3F" title="Blogger Post" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/blogger.png" width="16" height="16" alt="Blogger Post"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Fwhat-is-alexa%2F&amp;linkname=What%20is%20Alexa%3F" title="Delicious" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Fwhat-is-alexa%2F&amp;linkname=What%20is%20Alexa%3F" title="Digg" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Fwhat-is-alexa%2F&amp;linkname=What%20is%20Alexa%3F" title="Facebook" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Fwhat-is-alexa%2F&amp;linkname=What%20is%20Alexa%3F" title="Reddit" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/yahoo_buzz?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Fwhat-is-alexa%2F&amp;linkname=What%20is%20Alexa%3F" title="Yahoo Buzz" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/buzz.png" width="16" height="16" alt="Yahoo Buzz"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Fwhat-is-alexa%2F&amp;linkname=What%20is%20Alexa%3F" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Fwhat-is-alexa%2F&amp;linkname=What%20is%20Alexa%3F" title="Twitter" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Fwhat-is-alexa%2F&amp;linkname=What%20is%20Alexa%3F" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/squidoo?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Fwhat-is-alexa%2F&amp;linkname=What%20is%20Alexa%3F" title="Squidoo" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/squidoo.png" width="16" height="16" alt="Squidoo"/></a> <a href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Fwhat-is-alexa%2F&amp;linkname=What%20is%20Alexa%3F" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Fwhat-is-alexa%2F&amp;linkname=What%20is%20Alexa%3F">Share/Bookmark</a>]]></content:encoded>
			<wfw:commentRss>http://prozilla.net/blog/2010/01/01/what-is-alexa/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Top Pix: 10 Free Wordpress Themes for January 2010</title>
		<link>http://prozilla.net/blog/2010/01/01/top-pix-10-free-wordpress-themes-for-january-2010/</link>
		<comments>http://prozilla.net/blog/2010/01/01/top-pix-10-free-wordpress-themes-for-january-2010/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 21:47:31 +0000</pubDate>
		<dc:creator>Prozilla 2.0</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://prozilla.net/blog/?p=408</guid>
		<description><![CDATA[Top 10 FREE Wordpress Themes for January 2010

Fusion [Demo]


Infinity [Demo]


Vintage   and Blues [Demo]


Gallery [Demo]


Folio Elements [Demo]


Irresistible [Demo]


Outdoorsy [Demo]


WildDreams [Demo]


Absynthe [Demo]


Masinop [Demo]

            Share/Bookmark]]></description>
			<content:encoded><![CDATA[<p>Top 10 FREE Wordpress Themes for January 2010
</p>
<p><a href="http://digitalnature.ro/projects/fusion/" target="_blank">Fusion</a> [<a href="http://dev.digitalnature.ro/fusion/wordpress/" target="_blank">Demo</a>]</p>
<p><img src="http://www.prozilla.net/images/wordpress/fusion.jpg" width="480" height="281" /></p>
<hr />
<p><a href="http://www.smashingmagazine.com/2008/08/08/infinity-a-free-wordpress-theme/" target="_blank">Infinity</a> [<a href="http://media.smashingmagazine.com/cdn_smash/images/infinity-wordpress-theme/preview-large.png" target="_blank">Demo</a>]</p>
<p><img src="http://www.prozilla.net/images/wordpress/infinity.jpg" width="480" height="281" /></p>
<hr />
<p><a href="http://www.smashingmagazine.com/2009/01/28/vintage-and-blues-wordpress-themes/" target="_blank">Vintage   and Blues</a> [<a href="http://dev1.agriya.com/wpthemes/?wptheme=wordpress-brown" target="_blank">Demo</a>]</p>
<p><img src="http://www.prozilla.net/images/wordpress/vintage.jpg" width="480" height="281" /></p>
<hr />
<p><a href="http://www.smashingmagazine.com/2009/05/04/download-gallery-a-free-wordpress-theme/" target="_blank">Gallery</a> [<a href="http://mixcss.com/" target="_blank">Demo</a>]</p>
<p><img src="http://www.prozilla.net/images/wordpress/gallery.jpg" width="480" height="281" /></p>
<hr />
<p><a href="http://www.press75.com/folio-elements/" target="_blank">Folio Elements</a> [<a href="http://www.press75.com/demos/folio-elements/" target="_blank">Demo</a>]</p>
<p><img src="http://www.prozilla.net/images/wordpress/folio.jpg" width="480" height="281" /></p>
<hr />
<p><a href="http://www.woothemes.com/2009/02/irresistible/" target="_blank">Irresistible</a> [<a href="http://www.woothemes.com/demo/?t=25" target="_blank">Demo</a>]</p>
<p><img src="http://www.prozilla.net/images/wordpress/irresistable.jpg" width="480" height="281" /></p>
<hr />
<p><a href="http://wefunction.com/2008/07/free-theme-outdoorsy/" target="_blank">Outdoorsy</a> [<a href="http://wefunction.com/themes/index.php?preview_theme=outdoorsy" target="_blank">Demo</a>]</p>
<p><img src="http://www.prozilla.net/images/wordpress/outdoorsy.jpg" width="480" height="281" /></p>
<hr />
<p><a href="http://www.productivedreams.com/wilddreams-another-free-wordpress-theme/" target="_blank">WildDreams</a> [<a href="http://wilddreams.productivedreams.com/" target="_blank">Demo</a>]</p>
<p><img src="http://www.prozilla.net/images/wordpress/wilddreams.jpg" width="480" height="281" /></p>
<hr />
<p><a href="http://www.chris-wallace.com/2009/01/05/absynthe-wordpress-theme/" target="_blank">Absynthe</a> [<a href="http://www.chris-wallace.com/?theme=Absynthe" target="_blank">Demo</a>]</p>
<p><img src="http://www.prozilla.net/images/wordpress/absynthe.jpg" width="480" height="281" /></p>
<hr />
<p><a href="http://www.paddsolutions.com/wordpress-theme-masinop/" target="_blank">Masinop</a> [<a href="http://www.paddsolutions.com/wpthemes/switch.php?template=masinop" target="_blank">Demo</a>]</p>
<p><img src="http://www.prozilla.net/images/wordpress/masinop.jpg" width="480" height="281" /></p>
<a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Ftop-pix-10-free-wordpress-themes-for-january-2010%2F&amp;linkname=Top%20Pix%3A%2010%20Free%20Wordpress%20Themes%20for%20January%202010" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/blogger_post?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Ftop-pix-10-free-wordpress-themes-for-january-2010%2F&amp;linkname=Top%20Pix%3A%2010%20Free%20Wordpress%20Themes%20for%20January%202010" title="Blogger Post" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/blogger.png" width="16" height="16" alt="Blogger Post"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Ftop-pix-10-free-wordpress-themes-for-january-2010%2F&amp;linkname=Top%20Pix%3A%2010%20Free%20Wordpress%20Themes%20for%20January%202010" title="Delicious" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Ftop-pix-10-free-wordpress-themes-for-january-2010%2F&amp;linkname=Top%20Pix%3A%2010%20Free%20Wordpress%20Themes%20for%20January%202010" title="Digg" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Ftop-pix-10-free-wordpress-themes-for-january-2010%2F&amp;linkname=Top%20Pix%3A%2010%20Free%20Wordpress%20Themes%20for%20January%202010" title="Facebook" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Ftop-pix-10-free-wordpress-themes-for-january-2010%2F&amp;linkname=Top%20Pix%3A%2010%20Free%20Wordpress%20Themes%20for%20January%202010" title="Reddit" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/yahoo_buzz?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Ftop-pix-10-free-wordpress-themes-for-january-2010%2F&amp;linkname=Top%20Pix%3A%2010%20Free%20Wordpress%20Themes%20for%20January%202010" title="Yahoo Buzz" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/buzz.png" width="16" height="16" alt="Yahoo Buzz"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Ftop-pix-10-free-wordpress-themes-for-january-2010%2F&amp;linkname=Top%20Pix%3A%2010%20Free%20Wordpress%20Themes%20for%20January%202010" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Ftop-pix-10-free-wordpress-themes-for-january-2010%2F&amp;linkname=Top%20Pix%3A%2010%20Free%20Wordpress%20Themes%20for%20January%202010" title="Twitter" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Ftop-pix-10-free-wordpress-themes-for-january-2010%2F&amp;linkname=Top%20Pix%3A%2010%20Free%20Wordpress%20Themes%20for%20January%202010" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/squidoo?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Ftop-pix-10-free-wordpress-themes-for-january-2010%2F&amp;linkname=Top%20Pix%3A%2010%20Free%20Wordpress%20Themes%20for%20January%202010" title="Squidoo" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/squidoo.png" width="16" height="16" alt="Squidoo"/></a> <a href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Ftop-pix-10-free-wordpress-themes-for-january-2010%2F&amp;linkname=Top%20Pix%3A%2010%20Free%20Wordpress%20Themes%20for%20January%202010" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2010%2F01%2F01%2Ftop-pix-10-free-wordpress-themes-for-january-2010%2F&amp;linkname=Top%20Pix%3A%2010%20Free%20Wordpress%20Themes%20for%20January%202010">Share/Bookmark</a>]]></content:encoded>
			<wfw:commentRss>http://prozilla.net/blog/2010/01/01/top-pix-10-free-wordpress-themes-for-january-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Escorts SEO Directory</title>
		<link>http://prozilla.net/blog/2009/12/11/escorts-seo-directory/</link>
		<comments>http://prozilla.net/blog/2009/12/11/escorts-seo-directory/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 04:27:11 +0000</pubDate>
		<dc:creator>Prozilla 2.0</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[SEO Directories]]></category>

		<guid isPermaLink="false">http://prozilla.net/blog/?p=388</guid>
		<description><![CDATA[



Demo this web site
Install this web site
How to use the Prozilla 2.0 Installer



This website is a PHP/MySQL SEO directory for local escort services. Listings can be free or paid, and upgrade plans are available. Site also includes reviews for listings. This site is attractive to agency and independantescort listers as it will give their company/organization a top listing [...]]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="4" width="568">
<tbody>
<tr>
<td width="39%"><img src="http://www.prozilla.net/thumbs/escorts_2.gif" alt="" width="200" height="143" /></td>
<td width="61%" valign="top"><a href="http://www.turnkeyzone.com/escorts" target="_blank"><strong>Demo this web site</strong></a></p>
<p><a href="http://www.prozilla.net/members/installer/index.php?script=603" target="_blank"><strong>Install this web site</strong></a></p>
<p><a href="http://prozilla.net/forum/index.php/topic,18.0.html" target="_blank">How to use the Prozilla 2.0 Installer</a></td>
</tr>
</tbody>
</table>
<p>This website is a PHP/MySQL SEO directory for local escort services. Listings can be free or paid, and upgrade plans are available. Site also includes reviews for listings. This site is attractive to agency and independantescort listers as it will give their company/organization a top listing once listings start to be spidered through the search engines. You only need 3-4 listings to get your started. See the Prozilla forum as how to market this website.</p>
<p>The site also boasts search engine friendly URL&#8217;s for all listings making it a search engine optimized directory. Also features an included page for small banner ads. These spots can be sold to escorts or be used as affiliate based banners for other escorts directory and guide type websites, earning you a commission. All ads on the demo, are for demonstration purposes only.</p>
<p>For this web site, you must have a Google Adsense publisher ID and a Cpanel hosting account (Our installer will not work on other platforms where the root web folder is not public_html). The Prozilla 2.0 Installer will install this web site in the root location of a domain name (ie: http://www.turnkeyzone.com) or in a folder (<a href="http://www.turnkeyzone.com/escorts">http://www.turnkeyzone.com/escorts</a>)</p>
<p><a href="https://www.google.com/adsense/login/en_US/" target="_blank"><strong>Signup for Google Adsense</strong></a></p>
<a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F11%2Fescorts-seo-directory%2F&amp;linkname=Escorts%20SEO%20Directory" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/blogger_post?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F11%2Fescorts-seo-directory%2F&amp;linkname=Escorts%20SEO%20Directory" title="Blogger Post" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/blogger.png" width="16" height="16" alt="Blogger Post"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F11%2Fescorts-seo-directory%2F&amp;linkname=Escorts%20SEO%20Directory" title="Delicious" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F11%2Fescorts-seo-directory%2F&amp;linkname=Escorts%20SEO%20Directory" title="Digg" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F11%2Fescorts-seo-directory%2F&amp;linkname=Escorts%20SEO%20Directory" title="Facebook" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F11%2Fescorts-seo-directory%2F&amp;linkname=Escorts%20SEO%20Directory" title="Reddit" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/yahoo_buzz?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F11%2Fescorts-seo-directory%2F&amp;linkname=Escorts%20SEO%20Directory" title="Yahoo Buzz" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/buzz.png" width="16" height="16" alt="Yahoo Buzz"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F11%2Fescorts-seo-directory%2F&amp;linkname=Escorts%20SEO%20Directory" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F11%2Fescorts-seo-directory%2F&amp;linkname=Escorts%20SEO%20Directory" title="Twitter" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F11%2Fescorts-seo-directory%2F&amp;linkname=Escorts%20SEO%20Directory" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/squidoo?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F11%2Fescorts-seo-directory%2F&amp;linkname=Escorts%20SEO%20Directory" title="Squidoo" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/squidoo.png" width="16" height="16" alt="Squidoo"/></a> <a href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F11%2Fescorts-seo-directory%2F&amp;linkname=Escorts%20SEO%20Directory" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F11%2Fescorts-seo-directory%2F&amp;linkname=Escorts%20SEO%20Directory">Share/Bookmark</a>]]></content:encoded>
			<wfw:commentRss>http://prozilla.net/blog/2009/12/11/escorts-seo-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vacation Destinations SEO Directory</title>
		<link>http://prozilla.net/blog/2009/12/09/travel-seo-directory/</link>
		<comments>http://prozilla.net/blog/2009/12/09/travel-seo-directory/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 01:51:15 +0000</pubDate>
		<dc:creator>Prozilla 2.0</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[SEO Directories]]></category>

		<guid isPermaLink="false">http://prozilla.net/blog/?p=374</guid>
		<description><![CDATA[



Demo this website
  Install this web site
How to use the Prozilla 2.0 Installer



This website is a PHP/MySQL SEO directory for travel/vacation destinations. Listings can be free or paid, and upgrade plans are available. Site also includes reviews for listings. This site is attractive to travel agents and destination attractions as it will give their [...]]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="4" width="568">
<tbody>
<tr>
<td width="39%"><img src="http://www.prozilla.net/thumbs/travel_2.gif" alt="" width="200" height="143" /></td>
<td width="61%" valign="top"><a href="http://www.turnkeyzone.com/travel" target="_blank"><strong>Demo this website</strong></a></p>
<p><a href="http://www.turnkeyzone.com/travel" target="_blank"><strong> </strong></a><a href="http://www.prozilla.net/members/installer/index.php?script=602" target="_blank"><strong> </strong></a><a href="http://www.prozilla.net/members/installer/index.php?script=602" target="_blank"><strong>Install this web site</strong></a></p>
<p><a href="http://prozilla.net/forum/index.php/topic,18.0.html" target="_blank">How to use the Prozilla 2.0 Installer</a></td>
</tr>
</tbody>
</table>
<p>This website is a PHP/MySQL SEO directory for travel/vacation destinations. Listings can be free or paid, and upgrade plans are available. Site also includes reviews for listings. This site is attractive to travel agents and destination attractions as it will give their company/organization a top listing once listings start to be spidered through the search engines. You only need 3-4 listings to get your started. See the Prozilla forum as how to market this website.</p>
<p>The site also boasts search engine friendly URL&#8217;s for all listings making it a search engine optimized directory.</p>
<p>For this web site, you must have a Google Adsense publisher ID and a Cpanel hosting account (Our installer will not work on other platforms where the root web folder is not public_html). The Prozilla 2.0 Installer will install this web site in the root location of a domain name (ie: http://www.turnkeyzone.com) or in a folder (http://www.turnkeyzone.com/travel)</p>
<p><a href="https://www.google.com/adsense/login/en_US/" target="_blank"><strong>Signup for Google Adsense</strong></a></p>
<a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F09%2Ftravel-seo-directory%2F&amp;linkname=Vacation%20Destinations%20SEO%20Directory" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/blogger_post?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F09%2Ftravel-seo-directory%2F&amp;linkname=Vacation%20Destinations%20SEO%20Directory" title="Blogger Post" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/blogger.png" width="16" height="16" alt="Blogger Post"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F09%2Ftravel-seo-directory%2F&amp;linkname=Vacation%20Destinations%20SEO%20Directory" title="Delicious" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F09%2Ftravel-seo-directory%2F&amp;linkname=Vacation%20Destinations%20SEO%20Directory" title="Digg" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F09%2Ftravel-seo-directory%2F&amp;linkname=Vacation%20Destinations%20SEO%20Directory" title="Facebook" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F09%2Ftravel-seo-directory%2F&amp;linkname=Vacation%20Destinations%20SEO%20Directory" title="Reddit" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/yahoo_buzz?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F09%2Ftravel-seo-directory%2F&amp;linkname=Vacation%20Destinations%20SEO%20Directory" title="Yahoo Buzz" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/buzz.png" width="16" height="16" alt="Yahoo Buzz"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F09%2Ftravel-seo-directory%2F&amp;linkname=Vacation%20Destinations%20SEO%20Directory" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F09%2Ftravel-seo-directory%2F&amp;linkname=Vacation%20Destinations%20SEO%20Directory" title="Twitter" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F09%2Ftravel-seo-directory%2F&amp;linkname=Vacation%20Destinations%20SEO%20Directory" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/squidoo?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F09%2Ftravel-seo-directory%2F&amp;linkname=Vacation%20Destinations%20SEO%20Directory" title="Squidoo" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/squidoo.png" width="16" height="16" alt="Squidoo"/></a> <a href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F09%2Ftravel-seo-directory%2F&amp;linkname=Vacation%20Destinations%20SEO%20Directory" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F09%2Ftravel-seo-directory%2F&amp;linkname=Vacation%20Destinations%20SEO%20Directory">Share/Bookmark</a>]]></content:encoded>
			<wfw:commentRss>http://prozilla.net/blog/2009/12/09/travel-seo-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image Hosting</title>
		<link>http://prozilla.net/blog/2009/12/03/image-hosting/</link>
		<comments>http://prozilla.net/blog/2009/12/03/image-hosting/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 23:08:36 +0000</pubDate>
		<dc:creator>Prozilla 2.0</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://prozilla.net/blog/?p=328</guid>
		<description><![CDATA[



Demo this web site
Install this web site
How to use the Prozilla 2.0 Installer



This website offers and image hosting service in PHP /MySQL. PHP. Features anonymous and registration for uploading images. Newsletter and Google AdSense.
For this web site, you must have a Google Adsense publisher ID and a Cpanel hosting account (Our installer will not work [...]]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="4" width="568">
<tbody>
<tr>
<td width="39%"><img src="http://www.prozilla.net/thumbs/imagehosting_2.gif" alt="" width="200" height="143" /></td>
<td width="61%" valign="top"><a href="http://www.turnkeyzone.com/imagehosting" target="_blank"><strong>Demo this web site</strong></a></p>
<p><a href="http://www.prozilla.net/members/installer/index.php?script=599" target="_blank"><strong>Install this web site</strong></a></p>
<p><a href="http://prozilla.net/forum/index.php/topic,18.0.html" target="_blank">How to use the Prozilla 2.0 Installer</a></td>
</tr>
</tbody>
</table>
<p>This website offers and image hosting service in PHP /MySQL. PHP. Features anonymous and registration for uploading images. Newsletter and Google AdSense.</p>
<p>For this web site, you must have a Google Adsense publisher ID and a Cpanel hosting account (Our installer will not work on other platforms where the root web folder is not public_html). The Prozilla 2.0 Installer will install this web site in the root location of a domain name (ie: http://www.turnkeyzone.com) or in a folder (http://www.turnkeyzone.com/imagehosting)</p>
<p><a href="https://www.google.com/adsense/login/en_US/" target="_blank"><strong>Signup for Google Adsense</strong></a></p>
<a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fimage-hosting%2F&amp;linkname=Image%20Hosting" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/blogger_post?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fimage-hosting%2F&amp;linkname=Image%20Hosting" title="Blogger Post" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/blogger.png" width="16" height="16" alt="Blogger Post"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fimage-hosting%2F&amp;linkname=Image%20Hosting" title="Delicious" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fimage-hosting%2F&amp;linkname=Image%20Hosting" title="Digg" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fimage-hosting%2F&amp;linkname=Image%20Hosting" title="Facebook" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fimage-hosting%2F&amp;linkname=Image%20Hosting" title="Reddit" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/yahoo_buzz?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fimage-hosting%2F&amp;linkname=Image%20Hosting" title="Yahoo Buzz" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/buzz.png" width="16" height="16" alt="Yahoo Buzz"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fimage-hosting%2F&amp;linkname=Image%20Hosting" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fimage-hosting%2F&amp;linkname=Image%20Hosting" title="Twitter" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fimage-hosting%2F&amp;linkname=Image%20Hosting" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/squidoo?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fimage-hosting%2F&amp;linkname=Image%20Hosting" title="Squidoo" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/squidoo.png" width="16" height="16" alt="Squidoo"/></a> <a href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fimage-hosting%2F&amp;linkname=Image%20Hosting" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fimage-hosting%2F&amp;linkname=Image%20Hosting">Share/Bookmark</a>]]></content:encoded>
			<wfw:commentRss>http://prozilla.net/blog/2009/12/03/image-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gay local SEO Directory</title>
		<link>http://prozilla.net/blog/2009/12/03/gay-local-seo-directory/</link>
		<comments>http://prozilla.net/blog/2009/12/03/gay-local-seo-directory/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 23:03:42 +0000</pubDate>
		<dc:creator>Prozilla 2.0</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[SEO Directories]]></category>

		<guid isPermaLink="false">http://prozilla.net/blog/?p=326</guid>
		<description><![CDATA[



Demo this web site
Install this web site
How to use the Prozilla 2.0 Installer



This website is a PHP/MySQL SEO directory for local Gay communities. Listings can be free or paid, and upgrade plans are available. Site also includes reviews for listings. This site is attractive to local gay and gay friendly listers as it will give their company/organization [...]]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="4" width="568">
<tbody>
<tr>
<td width="39%"><img src="http://www.prozilla.net/thumbs/gaylocal_2.gif" alt="" width="200" height="143" /></td>
<td width="61%" valign="top"><a href="http://www.turnkeyzone.com/gaylocal" target="_blank"><strong>Demo this web site</strong></a></p>
<p><a href="http://www.prozilla.net/members/installer/index.php?script=600" target="_blank"><strong>Install this web site</strong></a></p>
<p><a href="http://prozilla.net/forum/index.php/topic,18.0.html" target="_blank">How to use the Prozilla 2.0 Installer</a></td>
</tr>
</tbody>
</table>
<p>This website is a PHP/MySQL SEO directory for local Gay communities. Listings can be free or paid, and upgrade plans are available. Site also includes reviews for listings. This site is attractive to local gay and gay friendly listers as it will give their company/organization a top listing once listings start to be spidered through the search engines. You only need 3-4 listings to get your started. See the Prozilla forum as how to market this website.</p>
<p>The site also boasts search engine friendly URL&#8217;s for all listings making it a search engine optimized directory.</p>
<p>For this web site, you must have a Google Adsense publisher ID and a Cpanel hosting account (Our installer will not work on other platforms where the root web folder is not public_html). The Prozilla 2.0 Installer will install this web site in the root location of a domain name (ie: http://www.turnkeyzone.com) or in a folder (http://www.turnkeyzone.com/gaylocal)</p>
<p><a href="https://www.google.com/adsense/login/en_US/" target="_blank"><strong>Signup for Google Adsense</strong></a></p>
<a href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fgay-local-seo-directory%2F&amp;linkname=Gay%20local%20SEO%20Directory" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/blogger_post?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fgay-local-seo-directory%2F&amp;linkname=Gay%20local%20SEO%20Directory" title="Blogger Post" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/blogger.png" width="16" height="16" alt="Blogger Post"/></a> <a href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fgay-local-seo-directory%2F&amp;linkname=Gay%20local%20SEO%20Directory" title="Delicious" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a> <a href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fgay-local-seo-directory%2F&amp;linkname=Gay%20local%20SEO%20Directory" title="Digg" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a> <a href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fgay-local-seo-directory%2F&amp;linkname=Gay%20local%20SEO%20Directory" title="Facebook" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a> <a href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fgay-local-seo-directory%2F&amp;linkname=Gay%20local%20SEO%20Directory" title="Reddit" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a> <a href="http://www.addtoany.com/add_to/yahoo_buzz?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fgay-local-seo-directory%2F&amp;linkname=Gay%20local%20SEO%20Directory" title="Yahoo Buzz" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/buzz.png" width="16" height="16" alt="Yahoo Buzz"/></a> <a href="http://www.addtoany.com/add_to/yahoo_bookmarks?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fgay-local-seo-directory%2F&amp;linkname=Gay%20local%20SEO%20Directory" title="Yahoo Bookmarks" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/yahoo.png" width="16" height="16" alt="Yahoo Bookmarks"/></a> <a href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fgay-local-seo-directory%2F&amp;linkname=Gay%20local%20SEO%20Directory" title="Twitter" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a> <a href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fgay-local-seo-directory%2F&amp;linkname=Gay%20local%20SEO%20Directory" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a> <a href="http://www.addtoany.com/add_to/squidoo?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fgay-local-seo-directory%2F&amp;linkname=Gay%20local%20SEO%20Directory" title="Squidoo" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/squidoo.png" width="16" height="16" alt="Squidoo"/></a> <a href="http://www.addtoany.com/add_to/stumbleupon?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fgay-local-seo-directory%2F&amp;linkname=Gay%20local%20SEO%20Directory" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://prozilla.net/blog/wp-content/plugins/add-to-any/icons/stumbleupon.png" width="16" height="16" alt="StumbleUpon"/></a> <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fprozilla.net%2Fblog%2F2009%2F12%2F03%2Fgay-local-seo-directory%2F&amp;linkname=Gay%20local%20SEO%20Directory">Share/Bookmark</a>]]></content:encoded>
			<wfw:commentRss>http://prozilla.net/blog/2009/12/03/gay-local-seo-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
