<?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>SiteSourcePro.com</title>
	<atom:link href="http://sitesourcepro.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sitesourcepro.com</link>
	<description>All the Geek Web Talk You Can Take</description>
	<lastBuildDate>Wed, 05 Aug 2009 02:29:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Run a PHP Script with a Image Extension</title>
		<link>http://sitesourcepro.com/articles/198/</link>
		<comments>http://sitesourcepro.com/articles/198/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 00:01:10 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Web Talk]]></category>

		<guid isPermaLink="false">http://sitesourcepro.com/?p=198</guid>
		<description><![CDATA[Have you ever wanted to track views, compile watermarks, etc&#8230;?  Well the script below will allow your server to run a jpg image as a php file.  This is why I love PHP so much, people don&#8217;t know how much of what they see is powered by PHP.
First,  create an .htaccess file in the folder [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever wanted to track views, compile watermarks, etc&#8230;?  Well the script below will allow your server to run a jpg image as a php file.  This is why I love PHP so much, people don&#8217;t know how much of what they see is powered by PHP.</p>
<p><strong>First, </strong> create an <span style="color: #ff0000;">.htaccess</span> file in the folder that contains the jpg(s) you would like executed as a php script.  <strong>Next, </strong> enter the following code in the file:</p>
<p style="padding-left: 30px; "><span style="color: #ff0000;">AddType application/x-httpd-php .php .jpg</span></p>
<p>Becareful when doing this, make sure you don&#8217;t put this command in the root folder.  Also, always worry about your variables and make sure that they are not being used in unethitical ways.</p>
<p>By the way, this will only works for <span style="text-decoration: underline;">Apache Web Servers</span>.</p>
<p>I hope this lesson was useful <img src='http://sitesourcepro.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> , please leave your comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitesourcepro.com/articles/198/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Caching Made Easy&#8230;  Lower Server Load on PHP/MySQL WebSites</title>
		<link>http://sitesourcepro.com/articles/159/</link>
		<comments>http://sitesourcepro.com/articles/159/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 23:32:38 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Web Talk]]></category>

		<guid isPermaLink="false">http://sitesourcepro.com/?p=159</guid>
		<description><![CDATA[I used to always compile the pages every morning on my site so that they were static, however I wanted a more automatic solution.  Below I will show you how to Cache any PHP webpage automatically.
First you will need to download the php library below and upload it to your webserver.
http://pear.php.net/package/Cache_Lite
Next let&#8217;s create the [...]]]></description>
			<content:encoded><![CDATA[<p>I used to always compile the pages every morning on my site so that they were static, however I wanted a more automatic solution.  Below I will show you how to Cache any PHP webpage automatically.</p>
<p><strong>First</strong> you will need to download the php library below and upload it to your webserver.</p>
<p><a href="http://pear.php.net/package/Cache_Lite" target="_blank">http://pear.php.net/package/Cache_Lite</a></p>
<p><strong>Next</strong> let&#8217;s create the php script that will control the cache.</p>
<p><strong>Place Section 1 in the very top of your php page.</strong><code></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #b1b100;">require_once</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'YOUR-CACHE-DIRECTORY/cache/Lite.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$pageid</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;CREATE-A-UNIQUE-PAGE-ID-OR-NAME&quot;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$options</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
<span style="color: #0000ff;">'cacheDir'</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'YOUR-CACHE-DIRECTORY/cache/'</span><span style="color: #339933;">,</span>
<span style="color: #0000ff;">'lifeTime'</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">28800</span>
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$Cache_Lite</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Cache_Lite<span style="color: #009900;">&#40;</span><span style="color: #000088;">$options</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$Cache_Lite</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$pageid</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$data</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span> <span style="color: #666666; font-style: italic;">// No valid cache found (you have to make the page)</span>
&nbsp;
	<span style="color: #990000;">ob_start</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>#######################<br />
This is where your php file is loaded and content is echoed.<br />
#######################</p>
<p><strong>Now place the code below at the very end of your php file.</strong></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
&nbsp;
	<span style="color: #000088;">$final_data</span> <span style="color: #339933;">=</span> <span style="color: #990000;">ob_get_contents</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #990000;">ob_end_flush</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000088;">$Cache_Lite</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">save</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$final_data</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// this will save your output</span>
<span style="color: #009900;">&#125;</span> <span style="color: #666666; font-style: italic;">// close else statement</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p></code></p>
<p>Once completed, the first load should create your cached file.  The second time you refresh the page it should show you the cached file.</p>
<p>As always, please leave comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitesourcepro.com/articles/159/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Hide a Secret Message in an Image File</title>
		<link>http://sitesourcepro.com/articles/123/</link>
		<comments>http://sitesourcepro.com/articles/123/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 01:21:06 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Web Talk]]></category>

		<guid isPermaLink="false">http://sitesourcepro.com/?p=123</guid>
		<description><![CDATA[Have you ever wondered how Terrorist are communicating behind the scenes?  Below I will show you one popular method  by adding a message into an image that no one will see unless they know where to look.
First: You will need two files, an image and a text file with your hidden message.
Next:  Open up [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Have you ever wondered how Terrorist are communicating behind the scenes?  Below I will show you one popular method  by adding a message into an image that no one will see unless they know where to look.</p>
<p style="text-align: left; padding-left: 30px; "><strong>First:</strong> You will need two files, an <span style="color: #ff0000;">image</span> and a <span style="color: #ff0000;">t</span><span style="color: #ff0000;">ext</span> file with your hidden message.</p>
<p style="text-align: left; padding-left: 30px; "><strong>Next: </strong> Open up your command prompt.   Go to your <span style="color: #ff0000;">start menu</span> and click on <span style="color: #ff0000;">Run<span style="color: #333333;">,</span> </span>type in <span style="color: #ff0000;">cmd</span> and  press enter. You should now see something similar to the image illustrated below.</p>
<ul><img class="alignnone size-full wp-image-124" title="cmd1" src="http://sitesourcepro.com/wp-content/uploads/2009/07/cmd1.jpg" alt="cmd1" width="500" height="241" /></ul>
<p style="padding-left: 30px; "><strong>Next: </strong>For the purpose of this demo I have placed the image file (test.jpg) in the root of my C drive.  Type <span style="color: #ff0000;">cd\</span> and press enter.  You should now see something similar to the image illustrated below.</p>
<ul><img class="alignnone size-full wp-image-125" title="cmd2" src="http://sitesourcepro.com/wp-content/uploads/2009/07/cmd2.jpg" alt="cmd2" width="500" height="241" /></p>
<p style="text-align: left;"><strong>Next</strong>: Now for the fun stuff, place both of your files (i.e <span style="color: #ff0000;">test.jpg</span> and your hidden message <span style="color: #ff0000;">test.txt<span style="color: #333333;">)</span></span> in the root of your C drive.  Type in the following command <span style="color: #ff0000;">copy /b test.jpg + test.txt result.jpg <span style="color: #333333;">and press enter. You should now see something similar to the image illustrated below.</span></span></p>
<p><img class="alignnone size-full wp-image-126" title="cmd3" src="http://sitesourcepro.com/wp-content/uploads/2009/07/cmd3.jpg" alt="cmd3" width="500" height="250" /></p>
<p style="text-align: left;"><span style="color: #ff0000;"><span style="color: #333333;"><span style="color: #000000;"><strong>Finally:</strong> You will now see that that the command created a new file named <span style="color: #ff0000;">result.jpg, <span style="color: #333333;">m</span></span>y outcome file is below.  Can you find the hidden message?  To see the hidden message open the image up in word pad and scroll to the very end.</span></span></span></p>
<p><img style="border: 0px initial initial;" title="result" src="http://sitesourcepro.com/wp-content/uploads/2009/07/result.jpg" alt="result" width="150" height="150" /></ul>
<p>I hope this post was useful.  Please leave comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitesourcepro.com/articles/123/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fix Wrong Regions Showing under Bing.com Webmaster Tools</title>
		<link>http://sitesourcepro.com/articles/112/</link>
		<comments>http://sitesourcepro.com/articles/112/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 14:41:52 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Web Talk]]></category>

		<guid isPermaLink="false">http://sitesourcepro.com/?p=112</guid>
		<description><![CDATA[So today I heard the news that Bing.com has worked out a deal to display Bing.com search results for Yahoo&#8230; ARG!  So if you are doing well in Bing.com then you have nothing to worry about but if not, beware!
I logged into my clients Webmaster Tools section for Bing.com to look into any issues now [...]]]></description>
			<content:encoded><![CDATA[<p>So today I heard the news that Bing.com has worked out a deal to display Bing.com search results for Yahoo&#8230; ARG!  So if you are doing well in Bing.com then you have nothing to worry about but if not, beware!</p>
<p>I logged into my clients Webmaster Tools section for Bing.com to look into any issues now that I am forced to increase the importance of Bing.</p>
<p>When I logged in I noticed next to each of the sites URL&#8217;s it showed &#8216;fr&#8217; for the Region.  After reading tons of docs,  I found that a lot companies are having the same issue.  The fix reported by &#8220;Brett Yount&#8221; who is the Program Manager,  is to do the following in your meta tags:</p>
<p><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">meta</span><span style="color: #0000ff;"> </span><span style="color: #ff0000;">http-equiv</span><span style="color: #0000ff;">=&#8217;Content-Language&#8217; </span><span style="color: #ff0000;">content</span><span style="color: #0000ff;">=&#8217;en-us&#8217; /&gt;</span></p>
<p><span style="color: #0000ff;"><span style="color: #000000;">So I just updated my site to display it in the header and I am waiting to see the results.  I hate that Yahoo did this, Bing.com has so many bugs and their index still isn&#8217;t large enough.  Microsoft is just spending money and I personally don&#8217;t care for Bing.com. </span></span></p>
<p>I hope this helps and please leave some comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitesourcepro.com/articles/112/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Tune MySQL for Better Performance</title>
		<link>http://sitesourcepro.com/articles/101/</link>
		<comments>http://sitesourcepro.com/articles/101/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 14:52:30 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Web Talk]]></category>

		<guid isPermaLink="false">http://sitesourcepro.com/?p=101</guid>
		<description><![CDATA[This is probably the most important factor when your site uses mysql for it&#8217;s information.  The best way to start is by installing mysql tuner on your server.
http://mysqltuner.com/
You should also install mysql administrator, it will allow you to truly see what is going on.
http://dev.mysql.com/downloads/gui-tools/5.0.html
Once installed and executed you should see something similar to the results [...]]]></description>
			<content:encoded><![CDATA[<p>This is probably the most important factor when your site uses mysql for it&#8217;s information.  The best way to start is by installing mysql tuner on your server.</p>
<p><a href="http://mysqltuner.com/" target="_blank">http://mysqltuner.com/</a></p>
<p>You should also install mysql administrator, it will allow you to truly see what is going on.</p>
<p><a href="http://dev.mysql.com/downloads/gui-tools/5.0.html" target="_blank">http://dev.mysql.com/downloads/gui-tools/5.0.html</a></p>
<p><strong>Once installed and executed you should see something similar to the results displayed below:</strong></p>
<blockquote><p>&gt;&gt;  MySQLTuner 1.0.0 &#8211; Major Hayden &lt;major@mhtx.net&gt;</p>
<p>&gt;&gt;  Bug reports, feature requests, and downloads at http://mysqltuner.com/</p>
<p>&gt;&gt;  Run with &#8216;&#8211;help&#8217; for additional options and output filtering</p>
<p>&#8212;&#8212;&#8211; General Statistics &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>[--] Skipped version check for MySQLTuner script</p>
<p>[OK] Currently running supported MySQL version 5.0.81-community-log</p>
<p>[OK] Operating on 64-bit architecture</p>
<p>&#8212;&#8212;&#8211; Storage Engine Statistics &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>[--] Status: +Archive -BDB -Federated +InnoDB -ISAM -NDBCluster</p>
<p>[--] Data in MyISAM tables: 283M (Tables: 361)</p>
<p>[--] Data in InnoDB tables: 112K (Tables: 7)</p>
<p>[--] Data in MEMORY tables: 0B (Tables: 1)</p>
<p>[!!] Total fragmented tables: 13</p>
<p>&#8212;&#8212;&#8211; Performance Metrics &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>[--] Up for: 1d 20h 46m 2s (30M q [189.613 qps], 943K conn, TX: 5B, RX: 2B)</p>
<p>[--] Reads / Writes: 58% / 42%</p>
<p>[--] Total buffers: 3.0G global + 2.7M per thread (1000 max threads)</p>
<p>[OK] Maximum possible memory usage: 5.7G (72% of installed RAM)</p>
<p>[OK] Slow queries: 0% (18/30M)</p>
<p>[OK] Highest usage of available connections: 43% (435/1000)</p>
<p>[OK] Key buffer size / total MyISAM indexes: 2.4G/133.5M</p>
<p>[OK] Key buffer hit rate: 99.9% (554M cached / 404K reads)</p>
<p>[OK] Query cache efficiency: 77.1% (9M cached / 12M selects)</p>
<p>[OK] Query cache prunes per day: 0</p>
<p>[OK] Sorts requiring temporary tables: 0% (2 temp sorts / 4M sorts)</p>
<p>[OK] Temporary tables created on disk: 14% (16K on disk / 116K total)</p>
<p>[OK] Thread cache hit rate: 99% (435 created / 943K connections)</p>
<p>[OK] Table cache hit rate: 44% (417 open / 936 opened)</p>
<p>[OK] Open file limit used: 1% (788/65K)</p>
<p>[OK] Table locks acquired immediately: 99% (4M immediate / 4M locks)</p>
<p>[OK] InnoDB data size / buffer pool: 112.0K/8.0M</p></blockquote>
<blockquote>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&gt;&gt;  MySQLTuner 1.0.0 &#8211; Major Hayden &lt;major@mhtx.net&gt;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&gt;&gt;  Bug reports, feature requests, and downloads at http://mysqltuner.com/</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&gt;&gt;  Run with &#8216;&#8211;help&#8217; for additional options and output filtering</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&#8212;&#8212;&#8211; General Statistics &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[--] Skipped version check for MySQLTuner script</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[OK] Currently running supported MySQL version 5.0.81-community-log</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[OK] Operating on 64-bit architecture</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&#8212;&#8212;&#8211; Storage Engine Statistics &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[--] Status: +Archive -BDB -Federated +InnoDB -ISAM -NDBCluster</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[--] Data in MyISAM tables: 283M (Tables: 361)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[--] Data in InnoDB tables: 112K (Tables: 7)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[--] Data in MEMORY tables: 0B (Tables: 1)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[!!] Total fragmented tables: 13</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&#8212;&#8212;&#8211; Performance Metrics &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[--] Up for: 1d 20h 46m 2s (30M q [189.613 qps], 943K conn, TX: 5B, RX: 2B)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[--] Reads / Writes: 58% / 42%</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[--] Total buffers: 3.0G global + 2.7M per thread (1000 max threads)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[OK] Maximum possible memory usage: 5.7G (72% of installed RAM)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[OK] Slow queries: 0% (18/30M)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[OK] Highest usage of available connections: 43% (435/1000)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[OK] Key buffer size / total MyISAM indexes: 2.4G/133.5M</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[OK] Key buffer hit rate: 99.9% (554M cached / 404K reads)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[OK] Query cache efficiency: 77.1% (9M cached / 12M selects)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[OK] Query cache prunes per day: 0</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[OK] Sorts requiring temporary tables: 0% (2 temp sorts / 4M sorts)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[OK] Temporary tables created on disk: 14% (16K on disk / 116K total)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[OK] Thread cache hit rate: 99% (435 created / 943K connections)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[OK] Table cache hit rate: 44% (417 open / 936 opened)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[OK] Open file limit used: 1% (788/65K)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[OK] Table locks acquired immediately: 99% (4M immediate / 4M locks)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 13px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">[OK] InnoDB data size / buffer pool: 112.0K/8.0M</div>
</blockquote>
<p><strong>To get the results above, use the following settings:</strong></p>
<blockquote><p>set-variable = max_connections=1000</p>
<p>safe-show-database</p>
<p>log-slow-queries</p>
<p>long_query_time=10</p>
<p>query_cache_size=536870912</p>
<p>query_cache_type=1</p>
<p>query_cache_limit=8388608</p>
<p>thread_cache_size=16384</p>
<p>table_cache=524288</p>
<p>key_buffer_size=2621440000</p></blockquote>
<p><strong>The server specs for this type of configuration is as follows:</strong></p>
<ul>
<li>Quad Xeon 2.0GHz Processors</li>
<li>8GB of Ram</li>
<li>64bit RedHat OS</li>
</ul>
<p>The reason for the 64bit system is that mysql cannot use more than 2gb of ram on any other type of system.   I also configured the hard drives so that the OS has one hard drive, MySQL has it&#8217;s own and the Site Files have thier own.  They are all High Speed Reading Hard drives for less latency.  So far this has been able to handle a ton of traffic as you can see from the mysql tuner stats above.  It has plenty of room for growth without maxing out mysql.  This was my first experience with a 64 bit system and it took a little bit to get tweaked but I am more than satisfied with my clients results.</p>
<p>Hope this information was valuable to someone.  Please leave your comments below!!!!!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://sitesourcepro.com/articles/101/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Must use tools for a webmaster&#8230;</title>
		<link>http://sitesourcepro.com/articles/54/</link>
		<comments>http://sitesourcepro.com/articles/54/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 02:30:31 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Web Talk]]></category>

		<guid isPermaLink="false">http://sitesourcepro.com/?p=54</guid>
		<description><![CDATA[I was thinking of writing an article about this but google already did.
http://www.google.com/intl/en_ALL/domorewithless/index.html
Let me know your comments below.  I am wondering what the DART advertising is.  I will call them tomorrow and update you on it.
]]></description>
			<content:encoded><![CDATA[<p>I was thinking of writing an article about this but google already did.</p>
<p><a href="http://www.google.com/intl/en_ALL/domorewithless/index.html">http://www.google.com/intl/en_ALL/domorewithless/index.html</a></p>
<p>Let me know your comments below.  I am wondering what the DART advertising is.  I will call them tomorrow and update you on it.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitesourcepro.com/articles/54/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A new way of email verification.  Google&#8217;s Way</title>
		<link>http://sitesourcepro.com/articles/55/</link>
		<comments>http://sitesourcepro.com/articles/55/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 02:24:17 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Web Talk]]></category>

		<guid isPermaLink="false">http://sitesourcepro.com/?p=55</guid>
		<description><![CDATA[I always love how google thinks outside the box to design a better email system than the normal.
http://gmailblog.blogspot.com/2009/07/new-in-labs-super-trustworthy-anti.html
However,  Sometimes they get ahead of themselves and make quick decisions that resonate across all channels.
Leave your comments below.
]]></description>
			<content:encoded><![CDATA[<p>I always love how google thinks outside the box to design a better email system than the normal.</p>
<p><a href="http://gmailblog.blogspot.com/2009/07/new-in-labs-super-trustworthy-anti.html" target="_blank">http://gmailblog.blogspot.com/2009/07/new-in-labs-super-trustworthy-anti.html</a></p>
<p>However,  Sometimes they get ahead of themselves and make quick decisions that resonate across all channels.</p>
<p>Leave your comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitesourcepro.com/articles/55/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thinking of Starting a Website?</title>
		<link>http://sitesourcepro.com/articles/69/</link>
		<comments>http://sitesourcepro.com/articles/69/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 02:15:09 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Web Talk]]></category>

		<guid isPermaLink="false">http://sitesourcepro.com/?p=69</guid>
		<description><![CDATA[If you are thinking about creating a new site and you would be starting from scratch.  You might want to consider the following base requirements.
Hosting (always go linux!)
In the beginning you don&#8217;t need a large infrastructure.  You should just get a cheap company like Dreamhost, GoDaddy, Hostmonster.  All of them have there own problem because [...]]]></description>
			<content:encoded><![CDATA[<p>If you are thinking about creating a new site and you would be starting from scratch.  You might want to consider the following base requirements.</p>
<p><strong>Hosting</strong> (always go linux!)<br />
<em>In the beginning you don&#8217;t need a large infrastructure.  You should just get a cheap company like Dreamhost, GoDaddy, Hostmonster.  All of them have there own problem because you get what you pay for.  However, it gets the job done.</em></p>
<p><strong>Width of Site</strong><br />
<em>This depends on your audience.  I site that fills the screen is always better but if you want a sleek solid design you might want to stick with 1000 px width. </em></p>
<p><strong>Power built-in behind your design. </strong>(this is my favorite)<br />
If you are starting off you will want the following packages.</p>
<ul>
<li>PHP</li>
<li>MySQL</li>
<li>LINUX OPERATING SYSTEM</li>
<li><a title="script.aculo.us" href="http://script.aculo.us/" target="_blank">Script.aculo.us</a></li>
<li><a title="Xajax" href="http://xajaxproject.org/" target="_blank">XAJAX</a></li>
</ul>
<p>This will keep growing so please post questions below.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitesourcepro.com/articles/69/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Facebook won the Social Networking Battle.</title>
		<link>http://sitesourcepro.com/articles/52/</link>
		<comments>http://sitesourcepro.com/articles/52/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 01:59:11 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Web Talk]]></category>

		<guid isPermaLink="false">http://sitesourcepro.com/?p=52</guid>
		<description><![CDATA[Facebook has really taken off.  Ever since the embrace from CNN during the elections.  But a lot of us were already over there.  Why?
My personal reason was the advance in Privacy Settings.  I really don&#8217;t like Social Networking but I do like meeting old time friends and some new ones.  It allows you to set [...]]]></description>
			<content:encoded><![CDATA[<p>Facebook has really taken off.  Ever since the embrace from CNN during the elections.  But a lot of us were already over there.  Why?</p>
<p>My personal reason was the advance in Privacy Settings.  I really don&#8217;t like Social Networking but I do like meeting old time friends and some new ones.  It allows you to set people in groups and pick and choose what they see.</p>
<p>Yes!  Myspace.com has this option.  But that wasn&#8217;t there focus in the beginning.  It was more about the advertising.</p>
<p><a href="http://www.google.com/insights/search/#q=facebook%2Cmyspace&amp;geo=US&amp;cmpt=q" target="_blank">http://www.google.com/insights/search/#q=facebook%2Cmyspace&amp;geo=US&amp;cmpt=q</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sitesourcepro.com/articles/52/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are you feeling the pain from the economy?</title>
		<link>http://sitesourcepro.com/articles/75/</link>
		<comments>http://sitesourcepro.com/articles/75/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 01:48:11 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Web Talk]]></category>

		<guid isPermaLink="false">http://sitesourcepro.com/?p=75</guid>
		<description><![CDATA[Yes everyone in the online world is paying more for less and is wondering if it&#8217;s them or the industry.  Well you should check.  For instance the graph above is the trend of the term &#8220;purchase&#8221;.  You can see that it has a trend going downward.  But however it does seem to be finding it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Yes everyone in the online world is paying more for less and is wondering if it&#8217;s them or the industry.  Well you should check.  For instance the graph above is the trend of the term &#8220;purchase&#8221;.  You can see that it has a trend going downward.  But however it does seem to be finding it&#8217;s bottom point.  But you can check out your industry and see what is going on.</p>
<p><a href="http://www.google.com/insights/search/#cat=18&amp;q=purchase&amp;geo=US&amp;cmpt=q" target="_blank">http://www.google.com/insights/search/#cat=18&amp;q=purchase&amp;geo=US&amp;cmpt=q</a></p>
<p>As always please leave comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitesourcepro.com/articles/75/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Web used to Make Musician Famous&#8230;  The clean way.</title>
		<link>http://sitesourcepro.com/articles/57/</link>
		<comments>http://sitesourcepro.com/articles/57/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 16:00:35 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Web Talk]]></category>

		<guid isPermaLink="false">http://sitesourcepro.com/?p=57</guid>
		<description><![CDATA[I have to say this is one of my favorite sites to witness.  I remember when DubFx only had a few thousand views from youtube and now he is almost about to pass 1 million views.  This musician does everything with a loop pedal and is the most amazing thing to watch if you can [...]]]></description>
			<content:encoded><![CDATA[<p>I have to say this is one of my favorite sites to witness.  I remember when DubFx only had a few thousand views from youtube and now he is almost about to pass 1 million views.  This musician does everything with a loop pedal and is the most amazing thing to watch if you can relate to how hard it is to do what he does.  After watching him I purchased two albums and really love &#8220;Everythinks a Ripple&#8221;.  Watch the movie below and enjoy.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="405" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/UiInBOVHpO8&amp;hl=en&amp;fs=1&amp;rel=0&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="405" src="http://www.youtube.com/v/UiInBOVHpO8&amp;hl=en&amp;fs=1&amp;rel=0&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a title="DubFx" href="http://www.dubfx.net/" target="_blank">Visit Website here</a></p>
<p>As always please leave some comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitesourcepro.com/articles/57/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t re-create the wheel&#8230;</title>
		<link>http://sitesourcepro.com/articles/45/</link>
		<comments>http://sitesourcepro.com/articles/45/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 04:02:21 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Web Talk]]></category>

		<guid isPermaLink="false">http://sitesourcepro.com/?p=45</guid>
		<description><![CDATA[I know a lot of organizations that have a team of different types of web guys.  Especially if they are using a flash integration to a website.  Below is a list of great links to a full resource of cheap quality material that is updated and customizable.
Sites:

 FlashDen
At FlashDen you can buy and sell files [...]]]></description>
			<content:encoded><![CDATA[<p>I know a lot of organizations that have a team of different types of web guys.  Especially if they are using a flash integration to a website.  Below is a list of great links to a full resource of cheap quality material that is updated and customizable.</p>
<p><strong>Sites:</strong></p>
<ul>
<li> <a title="FlashDen" href="http://flashden.net?ref=rwagener11" target="_blank"><strong>FlashDen</strong></a><br />
At FlashDen you can buy and sell files to use in your Adobe Flash projects. You’ll find everything from preloaders to site templates, all selling for as little as $1.</li>
<li><a title="ThemeForest" href="http://themeforest.net?ref=rwagener11" target="_blank"><strong>ThemeForest</strong></a><br />
ThemeForest is a marketplace for buying and selling website templates and CMS themes for all sorts of products, like WordPress, Drupal and Joomla.</li>
<li><a title="VideoHive" href="http://videohive.net?ref=rwagener11" target="_blank"><strong>VideoHive</strong></a><br />
VideoHive is a marketplace for buying and selling royalty free stock footage, motion graphics and project files including After Effects and DVD Menus. Anyone is free to join, purchase or sell their own work!</li>
<li><a title="AudioJungle" href="http://audiojungle.net?ref=rwagener11" target="_blank"><strong>AudioJungle</strong></a><br />
AudioJungle is a brand new audio community serving up thousands of stock music loops and audio effects by independent authors for use in your projects. Join us today, and together we’re going to rock the web!</li>
<li><a title="GraphicRiver" href="http://graphicriver.net?ref=rwagener11" target="_blank"><strong>GraphicRiver</strong></a><br />
GraphicRiver is a marketplace for buying and selling Royalty Free layered Adobe Photoshop Files, EPS Vector Graphics, Icons, Textures, Shapes, Brushes, and More. It&#8217;s like having an entire graphics department at your fingertips!</li>
</ul>
<p>The best part is that you can buy and sell your work.  It&#8217;s a site for developers by developers.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitesourcepro.com/articles/45/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Bing.com picking up?</title>
		<link>http://sitesourcepro.com/articles/42/</link>
		<comments>http://sitesourcepro.com/articles/42/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 03:30:13 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Web Talk]]></category>

		<guid isPermaLink="false">http://sitesourcepro.com/?p=42</guid>
		<description><![CDATA[Microsoft is paying a lot of money in Advertising for there new search engine (even though I thought live.com was the new one).  Well since they were pushing it so much.  I ended up using there CPC program.  I have to say I was disappointed.
I can&#8217;t seem to find any keywords that really do what [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft is paying a lot of money in Advertising for there new search engine (even though I thought live.com was the new one).  Well since they were pushing it so much.  I ended up using there <a title="Microsoft Advertising" href="http://adcenter.microsoft.com" target="_blank">CPC</a> program.  I have to say I was disappointed.</p>
<p>I can&#8217;t seem to find any keywords that really do what I want.  Once you use <a title="Google Adwords" href="http://adwords.google.com/" target="_blank">Google Adwords</a> so long.  Any windows app just seems obsolete.</p>
<p>Microsoft seems set on this search.  Who knows what they will do.  It is still in  development even though the economy is bad.  They might pull the budget since <a title="Bing.com Trends" href="http://www.google.com/insights/search/#q=bing.com&amp;cmpt=q" target="_blank">product searches are down</a> across the bord.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitesourcepro.com/articles/42/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Product Comparison Web Sites</title>
		<link>http://sitesourcepro.com/articles/35/</link>
		<comments>http://sitesourcepro.com/articles/35/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 01:01:09 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Web Talk]]></category>

		<guid isPermaLink="false">http://sitesourcepro.com/?p=35</guid>
		<description><![CDATA[Now this is where I have mixed feelings.  I would without a doubt sign-up for Google Base.  So that your products have a chance to appear in search results for free.  You aren&#8217;t going to get much from it but it&#8217;s a start.   For instance,  If you setup the file and don&#8217;t have the best pricing. [...]]]></description>
			<content:encoded><![CDATA[<p>Now this is where I have mixed feelings.  I would without a doubt sign-up for <a title="Google Base" href="http://www.google.com/base/" target="_blank">Google Base</a>.  So that your products have a chance to appear in search results for <strong>free</strong>.  You aren&#8217;t going to get much from it but it&#8217;s a start.   For instance,  If you setup the file and don&#8217;t have the best pricing.  You could expect 10 orders per month.  Below I will list the sites I have dealt with and my experiences.</p>
<ul>
<li><strong>Google Base</strong> |  <a title="Sign Up for Google Base" href="http://www.google.com/base/" target="_blank">sign-up here</a> | <a title="Preview of Google Base" href="http://www.google.com/products?q=techsourcepro.com&amp;aq=f" target="_blank">see what products will look like</a> |<br />
My Thoughts:  Google has been really good to me and my clients but lately they have been having problems with the data uploads.  Urg!</li>
<li><strong>Yahoo Shopping</strong><br />
I don&#8217;t know what it is with yahoo.  Their interfaces are also so buggy and slow.  I have to login a million times to finally get logged into their system.  Something with the programming of that part of yahoo is messed up.  (ok i will stop)  But I have noticed google will pick up these links as back links (possibly useful for SEO).</li>
<li><strong>Shopzilla.com</strong><br />
It seems to work ok but I am still unsure that this is a good tool for USA territory.  It gets high clicks but not to many conversions (at least so far and will update this with more info when I get it.)</li>
<li><strong>Shopping.com</strong><br />
There interface is pretty slow.  But it doesn&#8217;t give you a ton of trash clicks.  Seems that they have a better User Interface that allows the customer to see if that is what they need before clicking on your site.</li>
<li><strong>NexTag.com</strong><br />
Now NexTag.com&#8230;  They called me and told me they are the biggest in the USA.  I am going to try them out however from personal experience.  They are used in Store Fronts like Guitar Center to find the lowest price because they price match.  I have never used them for anything other than that.</li>
<li><strong>PriceGrabber.com</strong><br />
Any feedback about these guys would be great&#8230;</li>
</ul>
<p>There is a lot of sites that do comparison shopping.  You will have to check out if the site fits, for the product you are selling.</p>
<p>You might be able to get some back-links to your site to help in SEO but don&#8217;t expect very much.  These sites have blocks so that some won&#8217;t be picked up by search engines.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitesourcepro.com/articles/35/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Advertising to Bloggers Bad?</title>
		<link>http://sitesourcepro.com/articles/16/</link>
		<comments>http://sitesourcepro.com/articles/16/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 00:22:17 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Web Talk]]></category>

		<guid isPermaLink="false">http://sitesourcepro.com/?p=16</guid>
		<description><![CDATA[I have been looking into this new way of advertising for some time now.   I see that Matt Cutts explains that it is looked at in a bad way.  He goes into explaining deceiving search engines to display incorrect results.  (his example is about a person researching about a tumor)
I have to disagree.  Yes [...]]]></description>
			<content:encoded><![CDATA[<p>I have been looking into this new way of advertising for some time now.   I see that <a title="Google Take on Blogging Advertising" href="http://www.mattcutts.com/blog/sponsored-conversations/" target="_blank">Matt Cutts</a> explains that it is looked at in a bad way.  He goes into explaining deceiving search engines to display incorrect results.  (his example is about a person researching about a tumor)</p>
<p>I have to disagree.  Yes if you are paying to have other people lie about you then it should be looked at as BAD and they should be stopped.  This should be the responsibility of the Pay-Per-Blog Advertising firms and should stop the blog.  I will go to explain.</p>
<p>If you have a company that is getting extremely good feedback from customers and you want to spread the word around the net and looking for something more than just the average PPC (pay-per-click)  system.  Then this might be solution for you.  I haven&#8217;t tried it myself but I am following this battle everyday.  But I think if they do it the correct way and I will explain what I feel is the correct way of Pay-Per-Blogging in-which then Google (or any other search engines) should not penalize you for doing it.</p>
<p><strong>What I Feel is the Honest Approach:</strong></p>
<ul>
<li> Examine the Blog you are wanting to post on before paying.</li>
<li>Choose a site that matches the industry you are in.</li>
<li>Choose a High Page Rank/High Traffic Site so that you know your dollar will be seen on a good blog.  Not a overnight blog.</li>
<li>I think a page rank 4 should go for $20.</li>
<li>In the details of instructions you write to the blogger.  Have them learn about your company (about us page) and have them read your customer reviews.</li>
<li>Then have them understand the product you are trying to promote.</li>
<li>Next ask them a series of questions. like,   How would you use this product?  What would you benefit from using this product?  What do you think about our service offerings and customer satisfaction (call us if you want to)</li>
<li>Then give them the link to the page that you want the article based on.</li>
<li>Finally,  When they write the article make sure it correct in presenting your firm.  If all is good.  Approve and measure the results using your stat software like googles.</li>
</ul>
<p>If I get any updates about this type of advertising I will update this post.  Make sure to subscribe.  Hopefully,  google will understand that this advertising is legit and they just have to work on a defence that won&#8217;t screw up there algorithm.</p>
<p>Give me your comments.  All content here is my opinion and I can&#8217;t be liable for anything because you followed this post.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitesourcepro.com/articles/16/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SiteSourcePro.com Launches Helpful Blog</title>
		<link>http://sitesourcepro.com/articles/3/</link>
		<comments>http://sitesourcepro.com/articles/3/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 23:08:15 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Web Talk]]></category>

		<guid isPermaLink="false">http://sitesourcepro.com/?p=3</guid>
		<description><![CDATA[I am starting a blog because I run into so many web situations.   I think someone might find it helpful.  If not, atleast I will finally have a place I log all my information.]]></description>
			<content:encoded><![CDATA[<p>I am starting a blog because I run into so many web situations.   I think someone might find it helpful.  If not, atleast I will finally have a place I log all my information.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitesourcepro.com/articles/3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
