<?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"
	>

<channel>
	<title>Online Shopping Network &#187; Blog</title>
	<atom:link href="http://www.shop-network.org/category/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shop-network.org</link>
	<description>Home Shopping Network - United States</description>
	<pubDate></pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>A Non-Traditional Wordpress Tuning Guide Part III</title>
		<link>http://www.shop-network.org/blog/a-non-traditional-wordpress-tuning-guide-part-iii/</link>
		<comments>http://www.shop-network.org/blog/a-non-traditional-wordpress-tuning-guide-part-iii/#comments</comments>
		<pubDate>2008-09-02T03:25:02Z</pubDate>
		<dc:creator>Shop Network</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.shop-network.org/?p=148182</guid>
		<description><![CDATA[Notice: I take no responsibility for the code mentioned in this, or other, blog posts. This code works on my site, however, I will not guarantee nor be responsible for how it runs in your hosting environment.
If you&#8217;re using a php accelerator, in particular, if you&#8217;re using APC PHP Accelerator, your Wordpress Blog can receive [...]]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration: underline;"><strong>Notice:</strong> I take no responsibility for the code mentioned in this, or other, blog posts. This code works on my site, however, I will not guarantee nor be responsible for how it runs in your hosting environment.</span></p>
<p>If you&#8217;re using a php accelerator, in particular, if you&#8217;re using <a href="http://pecl.php.net/package/APC" rel="nofollow" >APC PHP Accelerator</a>, your Wordpress Blog can receive a distinct performance boost. Since Wordpress uses <a href="http://php.net/" rel="nofollow"  target="_blank">PHP</a> with a <a href="http://dev.mysql.com/" rel="nofollow"  target="_blank">mySQL </a>backbone, optimizing PHP and/or mySQL will result in a faster Wordpress Blog.</p>
<p><span style="text-decoration: underline;"><strong>PHP Accelerators</strong></span></p>
<ul>
<li>A PHP Accelerator focuses on optimizing PHP by caching the compiled output of PHP code. In other words, when using a PHP Accelerator, a page using PHP code does not need to recomple on every page request &#8212; just when something in the code changes. This saves CPU time, and helps a server to render information faster.</li>
</ul>
<p>I came across an interesting PHP file that uses <a href="http://txfx.net/files/wordpress/apc-object-cache.phps" rel="nofollow"  target="_blank">APC as the backend for the WP Object Cache v0.2</a>. On this website, I&#8217;m using <a href="http://www.shop-network.org/wp-content/object-cache.phps" target="_blank">v0.2.1</a>. To be honest, I have not done a file comparison between v0.2 and v0.2.1 in order to see the differences &#8212; all I know is that v0.2.1 works on this site with the latest version of APC, v3.0.19.</p>
<p>Remember to view the information contained in the file. It says, &#8220;Install this file to <strong>wp-content/object-cache.php</strong>&#8221;</p>
<p>I recommend enabling the number of mySQL queries before installing this <a href="http://www.shop-network.org/blog/a-non-traditional-wordpress-tuning-guide-part-iii/" target="_self">APC Plugin for Wordpress</a>. This code might be useful for this purpose:</p>
<blockquote>
<p style="padding-left: 30px;">&lt;p style=&#8221;margin:0;padding:0;&#8221;&gt;&lt;?php echo get_num_queries(); ?&gt; &lt;a rel=&#8221;nofollow&#8221; href=&#8221;http://www.mysql.com/&#8221;&gt;mySQL&lt;/a&gt; queries executed in &lt;?php timer_stop(1); ?&gt; seconds.&lt;/p&gt;</p>
</blockquote>
<p><span style="color: #ff6600;">What you should see is a <span style="text-decoration: underline;"><strong>reduction</strong></span> of the number of mySQL queries when your blog page/post is refreshed.</span> Of course, all of this assumes that you have the Query Cache enabled in mySQL.</p>
<p><span style="text-decoration: underline;"><strong>MySQL&#8217;s my.cnf</strong></span></p>
<ul>
<blockquote>
<li>[mysqld]<br />
datadir=/var/lib/mysql<br />
socket=/var/lib/mysql/mysql.sock<br />
skip-locking<br />
skip-innodb</p>
<p>back_log                 = 50<br />
connect_timeout          = 1000<br />
concurrent_insert        = 4<br />
interactive_timeout      = 1000<br />
join_buffer              = 3M<br />
join_buffer_size         = 3M<br />
key_buffer               = 192M<br />
log_slow_queries         = /var/log/mysqld.slow.log<br />
long_query_time          = 1<br />
low_priority_updates     = 1<br />
max_allowed_packet       = 1M<br />
max_connect_errors       = 15<br />
max_connections          = 150<br />
max_heap_table_size      = 128M<br />
max_tmp_tables           = 1024<br />
max_user_connections     = 150<br />
myisam_sort_buffer_size  = 128M<br />
net_buffer_length        = 16k<br />
query_alloc_block_size   = 16384<br />
query_cache_limit        = 2M<br />
query_cache_min_res_unit = 1k<br />
query_cache_size         = 48M<br />
<strong>query_cache_type         = 1</strong><br />
query_prealloc_size      = 64M<br />
read_buffer_size         = 2M<br />
read_rnd_buffer_size     = 4M<br />
record_buffer            = 3M<br />
server-id                = 1<br />
skip-bdb<br />
skip-innodb<br />
sort_buffer_size         = 2M<br />
table_cache              = 1024<br />
thread_concurrency       = 4<br />
thread_cache             = 128M<br />
thread_cache_size        = 40<br />
thread_stack             = 128K<br />
tmp_table_size           = 128M<br />
wait_timeout             = 60</li>
</blockquote>
</ul>
<p><span style="text-decoration: underline;"><strong>WordPress&#8217;s wp-config.php</strong></span></p>
<ul>
<blockquote>
<li>define(&#8217;WP_CACHE&#8217;, true);<br />
define(’CACHE_EXPIRATION_TIME’, 900);</li>
</blockquote>
</ul>
<p>Post from: <a href="http://www.shop-network.org">Online Shopping Network</a>
</p>
<p><a href="http://www.shop-network.org/blog/a-non-traditional-wordpress-tuning-guide-part-iii/">A Non-Traditional Wordpress Tuning Guide Part III</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shop-network.org/blog/a-non-traditional-wordpress-tuning-guide-part-iii/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Class Action Suit Against Paypal?</title>
		<link>http://www.shop-network.org/blog/class-action-suit-against-paypal/</link>
		<comments>http://www.shop-network.org/blog/class-action-suit-against-paypal/#comments</comments>
		<pubDate>2008-08-30T20:37:17Z</pubDate>
		<dc:creator>Shop Network</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.shop-network.org/?p=146484</guid>
		<description><![CDATA[I received an email today on an account I have tied to my PayPal account about a class action lawsuit against Paypal. What&#8217;s interesting about this email is that it does not phish for the usual account information. Instead, the email recommends that people visit another website in order to download and print a .PDF [...]]]></description>
			<content:encoded><![CDATA[<p>I received an email today on an account I have tied to my PayPal account about a class action lawsuit against Paypal. What&#8217;s interesting about this email is that it does not phish for the usual account information. Instead, the email recommends that people visit another website in order to download and print a .PDF file that would be mailed in. In my mind, phishers and scammers are less likely to provide physical address information. In addition, this email reports that no further action would be necessary in order to be considered part of the class action settlement.</p>
<p>I went ahead and forwarded the email to <span class="mh-plaintext">spo<a href='http://mailhide.recaptcha.net/d?k=01Ju43wWsYGg5G0cFzr0ZKIw==&amp;c=yPQivTiwczlXMR2LLyReYD4h7kEMMMWH2XjdXxKQQC8=' onclick="window.open('http://mailhide.recaptcha.net/d?k=01Ju43wWsYGg5G0cFzr0ZKIw==&amp;c=yPQivTiwczlXMR2LLyReYD4h7kEMMMWH2XjdXxKQQC8=', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;" title="Reveal this e-mail address">...</a>@paypal.com</span> to be on the safe side. I also reported the destination website address that provides the .PDF file to Paypal.</p>
<p>This might end up being another scam &amp; phishing email. <span style="text-decoration: underline;"><strong>Therefore I recommend that each person reading this entry perform their own due diligence on this matter.</strong></span> Below is a copy and paste of the email that I received.</p>
<p>Using <a href="http://www.domaintools.com/" rel="nofollow"  target="_blank">domain tools</a> revealed that the domain mentioned in this email, <a href="http://whois.domaintools.com/steelesettlement.com" rel="nofollow"  target="_blank">steelesettlement.com</a>, was created on August 1, 2008.</p>
<p>There are several other websites that are questioning the same email.</p>
<ul>
<li><a href="http://www.puretalkforum.com/f2/steele-et-al-v-paypal-inc-4438.html" rel="nofollow"  target="_blank">Paypal thread on Pure Talk Forum</a></li>
<li><a href="http://forums.digitalpoint.com/showthread.php?t=1002909" rel="nofollow"  target="_blank">Paypal thread on The Digital Point Forums</a></li>
<li><a href="http://forums.ebay.com/db2/thread.jspa?threadID=520006336&amp;tstart=0&amp;mod=1220045214229" rel="nofollow"  target="_blank">Paypal thread on the eBay Forums</a></li>
</ul>
<p><script type="text/javascript"><!--
var YAHOO = {'Shortcuts' : {}};
if (typeof YAHOO == "undefined") {
 var YAHOO = {};
}
YAHOO.Shortcuts = YAHOO.Shortcuts || {};
YAHOO.Shortcuts.hasSensitiveText = true;
YAHOO.Shortcuts.sensitivityType = ["sensitive_news_terms"];
YAHOO.Shortcuts.doUlt = false;
YAHOO.Shortcuts.location = "us";
YAHOO.Shortcuts.document_id = 0;
YAHOO.Shortcuts.document_type = "";
YAHOO.Shortcuts.document_title = "Federal Court\u005c\u0027s Notice of Proposed Class Action Settlement.  Please Read.";
YAHOO.Shortcuts.document_publish_date = "";
YAHOO.Shortcuts.document_author = "<span class="mh-plaintext">stee<a href='http://mailhide.recaptcha.net/d?k=01Ju43wWsYGg5G0cFzr0ZKIw==&amp;c=hcqGb9HDPsomqbVmsaHd8_MbjLKQO8OcQS4HR_VeN3k=' onclick="window.open('http://mailhide.recaptcha.net/d?k=01Ju43wWsYGg5G0cFzr0ZKIw==&amp;c=hcqGb9HDPsomqbVmsaHd8_MbjLKQO8OcQS4HR_VeN3k=', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;" title="Reveal this e-mail address">...</a>@tgcginc.com</span>";
YAHOO.Shortcuts.document_url = "";
YAHOO.Shortcuts.document_tags = "";
YAHOO.Shortcuts.document_language = "english";
YAHOO.Shortcuts.annotationSet = {
"lw_1220126239_0": {
"text": "PayPal",
"extended": 0,
"startchar": 41,
"endchar": 46,
"start": 41,
"end": 46,
"extendedFrom": "",
"predictedCategory": "",
"predictionProbability": "0",
"weight": 0.35,
"type": ["shortcuts:/us/instance/organization/domain"],
"category": ["ORGANIZATION"],
"wikiId": "PayPal",
"relatedWikiIds": ["Apple_Inc.", "Australia", "EBay", "Expedia", "Facebook", "Gartner", "Google", "Microsoft", "MySpace", "Rocketplane_Kistler"],
"relatedEntities": ["apple", "australia", "ebay", "ebay inc", "expedia", "facebook", "gartner inc", "google inc", "myspace", "rocketplane kistler"],
"showOnClick": ["lw_1220126239_2", "lw_1220126239_5"],
"context": "Steele et al. v. PayPal, Inc. et al., Civil Action No. 1:05-CV-01720 (ILG)(VVP)   Notice from",
"metaData": {
"domain_name": "PayPal",
"domain_url": "http://www.paypal.com/",
"visible": "true"
}
 },
"lw_1220126239_1": {
"text": "class action settlement",
"extended": 0,
"startchar": 243,
"endchar": 265,
"start": 243,
"end": 265,
"extendedFrom": "",
"predictedCategory": "",
"predictionProbability": "0",
"weight": 0.836561,
"type": ["shortcuts:/concept"],
"category": ["CONCEPT"],
"wikiId": "",
"relatedWikiIds": [],
"relatedEntities": [],
"showOnClick": [],
"context": "You may be eligible to receive a benefit from a class action settlement if you funded a PayPal transaction using a source other",
"metaData": {
"visible": "false"
}
 },
"lw_1220126239_2": {
"text": "eBay Inc",
"extended": 0,
"startchar": 655,
"endchar": 662,
"start": 655,
"end": 662,
"extendedFrom": "",
"predictedCategory": "ORGANIZATION",
"predictionProbability": "0.988435",
"weight": 0.301432,
"type": ["shortcuts:/us/instance/organization/company/company_name"],
"category": ["ORGANIZATION"],
"wikiId": "EBay",
"relatedWikiIds": ["Amazon_River", "Boston_Red_Sox", "Craigslist", "Facebook", "Google", "Microsoft", "New_York_Yankees", "PayPal", "Santa_Monica_Pier", "Wal-Mart"],
"relatedEntities": ["amazon", "amazon.com inc", "apple inc", "craigslist", "ebay", "google inc", "microsoft corp", "news corp", "paypal", "yahoo inc"],
"showOnClick": ["lw_1220126239_0", "lw_1220126239_5"],
"context": "the proposed settlement.    The settlement will resolve a lawsuit against eBay Inc. and PayPal, Inc. (collectively, \u0022Defendants\u0022) involving claims arising out of",
"metaData": {
"canonicalName": "eBay Inc.",
"exchange": "NMS",
"symbol": "EBAY",
"visible": "false"
}
 },
"lw_1220126239_3": {
"text": "good faith belief",
"extended": 0,
"startchar": 1759,
"endchar": 1775,
"start": 1759,
"end": 1775,
"extendedFrom": "",
"predictedCategory": "",
"predictionProbability": "0",
"weight": 0.619964,
"type": ["shortcuts:/concept"],
"category": ["CONCEPT"],
"wikiId": "",
"relatedWikiIds": [],
"relatedEntities": [],
"showOnClick": [],
"context": "a Claim Form under oath, attest to a reasonable and good faith belief that they would have received a full reversal of such",
"metaData": {
"visible": "false"
}
 },
"lw_1220126239_4": {
"text": "valid credit card",
"extended": 0,
"startchar": 1855,
"endchar": 1871,
"start": 1855,
"end": 1871,
"extendedFrom": "",
"predictedCategory": "",
"predictionProbability": "0",
"weight": 0.462819,
"type": ["shortcuts:/concept"],
"category": ["CONCEPT"],
"wikiId": "",
"relatedWikiIds": [],
"relatedEntities": [],
"showOnClick": [],
"context": "a full reversal of such payment had they used a valid credit card in their possession at the time of the subject transaction",
"metaData": {
"visible": "false"
}
 },
"lw_1220126239_5": {
"text": "eBay",
"extended": 0,
"startchar": 2122,
"endchar": 2125,
"start": 2122,
"end": 2125,
"extendedFrom": "",
"predictedCategory": "",
"predictionProbability": "0",
"weight": 0.636088,
"type": ["shortcuts:/us/instance/organization/company/company_name", "shortcuts:/us/instance/organization/domain", "shortcuts:/us/tag/buzz_terms"],
"category": ["ORGANIZATION"],
"wikiId": "EBay",
"relatedWikiIds": ["Amazon_River", "Boston_Red_Sox", "Craigslist", "Facebook", "Google", "Microsoft", "New_York_Yankees", "PayPal", "Santa_Monica_Pier", "Wal-Mart"],
"relatedEntities": ["boston red sox", "craigslist", "ebay inc", "google", "mesa, arizona", "microsoft", "new yankee stadium", "new york yankees", "paypal", "yahoo! sports"],
"showOnClick": ["lw_1220126239_0", "lw_1220126239_2"],
"context": "any judicial officer to whom this Litigation is assigned; PayPal, eBay and any of its affiliates; any current or former employees",
"metaData": [ {
"canonicalName": "eBay Inc.",
"domain_name": "eBay",
"domain_url": "http://www.ebay.com/",
"exchange": "NMS",
"longname": "eBay Inc.",
"name": "EBAY INC",
"symbol": "EBAY",
"visible": "true"},
 {
"canonicalName": "eBay Inc.",
"domain_name": "eBay",
"domain_url": "http://www.ebay.com/",
"exchange": "NMS",
"longname": "eBay Inc.",
"name": "EBAY INC",
"symbol": "EBAY",
"visible": "true"}
]
 },
"lw_1220126239_6": {
"text": "December 14, 2008",
"extended": 0,
"startchar": 2858,
"endchar": 2874,
"start": 2858,
"end": 2874,
"extendedFrom": "",
"predictedCategory": "",
"predictionProbability": "0",
"weight": 1,
"type": ["shortcuts:/us/instance/identifier/date_only"],
"category": ["IDENTIFIER"],
"wikiId": "",
"relatedWikiIds": [],
"relatedEntities": [],
"showOnClick": [],
"context": "obligations, and options under the proposed settlement. You have until December 14, 2008 to file your Claim Form and Certification Form. Your legal",
"metaData": {
"isoEndDate": "",
"isoStartDate": "20081214T100000",
"past": "false",
"recurring": "false",
"visible": "true"
}
 },
"lw_1220126239_7": {
"text": "October 31, 2008",
"extended": 0,
"startchar": 4133,
"endchar": 4148,
"start": 4135,
"end": 4150,
"extendedFrom": "",
"predictedCategory": "",
"predictionProbability": "0",
"weight": 1,
"type": ["shortcuts:/us/instance/identifier/date_only"],
"category": ["IDENTIFIER"],
"wikiId": "",
"relatedWikiIds": [],
"relatedEntities": [],
"showOnClick": [],
"context": "signed request for exclusion must be RECEIVED on or before October 31, 2008 and mailed to the following address:    PayPal/Steele Class Action Settlement",
"metaData": {
"isoEndDate": "",
"isoStartDate": "20081031T100000",
"past": "false",
"recurring": "false",
"visible": "true"
}
 },
"lw_1220126239_8": {
"text": "225 Cadman Plaza East, Brooklyn, New York",
"extended": 0,
"startchar": 5015,
"endchar": 5055,
"start": 5017,
"end": 5057,
"extendedFrom": "",
"predictedCategory": "",
"predictionProbability": "0",
"weight": 0.995864,
"type": ["shortcuts:/us/instance/place/us/street"],
"category": ["PLACE"],
"wikiId": "",
"relatedWikiIds": [],
"relatedEntities": [],
"showOnClick": [],
"context": "for the Eastern District of New York, Brooklyn Main Office, 225 Cadman Plaza East, Brooklyn, New York 11201, no later than October 31, 2008. Pursuant to the",
"metaData": {
"geoArea": "185.541",
"geoBldgNumber": "225",
"geoCountry": "United States",
"geoCounty": "Brooklyn",
"geoIsoCountryCode": "US",
"geoLocation": "(-73.948936, 40.654831)",
"geoName": "Brooklyn",
"geoPlaceType": "Street",
"geoState": "New York",
"geoStateCode": "NY",
"geoStreetName": "Cadman Plaza East",
"geoTown": "New York",
"type": "shortcuts:/us/instance/place/us/street",
"visible": "true"
}
 },
"lw_1220126239_9": {
"text": "on November 17, 2008 at 10:00 a.m",
"extended": 0,
"startchar": 5368,
"endchar": 5400,
"start": 5370,
"end": 5402,
"extendedFrom": "",
"predictedCategory": "",
"predictionProbability": "0",
"weight": 1,
"type": ["shortcuts:/us/instance/identifier/date_time"],
"category": ["IDENTIFIER"],
"wikiId": "",
"relatedWikiIds": [],
"relatedEntities": [],
"showOnClick": [],
"context": "Settlement Hearing\u0022) shall be held before Hon. I Leo Glasser on November 17, 2008 at 10:00 a.m. at the United States District Court for the Eastern District",
"metaData": {
"isoEndDate": "",
"isoStartDate": "20081117T100000",
"past": "false",
"recurring": "false",
"visible": "true"
}
 },
"lw_1220126239_10": {
"text": "Cadman Plaza",
"extended": 0,
"startchar": 5501,
"endchar": 5512,
"start": 5503,
"end": 5514,
"extendedFrom": "",
"predictedCategory": "",
"predictionProbability": "0",
"weight": 0.515522,
"type": ["shortcuts:/us/tag/other/wiki"],
"category": ["WIKI"],
"wikiId": "Cadman_Plaza",
"relatedWikiIds": [],
"relatedEntities": [],
"showOnClick": [],
"context": "the Eastern District of New York, Courtroom 8B South, 225 Cadman Plaza East, Brooklyn, New York 11201.    4.     Do Nothing   You will",
"metaData": {
"visible": "false"
}
 }
};
// --></script></p>
<blockquote>
<p align="center"><strong><em>Steele et al. v. <a href="http://www.paypal.com/" rel="nofollow"  target="_blank"><span id="lw_1220126239_0" class="yshortcuts">PayPal</span></a>, Inc. et al.,</em> Civil Action No. 1:05-CV-01720 (ILG)(VVP)</strong></p>
<p><strong>Notice from Federal Court.  Please Read.</strong></p>
<p><strong>You may be eligible to receive a benefit from a <span id="lw_1220126239_1" class="yshortcuts">class action settlement</span> if you funded a PayPal transaction using a source other than your credit card between February 1, 2004 and the present.</strong></p>
<p>A federal court has directed that this notice be sent to inform you of a proposed class action settlement. Records show that you may be eligible to receive a benefit under the proposed settlement.</p>
<p>The settlement will resolve a lawsuit against <span id="lw_1220126239_2" class="yshortcuts" style="border-bottom: medium none; background: transparent none repeat scroll 0% 0%; cursor: pointer; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;">eBay Inc</span>. and PayPal, Inc. (collectively, &#8220;Defendants&#8221;) involving claims arising out of representations in the PayPal User Agreement regarding PayPal&#8217;s policies and practices for responding to refund requests from those customers who pay for transactions through PayPal using funds from funding sources other than credit cards. Under the settlement, Defendants have agreed to establish a settlement fund of $3.5 million to pay claims to potential class members. The proposed Class is defined as:</p>
<table border="0" width="80%" align="center">All U.S. based PayPal account holders who funded a PayPal transaction after February 1, 2004, using a source other than a credit card: (i) who subsequently requested a reversal of the transaction through PayPal&#8217;s prevailing Buyer Complaint Policy and/or Buyer Protection Policy (collectively, &#8220;Policies&#8221;); (ii) who did not receive a refund equal to 100% of their transaction payment in response to such request from PayPal or their bank; and (iii) who, through the timely submission of a Claim Form under oath, attest to a reasonable and <span id="lw_1220126239_3" class="yshortcuts">good faith belief</span> that they would have received a full reversal of such payment had they used a <span id="lw_1220126239_4" class="yshortcuts">valid credit card</span> in their possession at the time of the subject transaction to fund the payment and filed a timely chargeback request with their credit card issuing bank. Excluded from the Class are any judicial officer to whom this Litigation is assigned; PayPal, <a href="http://www.ebay.com/" rel="nofollow"  target="_blank"><span id="lw_1220126239_5" class="yshortcuts">eBay</span></a> and any of its affiliates; any current or former employees, officers, or directors of PayPal or eBay; any Persons currently residing outside of the United States; and, all Persons who timely and validly request exclusion from the Class pursuant to the Notice.</table>
<p><strong>To see if you are a Class Member and to obtain full notice of the Settlement, the required procedures, the deadlines, your obligations, and your options, you must visit <a rel="nofollow">www.steelesettlement.com</a>.  This email is only a brief summary of the full notice that is posted on the website.</strong></p>
<p>If you are an eligible Settlement Class Member, you have rights, obligations, and options under the proposed settlement. You have until <span id="lw_1220126239_6" class="yshortcuts" style="border-bottom: 1px dashed #0066cc; background: transparent none repeat scroll 0% 0%; cursor: pointer; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;">December 14, 2008</span> to file your Claim Form and Certification Form.  <strong>Your legal rights are affected whether you act or not.</strong></p>
<p><strong>1.     Submit The Claim Form And The Certification Form By Mail</strong></p>
<p>This is the only way to get a settlement payment. You must: (1) print and fill out the Claim Form and return it by mail to the address provided on the Claim Form; and (2) print the Certification Page of your Claim Form, <span style="text-decoration: underline;">sign it</span>, and return it by mail to the address provided on the Claim Form. Your Claim Form and signed Certification Page must be mailed and postmarked no later than December 14, 2008. For more information on these deadlines, the Effective Date of the settlement, the Claim Form procedures, and the settlement benefit, you must visit <a rel="nofollow">www.steelesettlement.com</a>.</p>
<p><strong>2.     Exclude Yourself – Opt Out of the Settlement</strong></p>
<p><strong></strong>If you do <span style="text-decoration: underline;">not</span> want to remain a member of the Class and participate in the Amended Settlement, then you may exclude yourself (opt-out) from the Class by mailing or delivering (email is not permitted) your written request. Your <span style="text-decoration: underline;">original</span>, <span style="text-decoration: underline;">signed</span> request for exclusion must be <span style="text-decoration: underline;">RECEIVED on or before <span id="lw_1220126239_7" class="yshortcuts" style="border-bottom: 1px dashed #0066cc; cursor: pointer;">October 31, 2008</span></span> and mailed to the following address:</p>
<table border="0" width="300" align="center">PayPal/Steele Class Action Settlement<br />
c/o The Garden City Group, Inc.<br />
P.O. Box 9309<br />
Dublin, OH 43017-4209</table>
<p>Your request for exclusion must contain your name and address, be <span style="text-decoration: underline;">signed</span> by you, and include the reference &#8220;<em>Steele et al. v. PayPal, Inc. et al.,</em> Civil Action No. 1:05-CV-01720.&#8221;  If you exclude yourself from the Class, you will <span style="text-decoration: underline;">not</span> participate in the Amended Settlement and will <span style="text-decoration: underline;">not</span> receive any payment from the Amended Settlement.</p>
<p><strong>3.     Object</strong></p>
<p>Write to the Court about why you do not like the settlement. Your objection must be filed with the Clerk of the United States District Court for the Eastern District of New York, Brooklyn Main Office, <span id="lw_1220126239_8" class="yshortcuts" style="border-bottom: 1px dashed #0066cc; background: transparent none repeat scroll 0% 0%; cursor: pointer; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;">225 Cadman Plaza East, Brooklyn, New York</span> 11201, no later than October 31, 2008.  <span style="text-decoration: underline;">Pursuant to the Court&#8217;s Order, you may not be heard on or entitled to contest the Court&#8217;s decision unless you have filed written objections no later than October 31, 2008.</span> A hearing (&#8221;Settlement Hearing&#8221;) shall be held before Hon. I Leo Glasser <span id="lw_1220126239_9" class="yshortcuts" style="border-bottom: 1px dashed #0066cc; background: transparent none repeat scroll 0% 0%; cursor: pointer; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;">on November 17, 2008 at 10:00 a.m</span>. at the United States District Court for the Eastern District of New York, Courtroom 8B South, 225 <span id="lw_1220126239_10" class="yshortcuts">Cadman Plaza</span> East, Brooklyn, New York 11201.</p>
<p><strong>4.     Do Nothing</strong></p>
<p>You will automatically be included in the Settlement Class and give up your right to be part of any other lawsuit about the claims in this case, but you will not be eligible to receive a settlement benefit unless you submit a Claim Form.</p>
<p><strong>To get complete information about the proposed Settlement, the required procedures, the deadlines, your obligations, and your options, you must visit <a rel="nofollow">www.steelesettlement.com</a>.</strong></p>
<p><strong>Please do not contact PayPal, or PayPal&#8217;s customer support about this Notice, or the Settlement.  Instead, you must visit <a rel="nofollow">www.steelesettlement.com</a> for complete information about the proposed Settlement, the required procedures, the deadlines, your obligations, and your options.</strong></p>
<p><strong>Please do not reply to this message. We are unable to respond to inquiries sent in reply to this email. To contact us, please access the official settlement website at <a rel="nofollow">www.steelesettlement.com</a>. </strong></p></blockquote>
<p>Post from: <a href="http://www.shop-network.org">Online Shopping Network</a>
</p>
<p><a href="http://www.shop-network.org/blog/class-action-suit-against-paypal/">Class Action Suit Against Paypal?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shop-network.org/blog/class-action-suit-against-paypal/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Blu Ray Rebates, Movies, and Deals</title>
		<link>http://www.shop-network.org/blog/blu-ray-rebates-movies-and-deals/</link>
		<comments>http://www.shop-network.org/blog/blu-ray-rebates-movies-and-deals/#comments</comments>
		<pubDate>2008-08-27T01:59:03Z</pubDate>
		<dc:creator>Shop Network</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.shop-network.org/?p=142873</guid>
		<description><![CDATA[Blu-Ray represents the next generation of video discs, and it is one of the most essential components in a modern high-definition home theater entertainment system. In addition to offering a picture resolution 6x greater than traditional DVDs,Blu-Ray offers superior high definition audio.]]></description>
			<content:encoded><![CDATA[<p><strong>At the time of this message, Amazon.com is advertising saving 30% on Blu Ray movies in their <span style="text-decoration: underline;"><a href="http://www.amazon.com/Blu-ray-movies-discs-store-deals/b/ref=pe_1130_10225830?node=193640011&amp;tag=shop-network-20" rel="nofollow"  target="_blank">Blu Ray Store</a></span>.</strong></p>
<div id="result_box" dir="ltr"><strong><span style="text-decoration: underline;">About Blu Ray</span></strong></div>
<div dir="ltr">
<ul>
<li>Blu-Ray represents the next generation of video discs, and it is one of the most essential components in a modern high-definition home theater entertainment system. In addition to offering a picture resolution 6x greater than traditional DVDs, Blu-Ray offers superior high definition audio.</li>
</ul>
</div>
<div dir="ltr"><img src="http://g-ecx.images-amazon.com/images/G/01/dvd/hddvd/comparison_base._V12037155_.jpg" alt="Blu-Ray Vs. DVD Video Quality" width="470" height="266" /></div>
<div dir="ltr">
<ul>
<li>The term &#8220;Blu-Ray&#8221; was derived from the particular wavelength of light used to write and read data from the disc. Since the Blu-Ray&#8217;s blue/indigo laser has a shorter wavelength (445nm-475nm) than the traditional DVD&#8217;s red laser (650nm), more information can be read and written to the Blu-Ray Disc than from a traditional DVD. This results in an increased data storage capacity per layer of disc. While a traditional DVD, using a red laser, stores 4.7GB of information per disc layer, a Blu-Ray disc, using a blue/indigo laser, stores 25GB of information per layer. In essence, because a shorter wavelength laser was used to manufacture blu-ray discs, more information can be crammed onto roughly the same surface area as a traditional DVD.</li>
</ul>
</div>
<blockquote>
<div dir="ltr"><img src="http://eosweb.larc.nasa.gov/EDDOCS/images/Erb/Blue_Spectrum.jpg" alt="Blue Spectrum Wavelength" width="220" height="130" /><img src="http://eosweb.larc.nasa.gov/EDDOCS/images/Erb/Red_Spectrum.jpg" alt="Red Spectrum Wavelength" width="220" height="150" /></div>
<p>Source: <a href="http://eosweb.larc.nasa.gov/EDDOCS/Wavelengths_for_Colors.html" rel="nofollow" title="What Wavelength Goes With a Color? 	Radiation of energy from the sun."  target="_blank">NASA</a>.</p></blockquote>
<p><span style="text-decoration: underline;"><strong>Top 10 Movie titles touting the cleanest and sharpest video image on Blu-Ray</strong></span></p>
<ul>
<li><a href="http://www.amazon.com/exec/obidos/ASIN/B000VBJEFK/shop-network-20" rel="nofollow"  target="_blank">Ratatouille</a></li>
<li><a href="http://www.amazon.com/exec/obidos/ASIN/B000V1Y43W/shop-network-20" rel="nofollow"  target="_blank">Cars</a></li>
<li><a href="http://www.amazon.com/exec/obidos/ASIN/B000ROAK36/shop-network-20" rel="nofollow"  target="_blank">Meet the Robinsons</a></li>
<li><a href="http://www.amazon.com/exec/obidos/ASIN/B0012GVKVY/shop-network-20" rel="nofollow"  target="_blank">I, Robot</a></li>
<li><a href="http://www.amazon.com/exec/obidos/ASIN/B000U7UWVA/shop-network-20" rel="nofollow"  target="_blank">Pirates of the Caribbean - At World&#8217;s End</a></li>
<li><a href="http://www.amazon.com/exec/obidos/ASIN/B000N6UERU/shop-network-20" rel="nofollow"  target="_blank">Pirates of the Caribbean: Dead Man&#8217;s Chest</a></li>
<li><a href="http://www.amazon.com/exec/obidos/ASIN/B000MQ58VI/shop-network-20" rel="nofollow"  target="_blank">Chicken Little</a></li>
<li><a href="http://www.amazon.com/exec/obidos/ASIN/B000L22SGG/shop-network-20" rel="nofollow"  target="_blank">Open Season</a></li>
<li><a href="http://www.amazon.com/exec/obidos/ASIN/B000J6I0VQ/shop-network-20" rel="nofollow"  target="_blank">The Wild</a></li>
<li><a href="http://www.amazon.com/exec/obidos/ASIN/B000XSWVFQ/shop-network-20" rel="nofollow"  target="_blank">Man on Fire</a></li>
</ul>
<p>Post from: <a href="http://www.shop-network.org">Online Shopping Network</a>
</p>
<p><a href="http://www.shop-network.org/blog/blu-ray-rebates-movies-and-deals/">Blu Ray Rebates, Movies, and Deals</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shop-network.org/blog/blu-ray-rebates-movies-and-deals/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Your RSS Might Be Considered Duplicate Content</title>
		<link>http://www.shop-network.org/blog/your-rss-might-be-considered-duplicate-content/</link>
		<comments>http://www.shop-network.org/blog/your-rss-might-be-considered-duplicate-content/#comments</comments>
		<pubDate>2008-08-17T19:15:55Z</pubDate>
		<dc:creator>Shop Network</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.shop-network.org/?p=125820</guid>
		<description><![CDATA[Believe it or not, having an RSS feed might lower the number of listed pages from your blog in the Search Engine Results Page. Why? The answer rests in two words: duplicate content. ]]></description>
			<content:encoded><![CDATA[<div style="float:left;padding-right:15px;padding-bottom:5px;"><img src="http://www.shop-network.org/images/rss-man.png" alt="Blog RSS Hurts Search Engine Rank" width="125" height="125" /></div>
<p>Believe it or not, having an RSS feed might lower the number of listed pages from your blog in the Search Engine Results Page. Why? The answer rests in two words: <strong>duplicate content</strong>. When a search engine, such as Google or Yahoo!, encounters your blog, it sees both the content from the particular blog post itself and the content from the RSS feed for the corresponding blog post. Essentially, the search engine is seeing similar content in two different places on the same domain. Each of these places, RSS and the blog page, competes for placement within the search engine results page (SERPs). While it is not a negative thing to offer readers an RSS feed, offering the search engines an RSS feed without adequate instructions will result in lowering the number of indexed posts.</p>
<p><span style="text-decoration: underline;"><strong>How do I fix duplicate content from my RSS feeds?</strong></span></p>
<p style="padding-left: 30px;">Fixing duplicate content coming from RSS is quite easy. The <a href="http://yoast.com/wordpress/meta-robots-wordpress-plugin/" rel="nofollow"  target="_blank">Meta Robots Wordpress Plugin</a> offers the ability to tell the search engines not to index RSS feeds. Human beings will still be able to see that an RSS feed is available when visiting your site. And even though the search engines will also see that RSS has been made available, they will not index RSS information. Thus your site will not be competing against itself to have a listing in the SERPs.</p>
<p><span style="text-decoration: underline;"><strong>What about the All in One Seo Pack?<br />
</strong></span></p>
<p style="padding-left: 30px;">It is important to know how <em><strong>&lt;meta robots=&#8221;" /&gt; </strong></em>is being implemented throughout a site. While the <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" rel="nofollow"  target="_blank">All in One SEO Pack</a> helps to prevent duplicate content in addition to providing useful <em><strong>&lt;title&gt;&lt;/title&gt;</strong></em> <em><strong>,&lt;meta description=&#8221;" /&gt;</strong></em> <em><strong>, &lt;meta keywords=&#8221;" /&gt;</strong></em> information, it does not yet offer the ability to control what the RSS Feeds are doing. The <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" rel="nofollow"  target="_blank">All in One SEO Pack</a> and the <a href="http://yoast.com/wordpress/meta-robots-wordpress-plugin/" rel="nofollow"  target="_blank">Meta Robots Wordpress Plugin</a> offer similar features in some areas, while they differ in other areas.</p>
<blockquote>
<ul>
<li>I would recommend using the All in One SEO Pack for features pertaining to description, title, and keywords. In other words, the strength of the All in One SEO Pack rests in telling the search engines &#8220;<span style="text-decoration: underline;">how</span>&#8221; it presents your blog information to the search engines.</li>
<li>The Meta Robots Wordpress Plugin is better suited for performing noindex and general clean-up functions. The strength of this plugin rests in telling the search engines &#8220;<span style="text-decoration: underline;">what</span>&#8221; can presented from your site in the results page.</li>
</ul>
</blockquote>
<p><span style="text-decoration: underline;"><strong>Case Study</strong></span></p>
<p style="padding-left: 30px;">I often visit Google in order to see how many of my personal blog posts it has indexed to the SERPs.</p>
<ul>
<li><a href="http://www.google.com/search?hl=en&amp;q=site%3Ashop-network.org%2Fblog%2F&amp;btnG=Google+Search" rel="nofollow"  target="_blank">http://www.google.com/search?hl=en&amp;q=site%3Ashop-network.org%2Fblog%2F&amp;btnG=Google+SearchbtnG=Google+Search</a></li>
</ul>
<p style="padding-left: 30px;">Beginning few days ago, the number of blog entries was decreasing. One day, the number of entries was 8, and the next day, the number would slip down to 5. The day after, the number would increase to 9, then slip down again to 4 the following day. While I understand that Google enjoys shuffling their SERPs, I found it odd that much of the unique content from my blog was not indexed at all. In addition, what had once been indexed was not showing up anymore.</p>
<p style="padding-left: 30px;">After installing the Meta Robots Wordpress Plugin, however, I noticed that the number of blog entries that Google had indexed began to rise. Unless otherwise noted, the search engines will index all pages found, and will follow the links on those pages.</p>
<p>Post from: <a href="http://www.shop-network.org">Online Shopping Network</a>
</p>
<p><a href="http://www.shop-network.org/blog/your-rss-might-be-considered-duplicate-content/">Your RSS Might Be Considered Duplicate Content</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shop-network.org/blog/your-rss-might-be-considered-duplicate-content/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Mistake of Assumption in Relationships</title>
		<link>http://www.shop-network.org/blog/the-mistake-of-assumption-in-relationships/</link>
		<comments>http://www.shop-network.org/blog/the-mistake-of-assumption-in-relationships/#comments</comments>
		<pubDate>2008-08-03T17:28:48Z</pubDate>
		<dc:creator>Shop Network</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.shop-network.org/?p=121771</guid>
		<description><![CDATA[The most common mistake made in relationships is the mistake of "assumption." The mistake of assumption refers to the belief that one's perception perfectly aligns with reality.]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration: underline;"><strong>What is an Interpersonal Relationship?</strong></span></p>
<p style="padding-left: 30px;"><a href="http://en.wikipedia.org/wiki/List_of_basic_relationship_topics" rel="nofollow"  target="_blank"><span class="mw-redirect">Interpersonal relationships</span></a> are social associations, connections, or affiliations between two or more people. They vary in differing levels of intimacy and sharing, implying the discovery or establishment of common ground, and may be centered around something(s) shared in common.</p>
<p><span style="text-decoration: underline;"><strong>A common mistake in relationships</strong></span></p>
<p style="padding-left: 30px;">The most common mistake made in relationships is the mistake of &#8220;<strong>assumption.</strong>&#8221; The mistake of assumption refers to the belief that one&#8217;s perception perfectly aligns with reality. Rather than understanding that one co-creates their own reality, the mistake of assumption reflects the belief that understanding occurs in one direction, i.e., something or someone exterior to myself communicates information to me, and I process that information without contaminating it with elements from my own personal point of view. During the mistake of assumption, reality writes itself to my consciousness without interference or assistance.</p>
<p style="padding-left: 30px;">To flesh this out, let&#8217;s use a situational example. Let&#8217;s suppose that you&#8217;re at a party with your girlfriend. After a few minutes of mingling, you notice that she is across the room talking to some other guy. You don&#8217;t know this other guy too well. She whispers something to him, and they laugh together. Even though she&#8217;s told you before that she has no interest in anyone else, you begin to wonder why she&#8217;s talking to him in the first place. She appears to be captivated to the point that she ignores the happenings around her. You begin to feel jealous.</p>
<p><span style="text-decoration: underline;"><strong>Making sense of assumption</strong></span></p>
<p style="padding-left: 30px;">How does it make sense that jealousy, rather than happiness or indifference, surfaced in this example? Given what you saw, and given what you know, you might suspect that something nefarious is afoot. However, what if she was asking this other guy for some advice about what she should get for your birthday? In other words, what if the whole point of talking to the other guy was to make surprise birthday preparations for you? Does it still make sense to respond to the situation with jealousy?</p>
<p><span style="text-decoration: underline;"><strong>From the party to everything else</strong></span></p>
<p style="padding-left: 30px;">In the above example, emotional response depended upon the context of events. Whereas incomplete information led to jealousy, knowing the whole picture led to a different emotion. But this is more than a knowledge and information issue. What are the conditions of possibility that made feeling jealousy, rather than another emotion, real? The situation, the &#8220;objective&#8221; reality, isn&#8217;t enough to determine emotional response &#8212; there must be a person co-creating the meaning <span style="text-decoration: underline;">along with</span> the perceived situation. The one who perceives jealousy must be standing in the world in such a way that jealousy reveals itself as the likely candidate.</p>
<p><span style="text-decoration: underline;"><strong>The Mistake of Assumption in Relationships (Condensed Version)</strong></span></p>
<ol>
<li>Others share my values.</li>
<li>Others know what I mean.</li>
<li>My point of view is always right.</li>
</ol>
<p><span style="text-decoration: underline;"><strong>Reminders to combat the mistake of assumption</strong></span></p>
<ol>
<li>My point of view does not happen in a vacuum; it happens against the background of all my prior experiences. In addition, anticipation and expectation can influence my point of view.</li>
<li>Since others are likely to have different experiences, their point of view is necessarily different from mine. Agreement and compromise occur in relation to dialogue and communication.</li>
</ol>
<p style="padding-left: 30px;">
<p>Post from: <a href="http://www.shop-network.org">Online Shopping Network</a>
</p>
<p><a href="http://www.shop-network.org/blog/the-mistake-of-assumption-in-relationships/">The Mistake of Assumption in Relationships</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shop-network.org/blog/the-mistake-of-assumption-in-relationships/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Is Social Bookmarking Worth the Hassle?</title>
		<link>http://www.shop-network.org/blog/is-social-bookmarking-worth-the-hassle/</link>
		<comments>http://www.shop-network.org/blog/is-social-bookmarking-worth-the-hassle/#comments</comments>
		<pubDate>2008-07-30T06:07:30Z</pubDate>
		<dc:creator>Shop Network</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.shop-network.org/?p=118079</guid>
		<description><![CDATA[What is Social Bookmarking?
Social Bookmarking is the practice of an individual or a group of people submitting a particular website to an online community in order for others to evaluate the content of the website. While popular social bookmarking sites, such as StumbleUpon and Digg, have the ability to create a short term internet buzz, [...]]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration: underline;"><strong>What is Social Bookmarking?</strong></span></p>
<p style="padding-left: 30px;"><a href="http://en.wikipedia.org/wiki/Social_Bookmarking" rel="nofollow"  target="_blank">Social Bookmarking</a> is the practice of an individual or a group of people submitting a particular website to an online community in order for others to evaluate the content of the website. While popular social bookmarking sites, such as <a href="http://www.stumbleupon.com/" rel="nofollow"  target="_blank">StumbleUpon</a> and <a href="http://www.digg.com/" rel="nofollow"  target="_blank">Digg</a>, have the ability to create a short term internet buzz, their existence rests in reducing websites into the internet version of a <a href="http://en.wikipedia.org/wiki/Soundbite" rel="nofollow"  target="_blank">sound bite</a>. Sometimes a good sound bite will capture the essence of the message; a poor sound bite is forgotten several minutes, if not seconds, after initial exposure.</p>
<p style="padding-left: 30px;">The quality of the traffic from social bookmarking appears to reflect this sound bite model. As one forum poster noted, &#8220;The goals of a social networking audience [are to obtain] immediate psychological stimulation for almost no work&#8221; (<a href="http://www.sitepoint.com/forums/showpost.php?p=3899293&amp;postcount=30" rel="nofollow"  target="_blank">Sitepoint Forums</a>). This statement suggests that social bookmarking sites offer immediate gratification. Another poster in this thread observed:</p>
<blockquote>
<p style="padding-left: 30px;">&#8220;Let&#8217;s say for example you get a front-page placement on Digg. You&#8217;ll receive thousands of visitors, but with the nature of their community you&#8217;ll get very few return and next to no one clicking your ads, whilst you&#8217;ve lost gigs of bandwidth. Stumbleupon works in the same way, with users coming to you once only to click the button again to head elsewhere.&#8221; (<a href="http://www.sitepoint.com/forums/showpost.php?p=3877247&amp;postcount=10" rel="nofollow"  target="_blank">Sitepoint Forums</a>).<span style="text-decoration: underline;"><strong></strong></span></p>
</blockquote>
<p><span style="text-decoration: underline;"><strong>Social Bookmarking is Depressing</strong></span></p>
<p style="padding-left: 30px;">How depressing. From these two statement, it seems that social bookmarking sites: [1.] send people who are unwilling to click on the advertisements, and [2.] either drain or tie up a server&#8217;s finite resources. One reason for the increasing popularity of social bookmarking sites is the ease in which people process website &#8220;snippets.&#8221; I would imagine that this is akin to reading Cliff&#8217;s Notes in lieu of the actual book.</p>
<p><span style="text-decoration: underline;"><strong>What are the disadvantages of social bookmarking?</strong></span></p>
<ul>
<li>Since social bookmarking relies on human beings, rather than on statistical algorithms, to rank content, there is an increased possibility of manipulating and over inflating the popularity of a particular website. In fact, there are some individuals out there who offer to bookmark a site in exchange for a fee.</li>
<li>It would appear that people who frequent social bookmarking sites tend to spend less time on the sites that they do visit, and as a result, it is less likely that they will continue to interact with the sites that are visited.</li>
<li>Increasing competition with other webmasters also using social bookmarking in order to receive traffic to their own sites.</li>
</ul>
<p><span style="text-decoration: underline;"><strong>What are the advantages of social bookmarking?</strong></span></p>
<ul>
<li>Human traffic from bookmarking services is better than no traffic at all. There is always a chance that 1% of the visitors will perform some sort of website interaction, e.g., leave a blog comment, click a Yahoo! or Google advertisement, purchase a product, refer a friend, or return at some point in the future.
<ul>
<li>It would be interesting to find the correlation between: [1.] those people visiting a website through social bookmarking site, and [2.] the conversion of this social traffic into sales or clicks on Google advertisements.</li>
</ul>
</li>
<li>Another benefit of traffic from social bookmarking sites is the grass roots exposure and the establishment of band name recognition.</li>
</ul>
<p>At the end of the day, traffic from social bookmarking services has various meanings and implications for different webmasters. Some webmasters loathe the traffic because of its taxing effects on the webserver. Other webmasters love and crave the attention and buzz that this traffic brings, regardless of its duration. And finally, there are other webmasters who do not care. Even though the &#8220;sound bite effect&#8221; propagated from social bookmarking sites is short lived, there is a chance that authority websites will pick up on those sites receiving the most attention and will write up a blog post or a product review.</p>
<p>In conclusion, social bookmarking takes little time to do. And depending upon the particular goal of the traffic, some webmasters might make more of an effort than others to do it. However, the attention to social bookmarking should never be greater than the attention devoted to creating fresh content.</p>
<p>If the content isn&#8217;t created, then how can it get bookmarked? <img src='http://www.shop-network.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
<p>Post from: <a href="http://www.shop-network.org">Online Shopping Network</a>
</p>
<p><a href="http://www.shop-network.org/blog/is-social-bookmarking-worth-the-hassle/">Is Social Bookmarking Worth the Hassle?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shop-network.org/blog/is-social-bookmarking-worth-the-hassle/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google&#8217;s Top 9 SEO Basics</title>
		<link>http://www.shop-network.org/blog/googles-top-9-seo-basics/</link>
		<comments>http://www.shop-network.org/blog/googles-top-9-seo-basics/#comments</comments>
		<pubDate>2008-07-28T00:56:24Z</pubDate>
		<dc:creator>Shop Network</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.shop-network.org/?p=115582</guid>
		<description><![CDATA["When feel that SERPs going out of focus, return to basic of SEO."]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><img style="float:right;padding-left:15px;padding-bottom:5px;" src="http://upload.wikimedia.org/wikipedia/en/thumb/2/2e/Pat-Morita_%28Karate_Kid%29.jpg/250px-Pat-Morita_%28Karate_Kid%29.jpg" alt="SEO with Mr. Miyagi" width="97" height="125" /><em><strong> &#8220;When feel that SERPs going out of focus, return to basic of SEO.&#8221;</strong></em></p>
<p style="text-align: left;">We begin by reading <a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=35769#quality" rel="nofollow"  target="_blank">Google&#8217;s Webmaster Guidelines</a>.</p>
<p style="text-align: left;"><strong>Design and content guidelines</strong></p>
<ol style="text-align: left;">
<li>Make a site with a <strong>clear</strong> hierarchy and text links. Every page should be reachable from at least one static text link.
<ul>
<li>This means that Google looks at the content that it finds in terms of a hierarchy. In other words, Google arranges and interprets the information it finds on a scale ranging from &#8220;<strong>Most Important</strong>&#8221; to &#8220;<strong>Least Important</strong>.&#8221; Rather than let the search engine take a guess regarding the importance of the content that it finds, it is possible to tell the search engines, in no uncertain terms, this hierarchical importance. The title tag is either a one word, a one short phrase, or a one short sentence summary of the content on the rest of page. The meta description tag reinforces and compliments the title tag by fleshing out the goal, main idea, or purpose of the content. Not only do the &lt;h1&gt;&lt;/h1&gt;, &lt;h2&gt;&lt;/h2&gt;, &lt;h3&gt;&lt;/h3&gt; tags reveal the sequential hierarchy of the page, content and links found at the <strong>beginning</strong> of a page are considered more important than content and links found at the <strong>end</strong> of the page. A well constructed website for search engines is also a well constructed site for humans. Most people read from top to bottom, and from left to right. Therefore, it makes sense that the search engines will assign sequential importance along the same manner that humans read.</li>
</ul>
</li>
<li>Offer a site map to your users with links that point to the important parts of your site. If the site map is larger than 100 or so links, you may want to break the site map into separate pages.
<ol>
<li>Point number one suggested &#8220;hierarchical links,&#8221; and now point number two recommends no more than 100 &#8220;navigational links&#8221; on a single page. <strong>In other words, one of the hierarchical links should point to the page where the navigational links are found!</strong> Where more than 100 links must exist for the purposes of navigation, the use of a <a href="http://en.wikipedia.org/wiki/Tree_structure" rel="nofollow"  target="_blank">tree structure</a> is implied. While point of main emphasis happens within the &lt;h1&gt;&lt;/h1&gt; tag, the tree structure occurs within the &lt;ul&gt;&lt;/ul&gt;, &lt;li&gt;&lt;/li&gt; tags.</li>
</ol>
</li>
<li>Create a useful, information-rich site, and write pages that <strong>clearly and accurately</strong> describe your content.
<ul>
<li>Information rich also means keyword rich. Remember that keywords and keyphrases are what human beings input into search engines with the expectation that the results are both meaningful and useful in relation to their keyword or keyphrase. These keywords or keyphrases ought to be further fleshed out when the human being lands on the content page from the search engine results page.</li>
</ul>
</li>
<li>Think about the words users would type to find your pages, and make sure that your site actually includes those words within it.
<ul>
<li>Creating a &#8220;keyword rich&#8221; site does not mean creating a site that uses &#8220;keyword stuffing.&#8221; <a href="http://en.wikipedia.org/wiki/Keyword_stuffing" rel="nofollow"  target="_blank">Keyword Stuffing</a> is considered to be an unethical search engine optimization (SEO) technique. Keyword stuffing occurs when a web page is loaded with keywords in the <span class="mw-redirect">meta tags</span> or in content. In keyword stuffing, the keyword or keyphrase is found many times within the content, and adds no meaningful value to the content. The keyword or keyphrase occurs with much redundancy and exists for its own sake; the redundancy does not add further clarity or accuracy to the content.</li>
</ul>
</li>
<li>Try to use text instead of images to display important names, content, or links. The Google crawler doesn&#8217;t recognize text contained in images.
<ul>
<li>While the search engines cannot read images, they can read how the images are described and referenced within the ALT and TITLE attribute. In the Official Google Webmaster Central Blog about <a href="http://googlewebmastercentral.blogspot.com/2007/12/using-alt-attributes-smartly.html" rel="nofollow"  target="_blank">Using ALT Attributes Smartly</a>, Google references W3C recommendations:</li>
<blockquote>
<li><a href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-alt" rel="nofollow"  target="_blank">ALT</a>: This attribute specifies a link to a long description of the image. This description should supplement the short description provided using the <a href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-alt" rel="nofollow" class="noxref" ><samp class="ainst">alt</samp></a> attribute.</li>
<li><a href="http://www.w3.org/TR/html401/struct/global.html#h-7.4.3" rel="nofollow"  target="_blank">TITLE</a>: This attribute offers advisory information about the element for which it is set.</li>
<li>In another related point, since Google references W3C guidelines, then it is an obvious point that <a href="http://www.w3.org/" rel="nofollow"  target="_blank">W3C guidelines</a> should be followed as much as possible during the construction, design, and layout phases of a website. This means that all, if not most, .html pages should pass <a href="http://validator.w3.org/" rel="nofollow"  target="_blank">HTML Validation</a>. And if CSS is going to be used, the style sheet should pass <a href="http://jigsaw.w3.org/css-validator/" rel="nofollow"  target="_blank">CSS Validation</a>. Remember, <strong>the clarity and accuracy that Google wants pertains not only the content, but it also pertains to the presentation and coding of that content.</strong></li>
</blockquote>
</ul>
</li>
<li>Make sure that your TITLE tags and ALT attributes are descriptive and accurate.
<ul>
<li>Google is being redundant for a reason. According to a post on <a href="http://www.seobook.com/link-title-attribute-vs-image-alt-tags-which-better" rel="nofollow"  target="_blank">SEOBook</a>, it was discovered that &#8220;Google currently places negligible, if any, weight on link titles.&#8221; However, the author continues on and asks a pertinent question: &#8220;Does the image alt text carry more weight?&#8221; His response: &#8220;In a word, yes.&#8221; Moreover, the <a href="http://www.searchengineoptimizationjournal.com/2008/02/06/alt-tag-vs-link-title-attribute-which-is-more-important/" rel="nofollow"  target="_blank">Search Engine Optimization Journal</a> reports, &#8220;The alt tag is almost the only clue search engines have for ranking images.&#8221; It makes sense, then, to use the img alt attribute whenever possible.</li>
</ul>
</li>
<li>Check for broken links and correct HTML.
<ul>
<li><strong>Correct Html?</strong> Some sites that fail HTML and CSS validation rank rather well in the search engines results pages (SERPs). I&#8217;m thinking here of Amazon.com. <strong><a href="http://validator.w3.org/check?uri=http%3A%2F%2Fwww.amazon.com&amp;charset=(detect+automatically)&amp;doctype=Inline&amp;group=0" rel="nofollow"  target="_blank">Amazon.com fails with 1822 errors! </a></strong>Nonetheless, passing HTML and CSS validation adds to a site&#8217;s clarity from a search engine&#8217;s perspective. The degree to which proper validation adds to this clarity is not certain at this time. Also uncertain is whether or not the search engines penalize sites failing to validate their HTML and CSS.</li>
<li>Broken links ought to return a status code of 404, not found. For a lumerical list of HTTP status codes and their meaning, consult a <a href="http://www.seoconsultants.com/tools/headers.asp" rel="nofollow"  target="_blank">HTTP Status Codes Checker</a>.</li>
</ul>
</li>
<li>If you decide to use dynamic pages (i.e., the URL contains a &#8220;?&#8221; character), be aware that not every search engine spider crawls dynamic pages as well as static pages. It helps to keep the parameters short and the number of them few.
<ul>
<li>Well, in an interview between a website and the Googlebot, it has been revealed that <a href="http://googlewebmastercentral.blogspot.com/2008/03/first-date-with-googlebot-headers-and.html" rel="nofollow"  target="_blank">Google understands dynamic links</a>.</li>
</ul>
</li>
<li>Keep the links on a given page to a reasonable number (fewer than 100).
<ul>
<li>Google is politely telling reputable sites and soon-to-be reputable sites not to send their URL to a <a href="http://en.wikipedia.org/wiki/Link_farm" rel="nofollow"  target="_blank">link farm</a>.</li>
</ul>
</li>
</ol>
<p>Post from: <a href="http://www.shop-network.org">Online Shopping Network</a>
</p>
<p><a href="http://www.shop-network.org/blog/googles-top-9-seo-basics/">Google&#8217;s Top 9 SEO Basics</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shop-network.org/blog/googles-top-9-seo-basics/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My Theory about Google&#8217;s Search Algorithm</title>
		<link>http://www.shop-network.org/blog/my-theory-about-googles-search-algorithm/</link>
		<comments>http://www.shop-network.org/blog/my-theory-about-googles-search-algorithm/#comments</comments>
		<pubDate>2008-07-25T20:16:34Z</pubDate>
		<dc:creator>Shop Network</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.shop-network.org/?p=113539</guid>
		<description><![CDATA[It is common knowledge that Google is the largest search engine on planet Earth at the present moment.  However, less commonly known is how Google goes about deciding which websites to include in its index.]]></description>
			<content:encoded><![CDATA[<p><img style="float: left; padding-right:15px;padding-bottom:5px;" src="http://www.google.com/images/google_sm.gif" alt="Google" width="143" height="59" />It is common knowledge that Google is the largest search engine on planet Earth at the present moment.  However, less commonly known is how Google goes about deciding which websites to include in its index. Since <a href="http://www.google.com/corporate/" rel="nofollow"  target="_blank">Google&#8217;s Mission Statement</a> is to &#8220;Organize the world&#8217;s information and make it universally accessible and useful,&#8221; Google&#8217;s search engine technology must be programmed to possess the ability to differentiate useful information and useful websites from those websites that offer little to no value or content.</p>
<p>While no one, save Google&#8217;s Engineers, has access to the structure to the programming of Google&#8217;s search engine technology, we can garner useful information from those whom Google employs. These people make descriptive blog posts through their addressing of webmaster comments, questions, and concerns. <a href="http://www.mattcutts.com/blog/" rel="nofollow"  target="_blank">Matt Cutts</a> is such a person. In addition to Matt Cutts, Google has its own team of bloggers who communicate information through the <a href="http://googleblog.blogspot.com/" rel="nofollow"  target="_blank">Official Google Blog</a>.</p>
<p>While there is no silver bullet revealed, we can walk away with some powerful inferences about the programming of Google&#8217;s search engine technology. In a summation post that I found titled, &#8221;<br />
<a href="http://googleblog.blogspot.com/2008/07/technologies-behind-google-ranking.html" rel="nofollow" >Technologies behind Google ranking</a>,&#8221; quite of bit of additional information can be learned &#8212; if we read and interpret between the lines of what is actually being said.</p>
<p>In particular, Google says that &#8220;Synonyms are the foundation of our query understanding work,&#8221; and that &#8220;Another technology we use in our ranking system is concept identification.&#8221; These two quotations ought to reveal that <strong><a href="http://en.wikipedia.org/wiki/Article_spinning" rel="nofollow"  target="_blank">article spinning</a> will not work</strong>. Think about it. If Google has encyclopedias, dictionaries, and thesauruses at its disposal, then one can assume that they can generate a list of word substitutions for the content that it finds. Some words in a spun article will remain the same while other words in the article will be substited for words that have the same essential meaning. In other words, article spinning will not circumvent <a href="http://www.mattcutts.com/blog/duplicate-content-question/" rel="nofollow"  target="_blank">Google&#8217;s Duplicate Content Penalty</a>. While the number of <a href="http://en.wikipedia.org/wiki/Backlink" rel="nofollow"  target="_blank">backlinks</a> to a site will increase through article spinning, their individual and collective value will be lessened.</p>
<p>However, while Google has access to encyclopedias, dictionaries, and thesauruses, it still treasures original content. In other words, Google cannot anticipate the rich diversity of word combinations just because it has access to all individual word definitions and their variants. Google cannot say, &#8220;I know the content of every website in existence because I know every possible word that can be used.&#8221; To this end, a human mind must transcribe thoughts into words under the guiding principle of a main idea &#8212; and this is what Google treasures. Google seeks to understand the movement of the human mind by finding statistical relationships between the particular words used to communicate ideas. This statistical relationship, in my mind, is evaluated against the background of what Google already possess &#8212; dictionaries, encyclopedias, thesauruses, and grammar books.</p>
<p>And this brings me to my next point: <a href="http://en.wikipedia.org/wiki/Grammar" rel="nofollow"  target="_blank"><strong>grammar</strong></a>. Have you ever wondered why Google ranks journalism sites at the top of its search engine results pages (SERPs)? My hypothesis is that in addition to devouring new content, Google rates the &#8220;taste&#8221; of the new content it finds. Content using good grammar and punctuation &#8220;tastes&#8221; better than content using poor grammar and poor punctuation. If Google seeks to &#8220;organize the world&#8217;s information and make it universally accessible and useful,&#8221; then grammatically correct content might be interpreted as being more useful than grammatically incorrect content with all other variants being equal. In its <a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=35769" rel="nofollow"  target="_blank">Webmaster Guidelines</a>, Google recommends that webmasters &#8220;create a useful, information-rich site, and write pages that <em><strong>clearly and accurately</strong></em> describe your content.&#8221; While we do not know how Google evaluates clarity and accuracy, we know that these are things that Google will be looking for when it encounters new content. Therefore, take a moment to reflect about which elements both add to and detract from clarity and accuracy. Elements such as grammar and punction dance in harmony with font size and font color on a website with good content. When this is done correctly, another one of Google&#8217;s axioms is satisfied: <strong>Make pages primarily for users, not for search engines.</strong></p>
<p>In essence, I believe that the programmers of Google&#8217;s powerful search engine are attempting to endow Google with artificial intelligence. To this end, I can assume that Google is using statistical methods to assign a numerical value to the &#8220;power&#8221; or &#8220;strength&#8221; of page&#8217;s content. And while the formula for these  statistical methods will not be disclosed, we can make good hypothesises regarding which practices will result in a stronger statistical relationships. Gammar, punctuation, average word length, synonyms, content presentation, the number of backlinks &amp; an analysis of the content from those backlinks that adds to or detracts from relational value, contribute to the strength and originality of new content.</p>
<p>Post from: <a href="http://www.shop-network.org">Online Shopping Network</a>
</p>
<p><a href="http://www.shop-network.org/blog/my-theory-about-googles-search-algorithm/">My Theory about Google&#8217;s Search Algorithm</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shop-network.org/blog/my-theory-about-googles-search-algorithm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Royalty Free Music for YouTube Videos</title>
		<link>http://www.shop-network.org/blog/royalty-free-music-for-youtube-videos/</link>
		<comments>http://www.shop-network.org/blog/royalty-free-music-for-youtube-videos/#comments</comments>
		<pubDate>2008-07-22T06:46:57Z</pubDate>
		<dc:creator>Shop Network</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.shop-network.org/?p=109696</guid>
		<description><![CDATA[REVIEW: Since this site offers Royalty Free Music, you can be sure you will not infringe on copyrights when creating videos for YouTube.]]></description>
			<content:encoded><![CDATA[<p><a href="http://audiojungle.net?ref=Nite" rel="nofollow" title="Royalty Free Music"  target="_blank"><img class="alignleft" style="float: left; padding-right:15px;padding-bottom:5px;" src="http://audiojungle.net/new/images/ms_referral_banners/125x125_AJ.jpg" alt="Royalty Free Music" width="125" height="125" /></a> If you&#8217;re looking for high quality audio tracks and high quality audio looping samples, I recommend that you check out <a href="http://audiojungle.net?ref=Nite" rel="nofollow"  target="_blank">AudioJungle</a>.</p>
<p><span style="text-decoration: underline;">Music categories include:</span> Music Packs, Ambient, 	Breakbeat, 	Classical, Chill-Out, Corporate, Drum and Bass, Electronica, 	Experimental, Funk, Garage, Hip Hop, 	House, Jazz, New Age, Rock, 	Pop, Trance, and World Beat.</p>
<p><span style="text-decoration: underline;">Sound categories include:</span> Game Sounds, Cartoon Sounds, Sound Packs, Interface Sounds, Transitions &amp; Movement, Buttons &amp; Menus, Nature Sounds, Domestic Sounds, Urban Sounds, Industrial Sounds, Futuristic Sounds, and Human Sounds.</p>
<p><strong>ABOUT FLASHDEN / AUDIOJUNGLE</strong></p>
<blockquote><p>At FlashDen you can buy and sell royalty-free stock files for use in Adobe Flash projects. Files sell for between 1 and 40 dollars depending on the complexity, quality and use of the file. Anyone is free to sign up for an account and begin trading or purchasing files.</p>
<p>The site is home to a bustling community of Flash designers, developers and devotees. At FlashDen we like to say that it is this community who really owns the site and we do our best to make sure they get the most out of it through programs to generate income, interactivity, news, competitions and whatever else we can dream up.</p>
<p>Additionally FlashDen is eager to grow and support not only FlashDen users but Flash users everywhere. We do this by supporting community projects, competitions and initiatives. If you have something you think would benefit the Flash community, get in touch!</p></blockquote>
<p>Since this site offers Royalty Free Music, you can be sure you will not infringe on copyrights when creating videos for YouTube. Their website offers a nice user interface, and it is possible to fund an account with as little as $20.00 USD through Paypal or through a credit card. People seeking royalty free images from <a href="http://www.istockphoto.com" rel="nofollow"  target="_blank">iStockphoto</a> should already be accustomed to paying a small fee in order to use Royalty Free items that do not infringe on copyrights.</p>
<p>On <a href="http://audiojungle.net/?ref=Nite" rel="nofollow"  target="_blank">AudioJungle</a>&#8217;s website, it is possible to hear a sample of music which is found to be interesting. &#8220;Hear it before you buy it,&#8221; in other words. However, in order to prevent people from grabbing audio tracks without paying for them, all samples will have a voice saying &#8220;Flashden&#8221; every few seconds. Naturally, this audio watermark is removed when the file in question is purchased.</p>
<p>I cannot brag enough about this website. Within the first few seconds of finding this website through Google, I deposited $20.00 and bought several songs. I came across a few songs made by Stefan Gustafsson, also known as &#8220;Solidbeats,&#8221; and was throughly impressed with what I heard. There&#8217;s some serious talent here, and while the site is still growing, the bar for the quality of songs released is very high indeed.</p>
<p>Post from: <a href="http://www.shop-network.org">Online Shopping Network</a>
</p>
<p><a href="http://www.shop-network.org/blog/royalty-free-music-for-youtube-videos/">Royalty Free Music for YouTube Videos</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shop-network.org/blog/royalty-free-music-for-youtube-videos/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Has the Digital Point Forums become a hotbed for scammers?</title>
		<link>http://www.shop-network.org/blog/has-the-digital-point-forums-become-a-hotbed-for-scammers/</link>
		<comments>http://www.shop-network.org/blog/has-the-digital-point-forums-become-a-hotbed-for-scammers/#comments</comments>
		<pubDate>2008-07-22T17:15:51Z</pubDate>
		<dc:creator>Shop Network</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.shop-network.org/?p=105434</guid>
		<description><![CDATA[A well executed scam will promise the delivery of some kind of service to be accomplished immediately or in a few days, weeks, or months. And the scam will use paypal as the method of payment. The promised goods and services, and their results, will not be delivered, and paypal will not issue a refund. The scammer will usually have a low post count as well as a low itrader count.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m an active member on the <a href="http://forums.digitalpoint.com/" rel="nofollow"  target="_blank">Digital Point Forums</a>. On that site, I use the handle &#8220;<a href="http://forums.digitalpoint.com/member.php?u=27470" rel="nofollow" >Nite</a>.&#8221;</p>
<p>The Digital Point Forums advertises itself as a &#8220;<span class="attribute-value">Search Engine Optimization and Marketing forum.&#8221; It is one of many such websites where webmasters go to learn new techniques about raising the visibility level of their personal websites to the search engines. There are a combination of new members and experienced members who market their information and services to those wishing to learn about search engine optimization. In addition, the forum is divided into areas where on-topic discussions and financial transactions take place.</span></p>
<p>There have been several other blog posts made about Digital Point:</p>
<ol>
<li><a href="http://www.spam-whackers.com/blog/2007/12/22/is-digital-point-form-a-spammers-haven/" rel="nofollow" title="Permanent Link: Is Digital Point Forum a Spammers Haven?" rel="bookmark" >Is Digital Point Forum a Spammers Haven?</a></li>
<li><a href="http://slyvisions.com/files/make-money-online-with-digital-point-forums.php" rel="nofollow" title="Permanent Link to Make Money Online With Digital Point Forums" rel="bookmark" >Make Money Online With Digital Point Forums</a></li>
<li><a href="http://www.richsage.com/digital-point-forums-review/" rel="nofollow" rel="bookmark" >Digital Point Forums Review</a></li>
</ol>
<p>I have only one serious complaint about this forum. Rather, my complaint is not directed toward the forum itself, nor toward its fundamental mission of making information available. <strong>My complaint is directed to numerous members of this website who attempt to scam and to defraud other members.</strong></p>
<p>Most scams on the digital point forum will take advantage of those seeking to purchase services with the hope that the result of the purchase will be an increased search engine presence of their website. Indeed, most scams have taken place in the <a href="http://forums.digitalpoint.com/forumdisplay.php?f=60" rel="nofollow"  target="_blank">services</a> section of the forum. Most scammers will have a low post count on the forum as well as a low <a href="http://forums.digitalpoint.com/showthread.php?t=201652" rel="nofollow"  target="_blank">itrader</a>. In addition, most scammers accept Paypal as a form of payment for their services. However, <strong>Paypal does <span style="text-decoration: underline;">not</span> issue refunds for the failure to deliver services or for failure to deliver digital products.</strong></p>
<p>According to Paypal&#8217;s <a href="https://www.paypal.com/us/cgi-bin/webscr?cmd=xpt/cps/popup/BCSeeDetails-outside" rel="nofollow"  target="_blank"><span class="largeemphasis">Extended Buyer Protection Policy:</span></a></p>
<blockquote><p><span class="emphasis"><strong>Item Qualification Requirements</strong>.</span> The item sold <strong><em>must</em></strong> be a tangible, physical item or good which can be shipped. <span style="text-decoration: underline;"><span style="color: #0000ff;">All other items are ineligible for coverage under Extended Buyer Protection with PayPal Credit, including but not limited to intangible goods, services, quasi-cash, gift certificates, and downloadable or streaming content.</span></span> Motor vehicles (including cars, boats, and planes), and Live Auctions will not be covered. In addition, items prohibited in the PayPal Acceptable Use Policy are ineligible for coverage. If an item does not meet the above requirements, it is ineligible for coverage under Extended Buyer Protection with PayPal Credit.</p></blockquote>
<p>Therefore, a well executed scam will promise the delivery of some kind of service to be accomplished immediately or in a few days, weeks, or months. And the scam will use paypal as the method of payment. The promised goods and services, and their results, will not be delivered, and paypal will not issue a refund. The scammer will usually have a low post count as well as a low itrader count.</p>
<p>Since it appears that there are those who are all too eager to accept payment before services are rendered, it would make better sense if a percentage of the final cost were accepted in order to begin performing services. However, I believe that it would be even better if payment was surrendered only after completion and verification of the services performed. But upon further reflection, the tables of fraud would be reversed &#8212; rather than the seller frauding the buyer, the buyer will be frauding the seller. And while this would give fraudulent buyers a taste of their own medicine, the problem of fraud would still exist.</p>
<p>How else could the issue of fraud be combated?</p>
<p>Post from: <a href="http://www.shop-network.org">Online Shopping Network</a>
</p>
<p><a href="http://www.shop-network.org/blog/has-the-digital-point-forums-become-a-hotbed-for-scammers/">Has the Digital Point Forums become a hotbed for scammers?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shop-network.org/blog/has-the-digital-point-forums-become-a-hotbed-for-scammers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A Non-Traditional Wordpress Tuning Guide - Part II</title>
		<link>http://www.shop-network.org/blog/a-non-traditional-wordpress-tuning-guide-part-ii/</link>
		<comments>http://www.shop-network.org/blog/a-non-traditional-wordpress-tuning-guide-part-ii/#comments</comments>
		<pubDate>2008-07-20T19:39:41Z</pubDate>
		<dc:creator>Shop Network</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.shop-network.org/?p=101974</guid>
		<description><![CDATA[Before getting to deep into Wordpress itself, it is important to tune the underlying structures that power Wordpress. In a typical situation, Wordpress runs off of LAMP -- Linux, Apache, mySQL, and PHP. There are several blog posts have been written about tuning Wordpress for optimal performance. Some of the references below address the LAMP structure as a whole, while others address a particular aspect of the LAMP structure.]]></description>
			<content:encoded><![CDATA[<p>Before getting to deep into Wordpress itself, it is important to tune the underlying structures that power Wordpress. In a typical situation, Wordpress runs off of <a href="http://en.wikipedia.org/wiki/LAMP_(software_bundle)" rel="nofollow"  target="_blank">LAMP</a> &#8212; Linux, Apache, mySQL, and PHP. There are several blog posts have been written about tuning Wordpress for optimal performance. Some of the references below address the LAMP structure as a whole, while others address a particular aspect of the LAMP structure.</p>
<ol>
<li><a href="http://blogmechanics.net/tuning-wordpress-for-speed/" rel="nofollow" title="Link to Tuning Wordpress for Speed" rel="bookmark" >Tuning Wordpress for Speed</a></li>
<li><a href="http://www.arnebrachhold.de/2007/02/16/four-plus-one-ways-to-speed-up-the-performance-of-wordpress-with-caching/" rel="nofollow" rel="bookmark" >4+1 Ways To Speed Up WordPress With Caching</a></li>
<li> <a href="http://michael.biven.org/2008/01/23/optimizing-performance-for-wordpress/" rel="nofollow"  target="_blank"><span class="container span-18">Optimizing performance for WordPress</span></a></li>
<li> <a href="http://www.connectedinternet.co.uk/2006/06/18/guide-to-optimizing-wordpress-servers/" rel="nofollow" title="Permanent Link to Guide To Optimizing WordPress Servers" rel="bookmark" >Guide To Optimizing WordPress Servers</a></li>
<li> <a href="http://elliottback.com/wp/archives/2007/04/15/why-my-wordpress-site-is-so-much-faster-than-yours/" rel="nofollow" rel="bookmark" >Wordpress Performance: Why My Site Is So Much Faster Than Yours</a></li>
<li> <a href="http://blog.mozmonkey.com/2006/optimizing-wordpress-for-high-volume-traffic/" rel="nofollow" title="Permanent Link: Optimizing WordPress for High Volume Traffic" rel="bookmark" >Optimizing WordPress for High Volume Traffic</a></li>
<li> <a href="http://www.earnersblog.com/digproof-your-wordpress/" rel="nofollow" >Diggproof &amp; Speed up Your Wordpress Blog</a></li>
<li> <a href="http://www.johntp.com/2007/10/24/5-ways-to-increase-the-loading-speed-of-a-wordpress-blog/" rel="nofollow"  target="_blank">5 Ways To Increase The Loading Speed Of A WordPress Blog</a></li>
</ol>
<p><img class="alignleft" style="float: left;padding-right:15px;padding-bottom:5px;" src="http://static.php.net/www.php.net/images/php.gif" alt="Tweaking PHP" width="120" height="67" />Tweaking PHP is done through the use of a <a href="http://en.wikipedia.org/wiki/PHP_accelerator" rel="nofollow"  target="_blank">PHP Accelerator</a> and through <a href="http://www.vbulletin.com/forum/showthread.php?t=166310" rel="nofollow"  target="_blank">customizing the PHP.INI file</a>. Now, there are several PHP Accelerators available &#8212; but which one offers the faster performance and the most stability? I&#8217;ll leave that for you to decide. There are several topics regarding benchmarking of the various accelerators.</p>
<ol>
<li> <a href="http://www.ipersec.com/index.php/2006/05/30/benchmarking-php-accelerators/" rel="nofollow"  target="_blank">Benchmarking PHP accelerators</a></li>
<li> <a href="http://www.ducea.com/2006/10/30/php-accelerators/" rel="nofollow" title="Permanent Link to PHP Accelerators" rel="bookmark" >PHP Accelerators</a></li>
<li> <a href="http://blog.digitalstruct.com/2007/12/23/php-accelerators-apc-vs-zend-vs-xcache-with-zend-framework/" rel="nofollow" title="Read PHP Accelerators : APC vs Zend vs XCache with Zend Framework" >PHP Accelerators : APC vs Zend vs XCache with Zend Framework</a></li>
<li> <a href="http://www.techiecorner.com/111/install-eaccelerator-optimize-php-performance-reduce-server-load/" rel="nofollow" title="Permanent Link: Install eAccelerator to Optimize PHP performance" rel="bookmark" >Install eAccelerator to Optimize PHP performance</a></li>
<li> <a href="http://markjaquith.wordpress.com/2006/02/13/adventures-with-wp-cache2-apc/" rel="nofollow" rel="bookmark" >Adventures with WP-Cache2 &amp; APC</a></li>
</ol>
<p>What I use on my dedicated server is<a href="http://pecl.php.net/package/APC" rel="nofollow"  target="_blank"> APC PHP Accelerator</a>. In order to install APC, please read a post on vBulletin that <a href="http://www.vbulletin.com/forum/showthread.php?t=165367" rel="nofollow"  target="_blank">details how to install APC</a>. Inside PHP.INI, I have set the variables to the following:</p>
<blockquote><p><span style="font-size: 10px;"><br />
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;<br />
; Dynamic Extensions ;<br />
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;</span></p>
<p><span style="font-size: 10px;">extension = apc.so<br />
apc.enabled = 1<br />
apc.shm_segments = 1<br />
apc.shm_size = 256<br />
apc.ttl = 7200<br />
apc.user_ttl = 7200<br />
apc.gc_ttl = 7200<br />
apc.mmap_file_mask = /tmp/apc.XXXXXX<br />
apc.enable_cli = 1<br />
apc.num_files_hint = 2500<br />
apc.stat = 1<br />
apc.filters = wp-cache-config</span></p></blockquote>
<p><img class="alignleft" style="float: left;padding-right:15px;padding-bottom:5px;" src="http://mysql.com/common/logos/logo_mysql_sun.gif" alt="Tuning mySQL" width="205" height="68" /> Regarding tuning and optimizing mySQL, there have also been several blog posts made. Of course, some blogs have covered tuning PHP along with tuning mySQL. Basically, the file that contains all the tweakable variables is <em>my.cnf</em>. Both <a href="http://www.day32.com/MySQL/" rel="nofollow"  target="_blank">tuning-primer</a> and <a href="http://hackmysql.com/mysqlsla" rel="nofollow"  target="_blank">mysqlsla</a> can offer insight into slow mySQL queries. Read their documentation, download them, and install them.</p>
<ol>
<li> <a href="http://www.linuxweblog.com/tune-my.cnf" rel="nofollow"  target="_blank">Tuning / Optimizing my.cnf file for MySQL</a></li>
<li> <a href="http://brian.moonspot.net/2008/05/06/example-mycnf-files/" rel="nofollow" rel="bookmark" >Example my.cnf files</a></li>
<li><a href="http://www.joomlaperformance.com/articles/server_related/tweaking_mysql_server_23_16.html" rel="nofollow"  target="_blank">Tweaking MySQL Server</a></li>
<li><a href="http://forum.mysqlperformanceblog.com/" rel="nofollow"  target="_blank">mySQL Performance Forums</a></li>
</ol>
<p>Please keep in mind, that the <em>my.cnf</em> is always a work in progress.</p>
<blockquote><p><span style="font-size: 10px;"><br />
[mysqld]<br />
datadir=/var/lib/mysql<br />
socket=/var/lib/mysql/mysql.sock<br />
skip-locking<br />
skip-innodb<br />
back_log                         = 50<br />
query_cache_limit           = 3M<br />
query_cache_size            = 64M<br />
query_cache_type            = 1<br />
interactive_timeout         = 100<br />
wait_timeout                   = 15<br />
connect_timeout             = 10000<br />
interactive_timeout         = 25<br />
thread_cache_size           = 1024<br />
join_buffer                       = 3M<br />
read_rnd_buffer_size       = 3096K<br />
max_connect_errors        = 10<br />
thread_concurrency         = 4<br />
server-id                          = 1<br />
key_buffer                        = 192M<br />
max_allowed_packet        = 32M<br />
thread_stack                     = 128K<br />
thread_cache                    = 3096<br />
read_buffer_size               = 3096K<br />
sort_buffer_size                = 3096K<br />
myisam_sort_buffer_size  = 48M<br />
key_buffer_size                 = 192M<br />
net_buffer_length              = 16k<br />
max_tmp_tables                = 512<br />
table_cache                        = 1536<br />
max_connections               = 150<br />
log_slow_queries                = /var/log/mysqld.slow.log<br />
long_query_time                 = 1<br />
tmp_table_size                   = 64M<br />
max_heap_table_size         = 64M<br />
query_cache_min_res_unit = 1<br />
low_priority_updates          = 1<br />
concurrent_insert               = 2<br />
record_buffer                      = 3M<br />
[safe_mysqld]<br />
open_files_limit=7092<br />
[mysqldump]<br />
quick<br />
max_allowed_packet=64M<br />
max_allowed_packet=64M<br />
[mysql]<br />
no-auto-rehash<br />
[isamchk]<br />
key_buffer=48M<br />
sort_buffer=48M<br />
read_buffer=24<br />
write_buffer=24M<br />
[myisamchk]<br />
key_buffer=48M<br />
sort_buffer=48M<br />
read_buffer=24M<br />
write_buffer=24M<br />
[mysqlhotcopy]<br />
interactive-timeout<br />
</span></p></blockquote>
<p><img class="alignleft" style="float: left; padding-right:15px;padding-bottom:5px;" src="http://httpd.apache.org/dev/images/apache_logo.gif" alt="Tune Apache" width="124" height="46" />Tuning Apache is done primarily through the <em>httpd.conf</em> file. I have included an example copy of my tweaked and tuned httpd.conf file &#8212; <strong>a SMALL beginning section of it</strong>. I wouldn&#8217;t recommend copying and pasting it; however, after inspecting it, if you find something useful &#8212; then feel free to use sections of it.</p>
<blockquote><p><span style="font-size: 10px;"><br />
&lt;Directory &#8220;/&#8221;&gt;<br />
Options All<br />
AllowOverride All<br />
Options -Indexes<br />
Options +FollowSymLinks</span></p>
<p><span style="font-size: 10px;">&lt;/Directory&gt;</span></p>
<p><span style="font-size: 10px;">&lt;Directory &#8220;/usr/local/apache/htdocs&#8221;&gt;<br />
Options Includes Indexes FollowSymLinks<br />
AllowOverride None<br />
Order allow,deny<br />
Allow from all</span></p>
<p><span style="font-size: 10px;">&lt;/Directory&gt;</span></p>
<p><span style="font-size: 10px;"># Prevent .htaccess and .htpasswd files from being viewed by web clients</span></p>
<p><span style="font-size: 10px;">&lt;Files ~ &#8220;^error_log$&#8221;&gt;<br />
Order allow,deny<br />
Deny from all<br />
Satisfy All<br />
&lt;/Files&gt;</span></p>
<p><span style="font-size: 10px;">&lt;Files &#8220;^\.ht&#8221;&gt;<br />
Order allow,deny<br />
Deny from all<br />
&lt;/Files&gt;</span></p>
<p><span style="font-size: 10px;"># Protect files<br />
&lt;Files ~ &#8220;^(.*)\.(inc|inc\.php|tpl|sql)$&#8221;&gt;<br />
Order deny,allow<br />
Deny from all<br />
&lt;/Files&gt;</span></p>
<p><span style="font-size: 10px;"># Protect directories<br />
&lt;Files ~ &#8220;^(backup|aom|images|design|files|images|include|lang|libs(/.+)?|temp(/.+)?|templates(/.+)?|javascripts(/.+)?)$&#8221;&gt;<br />
Order deny,allow<br />
Deny from all<br />
&lt;/Files&gt;</span></p>
<p><span style="font-size: 10px;">&lt;IfModule log_config_module&gt;<br />
LogFormat &#8220;%h %l %u %t \&#8221;%r\&#8221; %&gt;s %b \&#8221;%{Referer}i\&#8221; \&#8221;%{User-Agent}i\&#8221;" combined<br />
LogFormat &#8220;%h %l %u %t \&#8221;%r\&#8221; %&gt;s %b&#8221; common</span></p>
<p><span style="font-size: 10px;">CustomLog &#8220;logs/access_log&#8221; common</span></p>
<p><span style="font-size: 10px;">&lt;IfModule logio_module&gt;<br />
LogFormat &#8220;%h %l %u %t \&#8221;%r\&#8221; %&gt;s %b \&#8221;%{Referer}i\&#8221; \&#8221;%{User-Agent}i\&#8221; %I %O&#8221; combinedio</span></p>
<p><span style="font-size: 10px;">&lt;/IfModule&gt;</span></p>
<p><span style="font-size: 10px;">&lt;/IfModule&gt;</span></p>
<p><span style="font-size: 10px;">&lt;IfModule alias_module&gt;<br />
ScriptAlias /cgi-bin/ &#8220;/usr/local/apache/cgi-bin/&#8221;</span></p>
<p><span style="font-size: 10px;">&lt;/IfModule&gt;</span></p>
<p><span style="font-size: 10px;">&lt;Directory &#8220;/usr/local/apache/cgi-bin&#8221;&gt;<br />
AllowOverride None<br />
Options None<br />
Order allow,deny<br />
Allow from all</span></p>
<p><span style="font-size: 10px;">&lt;/Directory&gt;</span></p>
<p><span style="font-size: 10px;">&lt;IfModule mime_module&gt;<br />
TypesConfig conf/mime.types<br />
AddType application/x-compress .Z<br />
AddType application/x-gzip .gz .tgz</span></p>
<p><span style="font-size: 10px;">&lt;/IfModule&gt;</span></p>
<p><span style="font-size: 10px;">#######################<br />
#    Optimizations    #<br />
#######################</span></p>
<p><span style="font-size: 10px;">HostnameLookups        Off<br />
ServerSignature        Off<br />
ServerTokens           ProductOnly</span></p>
<p><span style="font-size: 10px;">Timeout                120<br />
KeepAlive              On<br />
MaxKeepAliveRequests   100<br />
KeepAliveTimeout       2</span></p>
<p><span style="font-size: 10px;">&lt;IfModule prefork.c&gt;<br />
StartServers           10<br />
MinSpareServers        10<br />
MaxSpareServers        15<br />
ServerLimit            150<br />
MaxClients             150<br />
MaxRequestsPerChild    500<br />
&lt;/IfModule&gt;</span></p>
<p><span style="font-size: 10px;">Header unset Pragma<br />
FileETag None<br />
Header unset ETag</span></p>
<p><span style="font-size: 10px;"># Turn on Expires and set default to 0<br />
ExpiresActive On<br />
ExpiresDefault A0</span></p>
<p><span style="font-size: 10px;"># Set up caching on media files for 1 year (forever?)<br />
&lt;FilesMatch &#8220;\.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav)$&#8221;&gt;<br />
ExpiresDefault A29030400<br />
Header append Cache-Control &#8220;public&#8221;<br />
&lt;/FilesMatch&gt;</span></p>
<p><span style="font-size: 10px;"># Set up caching on media files for 1 week<br />
&lt;FilesMatch &#8220;\.(gif|jpe?g|png|swf)$&#8221;&gt;<br />
ExpiresDefault A604800<br />
Header append Cache-Control &#8220;public, must-revalidate&#8221;<br />
&lt;/FilesMatch&gt;</span></p>
<p><span style="font-size: 10px;"># Set up cache on media files for 3 days<br />
&lt;FilesMatch &#8220;\.(css|js|txt)$&#8221;&gt;<br />
ExpiresDefault &#8220;access plus 3 days&#8221;<br />
Header append Cache-Control &#8220;public, must-revalidate&#8221;<br />
&lt;/FilesMatch&gt;</span></p>
<p><span style="font-size: 10px;"># Set up 2 Hour caching on commonly updated files<br />
&lt;FilesMatch &#8220;\.(xml|html|htm)$&#8221;&gt;<br />
ExpiresDefault A7200<br />
Header append Cache-Control &#8220;public, must-revalidate&#8221;<br />
&lt;/FilesMatch&gt;</span></p>
<p><span style="font-size: 10px;"># Force no caching for dynamic files<br />
&lt;FilesMatch &#8220;\.(php|cgi|pl)$&#8221;&gt;<br />
ExpiresActive Off<br />
Header set Cache-Control &#8220;private, no-cache, no-store, proxy-revalidate, no-transform&#8221;<br />
Header set Pragma &#8220;no-cache&#8221;<br />
&lt;/FilesMatch&gt;</span></p>
<p><span style="font-size: 10px;">SetOutputFilter DEFLATE<br />
SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ \<br />
no-gzip dont-vary<br />
SetEnvIfNoCase Request_URI \<br />
\.(?:exe|t?gz|zip|bz2|sit|rar)$ \<br />
no-gzip dont-vary<br />
SetEnvIfNoCase Request_URI \.pdf$ no-gzip dont-vary<br />
BrowserMatch ^Mozilla/4 gzip-only-text/html<br />
BrowserMatch ^Mozilla/4\.0[678] no-gzip<br />
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html</span></p>
<p><span style="font-size: 10px;">######################<br />
</span></p></blockquote>
<p>Post from: <a href="http://www.shop-network.org">Online Shopping Network</a>
</p>
<p><a href="http://www.shop-network.org/blog/a-non-traditional-wordpress-tuning-guide-part-ii/">A Non-Traditional Wordpress Tuning Guide - Part II</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shop-network.org/blog/a-non-traditional-wordpress-tuning-guide-part-ii/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A Non-Traditional Wordpress Tuning Guide - Part I</title>
		<link>http://www.shop-network.org/blog/a-non-traditional-wordpress-tuning-guide-part-i/</link>
		<comments>http://www.shop-network.org/blog/a-non-traditional-wordpress-tuning-guide-part-i/#comments</comments>
		<pubDate>2008-07-19T23:00:36Z</pubDate>
		<dc:creator>Shop Network</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.shop-network.org/?p=101482</guid>
		<description><![CDATA[Welcome to my own non-traditional Wordpress tuning guide. It is my hope to share my personal experiences and insights with the rest of world regarding how to squeeze the most speed from the blogging software, Wordpress.]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="float: left; padding-right:15px;padding-bottom:5px;" src="http://s.wordpress.com/wp-content/themes/h4/i/webclip.png" alt="Wordpress " width="57" height="57" />Welcome to my own non-traditional Wordpress tuning guide. It is my hope to share my personal experiences and insights with the rest of world regarding how to squeeze the most speed from the blogging software, Wordpress.</p>
<p>Before getting into the details, let&#8217;s talk about hosting. The reason why we&#8217;re talking about hosting first is because the physical hosting environment will set forth the limitations of the blogging platform. In other words, your blog is only to be as fast as the hardware that it is running on &amp; the network that it is connected to. If you&#8217;re hoping to create a popular blog by running it from an old computer inside your closet using your dial-up connection, you&#8217;re going to be disappointed&#8230; not because the content is bad, but because the blog will only be as responsive as its slowest hardware component.</p>
<p><span style="text-decoration: underline;"><strong>There are several levels of <a href="http://en.wikipedia.org/wiki/Web_hosting_service" rel="nofollow"  target="_blank">web hosting</a></strong></span></p>
<ol>
<blockquote>
<li><strong>Free web hosting service:</strong> is free, (sometimes) advertisement-supported web hosting, and is often limited when compared to paid hosting.</li>
<li><strong>Shared web hosting service:</strong> one&#8217;s Web site is placed on the same server as many other sites, ranging from a few to hundreds or thousands. Typically, all domains may share a common pool of server resources, such as <span class="mw-redirect">RAM</span> and the <span class="mw-redirect">CPU</span>. A shared website may be hosted with a reseller.</li>
<li><strong>Virtual Dedicated Server:</strong> dividing a server into virtual servers, where each user feels like they&#8217;re on their own dedicated server, but they&#8217;re actually sharing a server with many other users. The users may have root access to their own virtual space. This is also known as a virtual private server or VPS.</li>
<li><strong>Dedicated hosting service:</strong> the user gets his or her own Web server and gains full control over it (root access for Linux/administrator access for Windows); however, the user typically does not own the server. Another type of Dedicated hosting is Self-Managed or Unmanaged. This is usually the least expensive for Dedicated plans. The user has full administrative access to the box, which means the client is responsible for the security and maintenance of his own dedicated box.</li>
</blockquote>
</ol>
<p>The kind of web hosting that is chosen depends upon several factors including cost, hard disk space, and bandwidth. Most novices, unsure or unaware of how to make money with their blog, will begin with the most cost effective solution. (Take a look at <a href="http://www.shop-network.org/thinkhost.html" target="_blank">Thinkhost</a> @ $7.95/month.) However, some people want dedicated hosting. (Take a look at <a href="http://order.dedicatedbox.net/cart.php" rel="nofollow"  target="_blank">DedicatedBox</a>. The owner regularly updates his hosting thread on the <a href="http://www.simplemachines.org/community/index.php?topic=99667.0" rel="nofollow"  target="_blank">Simple Machines Forum</a> website.)</p>
<p>There are those, on the other hand, who have little to no familiarity with the Wordpress blogging platform. I would recommend that these people <a href="http://wordpress.com/signup/?ref=bigassbutton" rel="nofollow"  target="_blank">create a free account on the Wordpress site</a>. In this manner, you can perform experiments and get a general idea about the world of blogging without any financial obligation. The downside to this free alternative is that the degree of personal customization is severely restricted. For example, the name of your blog will be restricted to an available subdomain on the wordpress domain, and you will not be able to install plugins or take advantage of affiliate programs such as Google&#8217;s Adsense.</p>
<p>Post from: <a href="http://www.shop-network.org">Online Shopping Network</a>
</p>
<p><a href="http://www.shop-network.org/blog/a-non-traditional-wordpress-tuning-guide-part-i/">A Non-Traditional Wordpress Tuning Guide - Part I</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shop-network.org/blog/a-non-traditional-wordpress-tuning-guide-part-i/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Organic Tonics for Lawncare, Gardening, and Pest Control</title>
		<link>http://www.shop-network.org/blog/organic-tonics-for-lawncare-gardening-and-pest-control/</link>
		<comments>http://www.shop-network.org/blog/organic-tonics-for-lawncare-gardening-and-pest-control/#comments</comments>
		<pubDate>2008-07-12T15:57:15Z</pubDate>
		<dc:creator>Shop Network</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.shop-network.org/?p=78645</guid>
		<description><![CDATA[Jerry Baker has written numerous books about using organic methods for lawn &#038; garden enhancement. The most important tool for content delivery is the hose end sprayer. This sprayer allows all of the liquid organic compounds to mix with the water from the water hose at a pre-determined rate.]]></description>
			<content:encoded><![CDATA[<div style="padding:5px 5px 5px 5px;float:left;"><img src="https://www.jerrybaker.com/productimages/assets/index_r1_c1.gif" alt="" /></div>
<p><a href="http://jerrybaker-amg.blogspot.com/" rel="nofollow"  target="_blank">Jerry Baker</a> has written numerous books about using organic methods for lawn &amp; garden enhancement. The most important tool for content delivery is the hose end sprayer. This sprayer allows all of the liquid organic compounds to mix with the water from the water hose at a pre-determined rate. Jerry recommends using a <span style="font-family: Arial,Helvetica,sans-serif; font-size: x-small;"><span style="font-size: 10pt; font-family: Arial; color: #111111;"><strong>20 gallon hose-end sprayer.</strong></span></span> (See <em>more</em> of Jerry Baker&#8217;s <a href="http://www.amazon.com/exec/obidos/search-handle-url?_encoding=UTF8&amp;search-type=ss&amp;index=books&amp;field-author=Jerry%20Baker&amp;shop-network-20" rel="nofollow"  target="_blank">Gardening Books</a> &amp; <a href="http://www.amazon.com/s?ie=UTF8&amp;search-alias=dvd&amp;field-keywords=Jerry%20Baker&amp;tag=shop-network-20" rel="nofollow"  target="_blank">Gardening Dvds</a>)</p>
<blockquote>
<div style="float: left; padding:5px 5px 5px 5px;"><a href="http://www.amazon.com/gp/product/B00002N67I?ie=UTF8&amp;tag=shop-network-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B00002N67I" rel="nofollow" ><img src="http://ecx.images-amazon.com/images/I/41IsO59GwUL._SL500_SS75_.jpg" border="0" alt="" /></a></div>
<p><span style="text-decoration: underline;"><strong>Product Description</strong></span><br />
Gilmore Gardening Innovation Professional Hose-End Sprayer No Pre-Mixing Needed Brass Mixing Head - 16 mixing ratios. <strong>Sprays up to 100 gallons</strong>. - Heavy duty zinc handle. - Built-in anti-siphon prevents back-flow. - 3 easy steps. Fill bottle. Set Dial. Spray. - Mixes from 1 teaspoon to 10 tablespoons per gallon. - Unused chemical can be returned to original container. - Operates on water pressure 40 to 60 PSI. **Note, Orders of 10 or more for this item require Special Accommodations requiring additional days to ship and are not refundable.</p></blockquote>
<p>Now before you go off and spray everything into oblivion, I would recommend that you check out Jerry&#8217;s Blog and a few of his books. For example, Jerry talked about the importance of using the <em><strong>right</strong></em> dish washing liquid:</p>
<blockquote><p><a href="http://jerrybaker-amg.blogspot.com/2008/05/dishwashing-soap-101.html" rel="nofollow"  target="_blank">Dishwashing Soap 101</a></p></blockquote>
<blockquote><p>I’ve said this before, but it bears repeating: Whenever you’re shopping for dishwashing liquid to use in your yard or garden, make sure you choose a brand that’s made with pure, mild soap. Avoid any product that contains detergents or degreasing agents. They can harm your grass (or any other plants that they touch). And whatever you do, avoid all products that boast their antibacterial prowess. Not only will they damage your greenery, but they’ll also kill off good bacteria along with the bad – and that can cause big trouble.</p>
<p>There is one exception to this rule, and that is when the soapy solution will not come in contact with valuable plants. If you’re aiming to destroy weeds, clean inanimate objects, or kill pests that you’ve removed from your plants, feel free to use any kind of soap or detergent you have on hand – and make the “medicine” as strong as you like.</p></blockquote>
<h3><span style="text-decoration: underline;"><strong>Organic Recipes</strong></span></h3>
<p><span style="text-decoration: underline;">All-Season Green-Up Tonic</span></p>
<p>1 can of beer<br />
1 cup of ammonia<br />
1/2 cup of dish washing liquid<br />
1/2 cup of liquid lawn food<br />
1/2 cup molasses or corn syrup</p>
<p>Instructions: Mix all of the ingredients in a bucket, and pour into your <strong>20 gallon hose-end sprayer</strong>. Apply to everything in your yard to the point or run-off every 3 weeks, in the morning, throughout the growing season.</p>
<p><span style="text-decoration: underline;">All-Season Clean-Up Tonic</span></p>
<p>1 cup of dishwashing liquid,<br />
1 cup of antiseptic mouthwash, and<br />
1 cup of tobacco tea*</p>
<p>* Tobacco Tea ::  To make tobacco tea, place half a handful of chewing tobacco in an old nylon stocking, and soak it in a gallon of hot water until the mixture is dark brown.</p>
<p>Instructions ::  Mix all of the ingredients in your <strong>20 gallon hose-end sprayer</strong>, filling the balance of the sprayer jar with warm water. Apply to your entire yard to the point of run-off every 2 weeks, in the evening, to discourage insects and prevent disease.</p>
<p>Browse our online store dedicated to <a href="http://www.green-store.org/" rel="nofollow"  target="_blank">Green Power</a> &amp; <a href="http://www.green-store.org/" rel="nofollow"  target="_blank">Green Living</a>.</p>
<p>Post from: <a href="http://www.shop-network.org">Online Shopping Network</a>
</p>
<p><a href="http://www.shop-network.org/blog/organic-tonics-for-lawncare-gardening-and-pest-control/">Organic Tonics for Lawncare, Gardening, and Pest Control</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shop-network.org/blog/organic-tonics-for-lawncare-gardening-and-pest-control/feed/</wfw:commentRss>
		</item>
		<item>
		<title>RSS Feed Submission</title>
		<link>http://www.shop-network.org/blog/rss-feed-submission/</link>
		<comments>http://www.shop-network.org/blog/rss-feed-submission/#comments</comments>
		<pubDate>2008-07-07T17:44:51Z</pubDate>
		<dc:creator>Shop Network</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.shop-network.org/?p=73378</guid>
		<description><![CDATA[Let feedburner do the pinging for you. Since Google acquired Feedburner, using Feedburner to do all the pinging leg work makes the most sense. This can be done using the Feedburner Feedsmith plugin for wordpress.]]></description>
			<content:encoded><![CDATA[<p>If you have not done so already, it is recommended to read a prior blog post about <a href="http://www.shop-network.org/blog/search-engine-submission/" target="_self">sitemaps and search engine submission</a>.</p>
<p>RSS feeds are a great and non-intrusive way to tell both people and search engines about the changing content of your website. If you&#8217;re using Wordpress, then a &#8220;<a href="http://en.wikipedia.org/wiki/Ping_(blogging)" rel="nofollow"  target="_blank">Ping</a>&#8221; is sent to the site <a href="http://pingomatic.com/" rel="nofollow"  target="_blank">ping-o-matic</a> when new content is published. This is the default configuration. However, there are some who manually add a list of sites to ping in lieu of using Ping-O-Matic alone. There are others, like myself, who opt to do something different.</p>
<p><span style="text-decoration: underline;"><strong>Using Feedburner </strong></span></p>
<p>Let <a href="http://www.feedburner.com/fb/a/ping" rel="nofollow"  target="_blank">feedburner</a> do the pinging for you. Since <a href="http://blogs.feedburner.com/feedburner/archives/2007/06/feedburner_google.php" rel="nofollow"  target="_blank">Google acquired Feedburner</a>, using Feedburner to do all the pinging leg work makes the most sense. This can be done using the <a href="http://blogs.feedburner.com/feedburner/archives/2007/05/feedburner_adopts_twoyearold_r.php" rel="nofollow"  target="_blank">Feedburner Feedsmith</a> plugin for wordpress.</p>
<p>Rather than having your standalone Wordpress site handle all of your RSS traffic, you can offload this task by giving it to feedburner. Feedburner can be configured to send Pings to Ping-O-Matic and more.</p>
<p><span style="text-decoration: underline;">Sites that Feedburner Pings</span></p>
<ol>
<li><a href="http://www.technorati.com/developers/ping" rel="nofollow"  target="_blank">Technorati</a></li>
<li><a href="http://my.yahoo.com/" rel="nofollow"  target="_blank">MyYahoo!</a></li>
<li><a href="http://www.bloglines.com/services/api" rel="nofollow" >Bloglines</a></li>
<li><a href="http://www.newsgator.com/" rel="nofollow"  target="_blank">Newsgator</a></li>
<li><a href="http://www.google.com/help/blogsearch/about_pinging.html" rel="nofollow"  target="_blank">Google Blog Search Pinging Service</a></li>
<li><a href="http://www.pingomatic.com/" rel="nofollow"  target="_blank">Ping-O-Matic</a></li>
</ol>
<p>In addition, Feedburner can be configured to Ping 5 additional services.</p>
<ol>
<li><a href="http://www.weblogs.com/" rel="nofollow"  target="_blank">Weblogs.com</a></li>
<li><a href="http://www.blogdigger.com/" rel="nofollow"  target="_blank">Blogdigger</a></li>
<li><a href="http://www.syndic8.com/about.php" rel="nofollow"  target="_blank">Syndic8</a></li>
<li><a href="http://www.alexa.com/" rel="nofollow"  target="_blank">Alexa</a></li>
<li><a href="http://www.snap.com/" rel="nofollow"  target="_blank">Snap</a></li>
<li><a href="http://www.icerocket.com/" rel="nofollow"  target="_blank">Icerocket</a></li>
<li><a href="http://www.tailrank.com/" rel="nofollow"  target="_blank">Tailrank</a></li>
<li><a href="http://www.blogbuzzmachine.com/index.php" rel="nofollow"  target="_blank">Blog Buzz Machine</a></li>
<li><a href="http://www.feedblitz.com/" rel="nofollow"  target="_blank">Feedblitz</a></li>
<li><a href="http://bloggarkivet.net/" rel="nofollow"  target="_blank">Bloggarkivet</a></li>
<li><a href="http://api.blogblogs.com.br/" rel="nofollow"  target="_blank">Blogblogs</a></li>
<li><a href="http://www.bloggrevyen.com/" rel="nofollow"  target="_blank">Bloggrevyen</a></li>
<li><a href="http://www.feedcrier.com/" rel="nofollow"  target="_blank">Feed Crier</a></li>
<li><a href="http://w.moreover.com/site/products/ind/pingserver.html" rel="nofollow"  target="_blank">Moreover</a></li>
</ol>
<p>After installing the feedburner plugin, in Wordpress v2.5.1, changing the pinging service is easily done at the <span style="text-decoration: underline;">bottom</span> of the <strong>Settings -&gt; Writing</strong> page.</p>
<p>Change :</p>
<blockquote><p>http://rpc.pingomatic.com</p></blockquote>
<p>To :</p>
<blockquote><p>http://ping.feedburner.com</p></blockquote>
<p>You can also add your feedburner RSS feed to a couple of search engines. For more information on this, consult <a href="http://tips-for-new-bloggers.blogspot.com/2007/09/submit-blogger-sitemap-to-msn-and.html" rel="nofollow"  target="_blank">Tips for New Bloggers</a>.</p>
<p>Post from: <a href="http://www.shop-network.org">Online Shopping Network</a>
</p>
<p><a href="http://www.shop-network.org/blog/rss-feed-submission/">RSS Feed Submission</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shop-network.org/blog/rss-feed-submission/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Search Engine Submission</title>
		<link>http://www.shop-network.org/blog/search-engine-submission/</link>
		<comments>http://www.shop-network.org/blog/search-engine-submission/#comments</comments>
		<pubDate>2008-07-07T17:46:54Z</pubDate>
		<dc:creator>Shop Network</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.shop-network.org/?p=73314</guid>
		<description><![CDATA[There are some who advocate that search engine submission is not necessary. These people state that search engines find websites naturally through links on other websites, blog comments, forum signatures, and link directories. However, I'm sure that the search engines have created their link submission page for a reason -- they want to be informed of new sites.]]></description>
			<content:encoded><![CDATA[<p>There are some who advocate that search engine submission is not necessary. These people state that search engines find websites naturally through links on other websites, blog comments, forum signatures, and link directories. However, I&#8217;m sure that the search engines have created their link submission page for a reason &#8212; they want to be informed of new sites. <strong>Multiple redundant submissions to the same search engine is strongly discouraged.<br />
</strong></p>
<blockquote><p><a href="http://www.google.com/addurl/" rel="nofollow"  target="_blank">Submit your site to Google</a><br />
<a href="http://blogsearch.google.com/ping" rel="nofollow"  target="_blank">Submit your blog to Google Blog Search</a><br />
<a href="https://siteexplorer.search.yahoo.com/submit" rel="nofollow"  target="_blank">Submit your site to Yahoo!</a><br />
<a href="http://search.live.com/docs/submit.aspx" rel="nofollow"  target="_blank">Submit your site to MSN</a></p></blockquote>
<p>In addition, the search engines like <a href="http://en.wikipedia.org/wiki/Sitemaps" rel="nofollow"  target="_blank">sitemaps</a>. <a href="http://wordpress.org/" rel="nofollow"  target="_blank">Wordpress</a> has a nice plugin that generates a <a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/" rel="nofollow"  target="_blank">Google compliant sitemap</a>. If you&#8217;re not using a blog, then you can use a <a href="http://www.xml-sitemaps.com/aff/idevaffiliate.php?id=257" rel="nofollow"  target="_blank">paid ($19.99) .PHP script to generate a sitemap</a> consisting of an <span style="text-decoration: underline;">unlimited</span> number of links. The <a href="http://www.xml-sitemaps.com/aff/idevaffiliate.php?id=257" rel="nofollow"  target="_blank">free version</a> of this same script limits the size of a sitemap to 500 links.</p>
<p><span style="text-decoration: underline;"><strong>Getting the word out about your sitemap</strong></span></p>
<p>Once the sitemap is generated, it is highly recommended to tell the search engines about its presence. This can be done automatically! In order to do this, amend the <a href="http://googlewebmastercentral.blogspot.com/2008/06/improving-on-robots-exclusion-protocol.html" rel="nofollow"  target="_blank">robots.txt</a> file to point to the sitemap&#8217;s location. As an example, I have included some information from this site&#8217;s robots.txt file.</p>
<blockquote>
<pre><strong>User-agent: *</strong>
<strong>Crawl-delay:</strong> 20

<strong>Sitemap:</strong> http://www.shop-network.org/sitemap-1.xml.gz
<strong>Sitemap:</strong> http://www.shop-network.org/sitemap-2.xml.gz
</pre>
</blockquote>
<p>You&#8217;ll notice that I&#8217;ve bolded a couple of search engine instructions. Since each <span style="text-decoration: underline;">reputable</span> search engine that visits a site complies with <a href="http://en.wikipedia.org/wiki/Robots.txt" rel="nofollow"  target="_blank">the robots.txt standard</a>, you can be assured that including sitemap information in the robots.txt file will get your URLs noticed. You&#8217;ll also notice that I have two sitemaps, and that I have <a href="http://www.7-zip.org/" rel="nofollow"  target="_blank">Gzipped</a> each of them. This is because Google limits the number of URLs in an individual sitemap to 50,000. In addition, Google limits the size of the sitemaps it accepts to 10MB in size. For sites with many urls, compressing the sitemap saves bandwidth.</p>
<p>To add another layer of search engine visibility, tell Google about your sitemap through the <a href="https://www.google.com/webmasters/tools/docs/en/about.html" rel="nofollow"  target="_blank">Google Webmaster Interface</a> and tell Yahoo! about your sitemap though the <a href="http://help.yahoo.com/l/us/yahoo/search/siteexplorer/" rel="nofollow"  target="_blank">Yahoo! Site Explorer</a>.</p>
<p>Read our blog post about <a href="http://www.shop-network.org/blog/rss-feed-submission/" target="_self">RSS Feed Submission</a>.</p>
<p>Post from: <a href="http://www.shop-network.org">Online Shopping Network</a>
</p>
<p><a href="http://www.shop-network.org/blog/search-engine-submission/">Search Engine Submission</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shop-network.org/blog/search-engine-submission/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tips for Black Friday Shopping</title>
		<link>http://www.shop-network.org/blog/tips-for-black-friday-shopping/</link>
		<comments>http://www.shop-network.org/blog/tips-for-black-friday-shopping/#comments</comments>
		<pubDate>2008-06-29T15:19:23Z</pubDate>
		<dc:creator>Shop Network</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.shop-network.org/?p=63325</guid>
		<description><![CDATA[I would remind people about the waiting outside in cold weather, the rushing into the store and being trampled by other people, and the quantity purchasing limitations imposed by the retailer as an act of "fairness" as a few reasons why some people avoid this shopping day.]]></description>
			<content:encoded><![CDATA[<blockquote><p>In many cities it is not uncommon to see shoppers lined up hours before stores with big sales open. Once inside, the stores shoppers often rush and grab, as many stores have only a few of the big draw items. Electronics and popular toys are often the most sought-after items and may be sharply discounted. Because of the shoulder-to-shoulder crowds, many choose to stay home and avoid the hectic shopping experience. The local media often will cover the event, mentioning how early the shoppers began lining up at various stores and providing video of the shoppers standing in line and later leaving with their purchased items. Traditionally Black Friday sales were intended for those shopping for Christmas gifts. For some particularly popular items, some people shop at these sales in order to get deep discounts on items they can then resell, typically online.</p></blockquote>
<p>This excerpt from <a href="http://en.wikipedia.org/wiki/Black_Friday_(shopping)" rel="nofollow"  target="_blank">Wikipedia</a> paints a typical scenario for the Black Friday Shopper. In addition, I would remind people about the waiting outside in cold weather, the rushing into the store and being trampled by other people, and the quantity purchasing limitations imposed by the retailer as an act of &#8220;fairness&#8221; as a few reasons why some people avoid this shopping day.</p>
<p>Even though it&#8217;s far easier to shop online in order to avoid the inevitable hoopla &amp; drama that comes from dealing with other people, sometimes there <strong>are</strong> great deals to be had &#8230; sometimes you must charge the battlefield. If you&#8217;re one of the brave souls, read on.</p>
<ol>
<li><strong><span style="text-decoration: underline;">Obtain a newspaper.</span> </strong>If you already have a newspaper subscription, then wake up early on Thanksgiving Day and bring your newspaper inside. While grocery stores and convenience stores sell daily newspapers, they tend to disappear &#8212; fast. This leaves desperate would-be shoppers little choice than to grab the newspaper from your front lawn. Call it silly. Call it desperate. But it happens.</li>
<li><span style="text-decoration: underline;"><strong>Browse through the paper to find interesting items.</strong></span> Retailers tend to spend more money inserting full page ads and providing additional door-buster information.  In addition, retailers provide their opening time for the day after Thanksgiving, and they tend to give purchasing and quantity limitations.</li>
<li><span style="text-decoration: underline;"><strong>Make a list &amp; collaborate with friends and family.</strong></span> Take a pair of scissors and cut out the ads that have gotten your attention. Glue the cut outs to a piece of paper in the order of desirability. Collaborate with family and friends when there are two items of equal desirability being sold at two or more different locations.</li>
<li><span style="text-decoration: underline;"><strong>Browse the online version of retail stores for special deals.</strong></span> Since supply and demand applies both to internet stores and to traditional retail outlets, have an idea of <em>what</em> you want to buy, <em>where </em>it is being sold, and <em>when</em> it goes on sale. Even with internet stores, it is commonplace to have special items sell out within a matter of seconds or minutes. Be prepared or be prepared to wait.</li>
</ol>
<p>Don&#8217;t be afraid to consult <a href="http://www.google.com/search?hl=en&amp;q=Black+Friday+Tips&amp;btnG=Google+Search" rel="nofollow"  target="_blank">Google</a>.</p>
<p>For reference, here is <a href="http://www.amazon.com/Black-Friday-After-Thanksgiving-Sale/b?ie=UTF8&amp;node=384082011&amp;tag=shop-network-20" rel="nofollow"  target="_blank">Amazon.com&#8217;s Black Friday 2007</a> page.</p>
<p>Post from: <a href="http://www.shop-network.org">Online Shopping Network</a>
</p>
<p><a href="http://www.shop-network.org/blog/tips-for-black-friday-shopping/">Tips for Black Friday Shopping</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shop-network.org/blog/tips-for-black-friday-shopping/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Quick Gift Ideas</title>
		<link>http://www.shop-network.org/blog/quick-gift-ideas/</link>
		<comments>http://www.shop-network.org/blog/quick-gift-ideas/#comments</comments>
		<pubDate>2008-06-28T20:48:22Z</pubDate>
		<dc:creator>Shop Network</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.shop-network.org/?p=63284</guid>
		<description><![CDATA[In other words, a quick gift idea might come from the most popular items that other people have been purchasing. Those who fail to do their shopping online will have to wait to be told this year's hot item from newspapers, television shows, and advertisement fliers.However, those who perform their shopping online will know what's popular in a few seconds.]]></description>
			<content:encoded><![CDATA[<p>Finding a last minute gift at a traditional store can be troublesome. In the <span style="text-decoration: underline;">first</span> place, there has to be some physical effort during the searching process. This involves driving to the store, dealing with sales personnel and other customers at the store, waiting in line, and competing with other shoppers for limited product availability. In the <span style="text-decoration: underline;">second</span> place, the scope of items available is limited to the niche content of the store from which the item is purchased. What this means is that many traditional stores fail to offer the product diversity that internet shoppers have come to associate with ease and convenience. To put this in another way, while traditional electronic stores offer televisions, movies, and speakers alongside appliances, computer parts, and vacuum cleaners, <strong>brand and product diversity is usually sacrificed and limited</strong> in order to feature a handful of items from each of their shopping categories &#8212; a few appliances here, a few televisions there. In addition, if a desired item is &#8220;out of stock&#8221; and has be ordered, it is possible to save some money by finding and ordering the same item from home.</p>
<p>To help make finding quick gift ideas easier, a <a href="http://www.shop-network.org/bestsellers/" target="_self">Best Seller</a> page has been added. What this page offers is a small graphic of the particular bestsellers from each shopping category. Hovering your mouse over an image reveals some product information as well as the item&#8217;s ranking (#1, #2, etc.). Actually clicking on an image will reveal product availability, current pricing, as well as customer reviews. However, the best feature of this page is that it provides a quick overview of both new and enduring popular items as determined by the overall volume sold. <a href="http://www.shop-network.org/bestsellers/">The Bestseller page saves time</a>.</p>
<p>In other words, a quick gift idea might come from the most popular items that other people have been purchasing. Those who fail to do their shopping online will have to wait to be told this year&#8217;s hot item from newspapers, television shows, and advertisement fliers. However, those who perform their shopping online will know what&#8217;s popular in a few seconds.</p>
<p>Post from: <a href="http://www.shop-network.org">Online Shopping Network</a>
</p>
<p><a href="http://www.shop-network.org/blog/quick-gift-ideas/">Quick Gift Ideas</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shop-network.org/blog/quick-gift-ideas/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Going Green In Small Steps</title>
		<link>http://www.shop-network.org/blog/going-green-in-small-steps/</link>
		<comments>http://www.shop-network.org/blog/going-green-in-small-steps/#comments</comments>
		<pubDate>2008-06-25T01:02:55Z</pubDate>
		<dc:creator>Shop Network</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.shop-network.org/?p=56123</guid>
		<description><![CDATA[Lowering energy consumption one household at a time seems a daunting task. However, replacing less efficient incandescent bulbs with more efficient bulbs seems the easiest place to begin reducing consumption.]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">According to a February 2008 article at <a href="http://www.csmonitor.com/2007/0228/p01s03-ussc.html" rel="nofollow"  target="_blank">The Christian Science Monitor</a>:</p>
<blockquote style="text-align: left;"><p>The incandescent bulb is an energy hog. Just 5 percent of the electricity it uses goes to light the bulb; the other 95 percent is heat. Improving light output and lowering heat output would reduce demand for electricity from coal-fired power plants, which emit carbon dioxide. CO2, most climate scientists say, is the single largest contributor to global warming.</p></blockquote>
<p style="text-align: left;">Lowering energy consumption one household at a time seems a daunting task. However, replacing less efficient incandescent bulbs with more efficient bulbs seems the easiest place to begin reducing consumption. Because <a href="http://en.wikipedia.org/wiki/Banning_of_incandescent_lightbulbs" rel="nofollow"  target="_blank">banning of the incandescent light bulb</a> is inevitable, it is both prudent and cost efficient to <a href="http://www.green-store.org/index.php?c=hi&amp;n=575341011&amp;x=ENERGY_STAR_Compact_Fluorescent_Bulbs" rel="nofollow"  target="_blank">buy a green bulb</a>.</p>
<p style="text-align: left;">According to the <a href="http://www.energystar.gov/index.cfm?c=cfls.pr_cfls" rel="nofollow"  target="_blank">Energy Star Government Website</a>:</p>
<blockquote style="text-align: left;"><p>If every American home replaced just one light bulb with an ENERGY STAR qualified bulb, we would save <strong>enough energy to light more than 3 million homes for a year,</strong> more than <strong>$600 million in annual energy costs,</strong> and prevent greenhouse gases equivalent to the emissions of more than <strong>800,000 cars.</strong></p></blockquote>
<p style="text-align: left;">Now imagine the savings if every light bulb in every American house was replaced with and upgraded to compact fluorescent light (CFL). While there are numerous other strategies for going green, such as avoiding excessive automotive idling, avoiding hard braking, and speeding, replacing the lights in one&#8217;s own household would appear to the easiest manner to contribute to American Energy Independence.</p>
<p style="text-align: left;">Shop: <a href="http://www.green-store.org/" rel="nofollow"  target="_blank">Energy Star Qualified Products</a></p>
<p style="text-align: center;"><img src="http://www.energystar.gov/ia/products/lighting/cfls/LightOutput_Equival_Chart.jpg" alt="Light Output Equivalency chart" width="440" height="299" /></p>
<p>Post from: <a href="http://www.shop-network.org">Online Shopping Network</a>
</p>
<p><a href="http://www.shop-network.org/blog/going-green-in-small-steps/">