<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Sigma Web Technologies</title>
	
	<link>http://www.sigmawebtechnologies.com</link>
	<description>Local Marketing for Local Businesses</description>
	<lastBuildDate>Thu, 12 Jan 2012 13:31:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/SigmaWebTechnologies" /><feedburner:info uri="sigmawebtechnologies" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Make Default Text in Form Field Disappear on Focus</title>
		<link>http://feedproxy.google.com/~r/SigmaWebTechnologies/~3/31rmXCudeO4/</link>
		<comments>http://www.sigmawebtechnologies.com/code/make-default-text-in-form-field-disappear-on-focus/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 13:31:42 +0000</pubDate>
		<dc:creator>Larry Levenson</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://www.sigmawebtechnologies.com/?p=896</guid>
		<description><![CDATA[<p>It can be useful to prefill your input fields and textareas with little hints or reminders. For example if you have a general contact form and a textarea labeled &#8220;Message:&#8221;, you may want to prefill that textarea with something like &#8220;Your positive comments or constructive criticism here.&#8221;</p> <p>You can do that just by including text [...]]]></description>
			<content:encoded><![CDATA[<p>It can be useful to prefill your input fields and textareas with little hints or reminders. For example if you have a general contact form and a textarea labeled &#8220;Message:&#8221;, you may want to prefill that textarea with something like &#8220;Your positive comments or constructive criticism here.&#8221;</p>
<p>You can do that just by including text within your tags:</p>
<pre><code>&lt;textarea name="message" rows="20" cols="20"&gt;Hint goes here.&lt;/textarea&gt; &lt;input type="text" name="name" size="20" default="your name" &gt;</code></pre>
<p>You can add a little Javascript to clear that hint away when the user clicks inside that box. This little code snippet also only allows that to happen once, so if the user clicks away and then back in, they won&#8217;t lose what they have entered.</p>
<pre><code>&lt;textarea name="message" rows="20" cols="20" onfocus="this.value=''; this.onfocus=null;"&gt;Hint goes here.&lt;/textarea&gt; &lt;input type="text" name="name" size="20" default="your name" onfocus="this.value=''; this.onfocus=null;" &gt;</code></pre>
<p>This tip came from Chris Coyer at <a  href="http://css-tricks.com/tips-for-creating-great-web-forms/" target="_blank">CSS-Tricks</a>.</p>
<h2  class="related_post_title">Random Posts</h2><ul class="related_post"><li><a  href="http://www.sigmawebtechnologies.com/recent-projects/rotaract-eclub-of-district-5510/" title="Rotaract eClub of District 5510">Rotaract eClub of District 5510</a></li><li><a  href="http://www.sigmawebtechnologies.com/wordpress/hr-tag-in-a-wordpress-blog/" title="HR tag in a Wordpress blog">HR tag in a Wordpress blog</a></li><li><a  href="http://www.sigmawebtechnologies.com/code/htaccess-moving-renaming-pages/" title="htaccess &#8211; Moving &#038; Renaming Pages">htaccess &#8211; Moving &#038; Renaming Pages</a></li><li><a  href="http://www.sigmawebtechnologies.com/tools/gmail-view-doc-attachments-right-in-your-browser/" title="Gmail: View .doc attachments right in your browser">Gmail: View .doc attachments right in your browser</a></li><li><a  href="http://www.sigmawebtechnologies.com/tools/transform-your-computer-desktop-into-something-useful/" title="Transform your Computer Desktop into Something Useful!">Transform your Computer Desktop into Something Useful!</a></li></ul><img src="http://feeds.feedburner.com/~r/SigmaWebTechnologies/~4/31rmXCudeO4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sigmawebtechnologies.com/code/make-default-text-in-form-field-disappear-on-focus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sigmawebtechnologies.com/code/make-default-text-in-form-field-disappear-on-focus/</feedburner:origLink></item>
		<item>
		<title>Understanding Hash Functions and Keeping Passwords Safe</title>
		<link>http://feedproxy.google.com/~r/SigmaWebTechnologies/~3/fzHT8xGyek0/</link>
		<comments>http://www.sigmawebtechnologies.com/security/understanding-hash-functions-and-keeping-passwords-safe/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 04:53:15 +0000</pubDate>
		<dc:creator>Larry Levenson</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[hash]]></category>
		<category><![CDATA[password]]></category>

		<guid isPermaLink="false">http://www.sigmawebtechnologies.com/?p=888</guid>
		<description><![CDATA[<p>Burak  Guzel, a fellow Arizonan, wrote a great tutorial on hash functions, and provides an easy-to-use PHP class to implement them. Read the full article at <a href="http://net.tutsplus.com/tutorials/php/understanding-hash-functions-and-keeping-passwords-safe/">http://net.tutsplus.com/tutorials/php/understanding-hash-functions-and-keeping-passwords-safe/</a></p> Random Posts<a href="http://www.sigmawebtechnologies.com/email-marketing-2/do-this-not-that-for-better-email-delivery/" title="Do This, Not That, for Better Email Delivery">Do This, Not That, for Better Email Delivery</a><a href="http://www.sigmawebtechnologies.com/tools/do-you-reqall-that-good-idea/" title="Do you reQall that Good Idea??">Do you reQall that [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-456" title="encrypted_storage" src="http://www.sigmawebtechnologies.com/wp-content/uploads/2010/12/encrypted_storage-150x150.jpg" alt="" width="150" height="150" />Burak  Guzel, a fellow Arizonan, wrote a great tutorial on hash functions, and provides an easy-to-use PHP class to implement them. Read the full article at <a  href="http://net.tutsplus.com/tutorials/php/understanding-hash-functions-and-keeping-passwords-safe/">http://net.tutsplus.com/tutorials/php/understanding-hash-functions-and-keeping-passwords-safe/</a></p>
<h2  class="related_post_title">Random Posts</h2><ul class="related_post"><li><a  href="http://www.sigmawebtechnologies.com/news/the-new-wordpress-users-association/" title="The New WordPress Users Association">The New WordPress Users Association</a></li><li><a  href="http://www.sigmawebtechnologies.com/wordpress/login-and-logout-link-in-wordpress/" title="Login and Logout Link in Wordpress">Login and Logout Link in Wordpress</a></li><li><a  href="http://www.sigmawebtechnologies.com/tools/a-simplified-users-guide-to-wordpress/" title="A Simplified Users Guide to Wordpress">A Simplified Users Guide to Wordpress</a></li><li><a  href="http://www.sigmawebtechnologies.com/social-media/real-time-social-media-searches/" title="Real Time Social Media Searches">Real Time Social Media Searches</a></li><li><a  href="http://www.sigmawebtechnologies.com/local-marketing/9-ways-to-build-your-email-list-effectively/" title="9 Ways to Build Your Email List Effectively">9 Ways to Build Your Email List Effectively</a></li></ul><img src="http://feeds.feedburner.com/~r/SigmaWebTechnologies/~4/fzHT8xGyek0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sigmawebtechnologies.com/security/understanding-hash-functions-and-keeping-passwords-safe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sigmawebtechnologies.com/security/understanding-hash-functions-and-keeping-passwords-safe/</feedburner:origLink></item>
		<item>
		<title>A Huge Increase in Traffic and Exposure</title>
		<link>http://feedproxy.google.com/~r/SigmaWebTechnologies/~3/II9v2hP6H8g/</link>
		<comments>http://www.sigmawebtechnologies.com/testimonials/a-huge-increase-in-traffic-and-exposure/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 13:04:06 +0000</pubDate>
		<dc:creator>Larry Levenson</dc:creator>
				<category><![CDATA[Testimonials]]></category>

		<guid isPermaLink="false">http://www.sigmawebtechnologies.com/?p=884</guid>
		<description><![CDATA[<p>Dear Larry,</p> <p><a href="http://www.honorflightaz.org"></a>I want to thank you for the many improvements you have made to our organization by the building of our website.  We have experienced a huge increase in traffic and exposure.  This has resulted in a significant increase in donations to our non-profit as PayPal is now available and information for mail-in [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Calibri,Verdana,Helvetica,Arial;">Dear Larry,</p>
<p><a  href="http://www.honorflightaz.org"><img class="alignright size-full wp-image-885" title="honor-flight-screenshot" src="http://www.sigmawebtechnologies.com/wp-content/uploads/2011/08/honor-flight-screenshot.jpg" alt="Honoe Flight screenshot" width="255" height="189" /></a>I want to thank you for the many improvements you have made to our organization by the building of our website.  We have experienced a huge increase in traffic and exposure.  This has resulted in a significant increase in donations to our non-profit as PayPal is now available and information for mail-in donations is easily accessible.  Posted videos have increased interest in our group and all links about our organization are quickly accessed.</p>
<p>Feedback from potential clients has been 100% positive.  Our newsletter has accumulated 84 subscribers in only three months!  We are now hearing from donors as far away as Connecticut.</p>
<p>Our website has allowed us to team up with local companies to conduct joint fundraising opportunities.  Applications to become involved in our organization are coming in daily via the website.  Clients quickly and easily are able to contact us.  Much of this has resulted from the pleasing appearance of the website that encourages browsers to search the site further.</p>
<p>Larry, we certainly could not have grown so quickly or expanded our mission so completely without your assistance and expertise.  You have been available to us when we have needed your support, and your patience in teaching me how to manage the site when I had NO experience has been amazing.  Please feel free to use us a a reference as needed.</p>
<p>Sincerely,<br />
<span style="color: #888888;"><br />
Nancy Page<br />
Board Member<br />
<a  href="http://honorflightaz.org" target="_blank">Honor Flight Arizona</a></span></span></p>
<h2  class="related_post_title">Random Posts</h2><ul class="related_post"><li><a  href="http://www.sigmawebtechnologies.com/wordpress/creating-single-post-templates-in-wordpress-2/" title="Creating single post templates in WordPress">Creating single post templates in WordPress</a></li><li><a  href="http://www.sigmawebtechnologies.com/news/online-scams-grow-in-the-wake-of-osama-bin-laden%e2%80%99s-death/" title="Online Scams Grow in the Wake of Osama Bin Laden’s Death ">Online Scams Grow in the Wake of Osama Bin Laden’s Death </a></li><li><a  href="http://www.sigmawebtechnologies.com/tools/use-google-alerts/" title="Use Google Alerts">Use Google Alerts</a></li><li><a  href="http://www.sigmawebtechnologies.com/local-marketing/free-calling-in-gmail-extended-through-2011/" title="Free calling in Gmail extended through 2011">Free calling in Gmail extended through 2011</a></li><li><a  href="http://www.sigmawebtechnologies.com/local-marketing/how-to-make-your-email-campaigns-more-social/" title="How to Make Your Email Campaigns More Social">How to Make Your Email Campaigns More Social</a></li></ul><img src="http://feeds.feedburner.com/~r/SigmaWebTechnologies/~4/II9v2hP6H8g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sigmawebtechnologies.com/testimonials/a-huge-increase-in-traffic-and-exposure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sigmawebtechnologies.com/testimonials/a-huge-increase-in-traffic-and-exposure/</feedburner:origLink></item>
		<item>
		<title>Do This! (Not That) For Awesome Emails</title>
		<link>http://feedproxy.google.com/~r/SigmaWebTechnologies/~3/FvOwI2WIoDY/</link>
		<comments>http://www.sigmawebtechnologies.com/email-marketing-2/do-this-not-that-for-awesome-emails/#comments</comments>
		<pubDate>Sat, 09 Jul 2011 12:16:41 +0000</pubDate>
		<dc:creator>Larry Levenson</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[aweber]]></category>

		<guid isPermaLink="false">http://www.sigmawebtechnologies.com/?p=876</guid>
		<description><![CDATA[<p><a href="http://indiefilmmarketing.com/files/2011/07/dothis-notthat2.jpg" class="thickbox no_icon" rel="gallery-876" title="dothis-notthat2"></a>The AWeber “Do This, Not That” approach was introduced when we realized that <a title="Email Marketing by AWeber" href="http://www.aweber.com/">email marketing</a> could use the equivalent to the food industry’s <a href="http://eatthisnotthatbook.com/uof/eatthisnotthatbook/">Eat This, Not That</a> book. We started off with some <a href="http://www.aweber.com/blog/email-marketing/do-this-not-that-for-better-email-delivery.htm">tips to improve your deliverability</a>.</p> <p>Your deliverability might be better [...]]]></description>
			<content:encoded><![CDATA[<p><a  href="http://indiefilmmarketing.com/files/2011/07/dothis-notthat2.jpg" class="thickbox no_icon" rel="gallery-876" title="dothis-notthat2"><img class="alignright size-full wp-image-213" title="dothis-notthat2" src="http://indiefilmmarketing.com/files/2011/07/dothis-notthat2.jpg" alt="" width="200" height="200" /></a>The AWeber “Do This, Not That” approach was introduced when we realized that <a  title="Email Marketing by AWeber" href="http://www.aweber.com/">email marketing</a> could use the equivalent to the food industry’s <a  href="http://eatthisnotthatbook.com/uof/eatthisnotthatbook/">Eat This, Not That</a> book. We started off with some <a  href="http://www.aweber.com/blog/email-marketing/do-this-not-that-for-better-email-delivery.htm">tips to improve your deliverability</a>.</p>
<p>Your deliverability might be better now, but that doesn’t mean your email campaign is mistake free. Perhaps the emails you’re creating are what’s hindering your path to success.</p>
<p>This is the second part of the series which deals with mistakes to avoid in the email creation process, and what you can do instead.</p>
<p>&nbsp;</p>
<h2>Don’t Use a “No Reply” From Address</h2>
<p><strong>What this is</strong>: Your subscribers see the emails are coming from an email address that has “noreply” in it.</p>
<p><a  href="http://indiefilmmarketing.com/files/2011/07/do-part2-01.jpg" class="thickbox no_icon" rel="gallery-876" title="do-part2-01"><img class="aligncenter size-full wp-image-209" title="do-part2-01" src="http://indiefilmmarketing.com/files/2011/07/do-part2-01.jpg" alt="" width="563" height="73" /></a></p>
<p>If you’re approaching your email campaign as a one-way conversation, you’re on the wrong track.</p>
<p>A “noreply” address makes your emails sound distant and automated. You’re <a  href="http://www.aweber.com/blog/email-marketing/do-not-reply-address-dont-bother.htm">closed off from your subscribers</a> and discourage developing a relationship with them.</p>
<p>Also consider the fact that your subscribers are getting tools to increase control over their inbox, and <a  href="http://www.aweber.com/blog/email-marketing/gmail-introduces-the-priority-inbox.htm">Gmail’s Priority Inbox</a> bases its filtering process on your subscribers’ interaction with your emails.</p>
<h3>Do this instead:</h3>
<ul>
<li><strong>Encourage communication!</strong><br />
Ask your subscribers for <a  href="http://www.aweber.com/blog/email-marketing/subscriber-feedback-ratings.htm">feedback</a> on how you’re doing. Let them know you’re available if they have any questions. People like to talk to people, so let your subscribers know there is a person behind the emails.</li>
</ul>
<p><a  href="http://www.greenanswers.com/">GreenAnswers</a> encourages communication in their emails by including a question box that directs the reader back to their site to ask a question:</p>
<p><a  href="http://indiefilmmarketing.com/files/2011/07/do-part2-02.jpg" class="thickbox no_icon" rel="gallery-876" title="do-part2-02"><img class="aligncenter size-full wp-image-210" title="do-part2-02" src="http://indiefilmmarketing.com/files/2011/07/do-part2-02.jpg" alt="" width="599" height="288" /></a></p>
<h2>Remember, Not Everyone Can See Images</h2>
<p><strong>What this is</strong>: You have the ability to create your messages in both <a  href="http://www.aweber.com/faq/questions/355/Which+is+Better%3A+Text+or+HTML%3F">HTML and plain text formats</a>. While some subscribers may have their email client set to display HTML messages, others may not.</p>
<p>HTML messages allow you to track <a  href="http://www.aweber.com/faq/questions/187/Where+Do+I+See+My+Open+and+Click+Rate+Stats%3F">open rates</a> and create beautiful messages. However, if you send only HTML, it can make your messages more likely to be filtered. Some of your subscribers may not even accept HTML messages in their email client.</p>
<p>Plain text messages aren’t as likely to be blocked, but they lack the tracking and formatting capabilities that HTML has.</p>
<h3>Do this instead:</h3>
<ul>
<li><strong>Include both HTML and plain text versions</strong><br />
When you set up both and HTML and plain text version of your message, <a  href="http://www.aweber.com/blog/email-template-design/plain-text-guide-html-email.htm">HTML</a> is sent by default, but if the subscriber does not accept HTML emails it will revert to <a  href="http://www.aweber.com/faq/questions/313/Why+Should+I+Always+Have+a+Plain+Text+Version+of+My+Message%3F">plain text</a>. Since some subscribers may have trouble with HTML messages, you can include a link to view your broadcast message on a web page when your message is <a  href="http://www.aweber.com/faq/questions/128/How+Do+I+Archive+My+Broadcast+Messages%3F">published on the AWeber archive</a>.</li>
</ul>
<p>Notice how <a  href="http://www.bonton.com/">Bon-Ton’s</a> message includes a link to their web-based message:</p>
<p><a  href="http://indiefilmmarketing.com/files/2011/07/do-part2-03.jpg" class="thickbox no_icon" rel="gallery-876" title="do-part2-03"><img class="aligncenter size-full wp-image-211" title="do-part2-03" src="http://indiefilmmarketing.com/files/2011/07/do-part2-03.jpg" alt="" width="600" height="302" /></a></p>
<p>No matter what you do, make sure you <a  href="http://www.aweber.com/faq/questions/111/How+Do+I+See+What+My+Message+Looks+Like+Before+Sending%3F">test your message</a> by sending it to multiple email clients and checking that the message appears correctly</p>
<h2>Don’t Treat Your Subscribers Like Numbers</h2>
<p><strong>What this is</strong>: Sending all your subscribers the same message.</p>
<p>You might think you don’t have the time to write personalized messages, so you just use the same campaign for everyone. Or maybe you’ve enabled <a  href="http://www.aweber.com/faq/questions/209/How+Do+I+Share+My+Messages+With+Others%3F">campaign sharing</a> to use messages someone you know already created and you’re afraid to stray from what you have.</p>
<p>What you’re doing is assuming all your subscribers are the same. This can prevent you from building a relationship with them, and they may be more likely to leave your list. Who likes getting generic messages?</p>
<h3>Do this instead:</h3>
<ul>
<li><strong>Use subscribers’ data to create personalized messages.</strong><br />
You have the ability to <a  href="http://www.aweber.com/faq/questions/119/How+Do+I+Send+a+Broadcast+to+Part+of+my+List+%28a+Segment%29%3F">send broadcast messages to a segment</a> within your list. This way you can separate subscribers into different groups, and each group gets messages that are best for them. You can also ask for email preferences at the time of sign up to make sure subscribers are getting <a  href="http://www.aweber.com/blog/email-marketing/email-preferences-happy-readers.htm">emails they requested</a>.</li>
</ul>
<p>You can choose to send a message to a segment near the bottom of the message editing page:</p>
<p><a  href="http://indiefilmmarketing.com/files/2011/07/do-part2-04.jpg" class="thickbox no_icon" rel="gallery-876" title="do-part2-04"><img class="aligncenter size-full wp-image-212" title="do-part2-04" src="http://indiefilmmarketing.com/files/2011/07/do-part2-04.jpg" alt="" width="360" height="396" /></a></p>
<h2>What Else Belongs on This List?</h2>
<p>Can you think of other mistakes email marketers make? What emails drive you nuts? What should be done instead?</p>
<p><a  href="http://sigmaweb.aweber.com" target="_blank">Read more email marketing tips on Aweber.com</a>, OR <a  href="http://sigmaweb.aweber.com" target="_blank">signup for Aweber&#8217;s email service</a>.</p>
<p><span style="color: #999999;"><em>This article was written by Aweber staff and originally appeared on <a  href="http://sigmaweb.aweber.com"><span style="color: #999999;">Aweber.com</span></a>. Used here with permission.</em></span></p>
<h2  class="related_post_title">Related Articles</h2><ul class="related_post"><li><a  href="http://www.sigmawebtechnologies.com/local-marketing/9-ways-to-build-your-email-list-effectively/" title="9 Ways to Build Your Email List Effectively">9 Ways to Build Your Email List Effectively</a></li><li><a  href="http://www.sigmawebtechnologies.com/social-media/post-your-email-newsletters-to-your-facebook-business-page/" title="Post Your Email Newsletters to Your Facebook Business Page">Post Your Email Newsletters to Your Facebook Business Page</a></li><li><a  href="http://www.sigmawebtechnologies.com/local-marketing/how-to-open-the-door-to-a-second-wave-of-sales/" title="How to Open the Door to a Second Wave of Sales">How to Open the Door to a Second Wave of Sales</a></li></ul><img src="http://feeds.feedburner.com/~r/SigmaWebTechnologies/~4/FvOwI2WIoDY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sigmawebtechnologies.com/email-marketing-2/do-this-not-that-for-awesome-emails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sigmawebtechnologies.com/email-marketing-2/do-this-not-that-for-awesome-emails/</feedburner:origLink></item>
		<item>
		<title>Do This, Not That, for Better Email Delivery</title>
		<link>http://feedproxy.google.com/~r/SigmaWebTechnologies/~3/QQO-RCv-j9E/</link>
		<comments>http://www.sigmawebtechnologies.com/email-marketing-2/do-this-not-that-for-better-email-delivery/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 23:52:12 +0000</pubDate>
		<dc:creator>Larry Levenson</dc:creator>
				<category><![CDATA[Email Marketing]]></category>

		<guid isPermaLink="false">http://www.sigmawebtechnologies.com/?p=864</guid>
		<description><![CDATA[Do This! (Not That) For Better Email Delivery <p>Email marketing tactics and food have a few things in common. There’s the good, the bad, and the people that try to make the bad look good for you.</p> <p>The food industry has resources like the <a href="http://eatthisnotthatbook.com/uof/eatthisnotthatbook/">Eat This, Not That</a> book to guide you, but what [...]]]></description>
			<content:encoded><![CDATA[<h2>Do This! (Not That) For Better Email Delivery</h2>
<p><img class="alignright size-full wp-image-867" title="dothis-notthat" src="http://www.sigmawebtechnologies.com/wp-content/uploads/2011/07/dothis-notthat.jpg" alt="" width="200" height="200" />Email marketing tactics and food have a few things in common. There’s the good, the bad, and the people that try to make the bad look good for you.</p>
<p>The food industry has resources like the <a  href="http://eatthisnotthatbook.com/uof/eatthisnotthatbook/"><em>Eat This, Not That</em></a> book to guide you, but what about email marketing? With all the different tactics out there, it’s hard to know what will help you and what will hurt you.</p>
<p>That will be changing today with AWeber’s “Do This, Not That” approach to Email Marketing.</p>
<p>We’ll kick it off with some of the worst list management mistakes that could be hurting your <a  title="Email Deliverability" href="http://www.aweber.com/email-deliverability.htm">email deliverability</a>, and what you should be doing instead.</p>
<h3>Send Only to Those Who Requested Your Information</h3>
<p><strong>What this is</strong>: You cannot <a  href="http://www.aweber.com/faq/questions/263/Can+I+Use+This+List%3F">use a list</a> you’ve obtained through a third party service.</p>
<p>Some third party services will pitch the idea that these email address requested information about your industry, which can be appealing if you’re just starting out.</p>
<p>You need to realize these subscribers <a  href="http://www.aweber.com/blog/email-deliverability/buying-email-lists-the-ugly-truth.htm">did NOT request YOUR information</a>, and you don’t even know how their email addresses were originally obtained. You’d be <a  href="http://www.aweber.com/faq/questions/160/What+is+AWeber%27s+Position+on+Spam%3F">spamming</a> them.</p>
<p>Another danger is obtaining stale or invalid email addresses. Your message may be filtered because of this, reducing your deliverability rate.</p>
<h3>Do this instead:</h3>
<ul>
<li><strong><a  href="http://www.aweber.com/blog/email-marketing/how-to-get-email-addresses.htm">Build your list organically</a>.</strong><br />
You can put up a <a  href="http://www.aweber.com/faq/questions/53/How+Do+I+Add+a+Form+To+My+Website%3F">web form</a> on your website so subscribers can sign up if they want to be on your mailing list. You can also include links to sign up on social media sites like <a  href="http://www.aweber.com/faq/questions/551/How+Do+I+Add+an+Opt-in+Form+to+My+Facebook+Page%3F">Facebook</a>. And don’t forget if you have a store to include a sign up sheet at the register!</li>
</ul>
<p>Check out how we invite people to subscribe on Facebook:</p>
<p><img class="aligncenter size-full wp-image-871" title="do-this-01" src="http://www.sigmawebtechnologies.com/wp-content/uploads/2011/07/do-this-01.jpg" alt="" width="600" height="422" /></p>
<h3>Don’t Assume Permission- Ask For It!</h3>
<p><strong>What this is</strong>: Subscribers skip the confirmation message and just start getting your emails.</p>
<p>There are <a  href="http://www.aweber.com/blog/email-deliverability/confirmed-opt-in-myths-exposed.htm">some worries</a> that confirmed opt-in makes the sign up process harder for the subscriber. But if you don’t have confirmed opt in on, you run the risk of again getting <a  href="http://www.aweber.com/blog/email-deliverability/confirmed-opt-in-protects-against-spamza.htm">bad email addresses</a> on your list. You’ll also open yourself up to more spam complaints, and subscribers who aren’t as interested in your company.</p>
<h3>Do this instead:</h3>
<ul>
<li><strong>Send a customized confirmation message.</strong><br />
Set up a <a  href="http://www.aweber.com/faq/questions/68/How+Do+I+Customize+the+Confirmation+Message%3F">customized confirmation</a> that explains to subscribers what’s going on. You’ll have a list of subscribers who want your information and are much less likely to complain.</li>
</ul>
<p>Here’s what a good confirmation message looks like:</p>
<p><img class="aligncenter size-full wp-image-872" title="do-this-02" src="http://www.sigmawebtechnologies.com/wp-content/uploads/2011/07/do-this-02.jpg" alt="" width="477" height="318" /></p>
<div></div>
<h3>Don’t Ignore Your Complaint Rate</h3>
<p><strong>What this is</strong>: A complaint is recorded when a subscriber marks one of your broadcast messages as spam.</p>
<p>A subscriber who complains will be automatically unsubscribed from your list in AWeber, which may lead to an “out of sight, out of mind” mentality. However, consistent <a  href="http://www.aweber.com/faq/questions/568/What+Is+An+Acceptable+Complaint+Rate%3F">complaints hurt your reputation</a> and your deliverability rate will go down.</p>
<p>Occasional complaints may be inevitable, but that’s never an excuse to look into what you could be doing better.</p>
<h3>Do this instead:</h3>
<ul>
<li><strong>Make sure you are properly <a  href="http://www.aweber.com/blog/email-marketing/ways-to-set-expectations-at-sign-up.htm">setting expectations.</a></strong><br />
Does your web form clearly state what they are signing up for? Do you have a <a  href="http://www.aweber.com/blog/email-marketing/3-good-welcome-email-examples.htm">welcome message</a> that details your email plans? You can <a  href="http://www.aweber.com/faq/questions/390/How+Do+I+Lower+My+Complaint+Rate%3F">lower your complaint rate</a> by ensuring subscribers know what they will be getting from you and how often you will be sending them messages.</li>
</ul>
<p>Here’s an example of a form that sets expectations:</p>
<p><img class="aligncenter size-full wp-image-873" title="do-this-03" src="http://www.sigmawebtechnologies.com/wp-content/uploads/2011/07/do-this-03.jpg" alt="" width="266" height="499" /></p>
<div></div>
<h3>Don’t Push Down the Unsubscribe Link</h3>
<p><strong>What this is</strong>: Using space or unnecessary text to <a  href="http://www.aweber.com/blog/email-marketing/six-ways-to-screw-up-a-customer-email.htm">push down the unsubscribe link</a>. This makes the unsubscribe link hard to find.</p>
<p>If subscribers <a  href="http://www.aweber.com/faq/questions/569/What+Can+I+Do+About+Unsubscribes%3F">want to leave your list,</a> you should let them! Otherwise you will run into spam complaints which can hurt your reputation and deliverability.</p>
<p>It will also mean your list contains subscribers who aren’t really interested in your emails. If they’re not interested, they won’t be interacting with your emails.</p>
<p>Don’t fall for the idea subscribers may “accidentally unsubscribe”. It’s not going to happen. The unsubscribe link takes subscribers to a new page where they will need to actually choose the unsubscribe option. Hiding the link is just not worth the risk.</p>
<h3>Do this instead:</h3>
<ul>
<li><strong>Put a <a  href="http://www.aweber.com/faq/questions/403/How+Can+I+Add+an+Additional+Unsubscribe+Link%3F">link to unsubscribe</a> at the TOP of your message.</strong><br />
Including some text such as “If you no longer wish to receive these emails, please click here to unsubscribe” is a much better approach. Subscribers will appreciate that you respect their time and attention.</li>
</ul>
<p>Here’s what it can look like:</p>
<p><img class="aligncenter size-full wp-image-874" title="do-this-04" src="http://www.sigmawebtechnologies.com/wp-content/uploads/2011/07/do-this-04.jpg" alt="" width="600" height="337" /></p>
<div></div>
<h3></h3>
<h3>Coming Up Next: The “Do This! (Not That)” Approach to Creating Emails</h3>
<p>In the next part of the series, you’ll learn the worst mistakes you can make when creating and sending emails. Find out if you’re doing one of these mistakes, and what you can do to fix it!</p>
<p><a  href="http://sigmaweb.aweber.com" target="_blank">Read more email marketing tips on Aweber.com</a>, OR <a  href="http://sigmaweb.aweber.com" target="_blank">signup for Aweber&#8217;s email service</a>.</p>
<p><span style="color: #999999;"><em>This article was written by Aweber staff and originally appeared on <a  href="http://sigmaweb.aweber.com"><span style="color: #999999;">Aweber.com</span></a>. Used here with permission.</em></span></p>
<h2  class="related_post_title">Random Posts</h2><ul class="related_post"><li><a  href="http://www.sigmawebtechnologies.com/social-media/add-a-twitter-link-to-your-wordpress-blog/" title="Add a Twitter Link to your Wordpress Blog">Add a Twitter Link to your Wordpress Blog</a></li><li><a  href="http://www.sigmawebtechnologies.com/wordpress/rounded-corners-this-is-easy/" title="Rounded Corners &#8211; This is Easy!">Rounded Corners &#8211; This is Easy!</a></li><li><a  href="http://www.sigmawebtechnologies.com/news/why-you-dont-want-to-use-online-tools-to-manage-your-passwords/" title="Why You Don&#8217;t Want to Use Online Tools to Manage Your Passwords">Why You Don&#8217;t Want to Use Online Tools to Manage Your Passwords</a></li><li><a  href="http://www.sigmawebtechnologies.com/social-media/how-to-attract-millions-of-facebook-fans/" title="How to Attract Millions of Facebook Fans">How to Attract Millions of Facebook Fans</a></li><li><a  href="http://www.sigmawebtechnologies.com/news/gmail-smart-labels-enable-automatic-message-sorting/" title="Gmail smart labels enable automatic message sorting">Gmail smart labels enable automatic message sorting</a></li></ul><img src="http://feeds.feedburner.com/~r/SigmaWebTechnologies/~4/QQO-RCv-j9E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sigmawebtechnologies.com/email-marketing-2/do-this-not-that-for-better-email-delivery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sigmawebtechnologies.com/email-marketing-2/do-this-not-that-for-better-email-delivery/</feedburner:origLink></item>
		<item>
		<title>Add a Twitter Link to your WordPress Blog</title>
		<link>http://feedproxy.google.com/~r/SigmaWebTechnologies/~3/lq8kxHdrq-8/</link>
		<comments>http://www.sigmawebtechnologies.com/social-media/add-a-twitter-link-to-your-wordpress-blog/#comments</comments>
		<pubDate>Mon, 04 Jul 2011 17:07:51 +0000</pubDate>
		<dc:creator>Larry Levenson</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.sigmawebtechnologies.com/?p=850</guid>
		<description><![CDATA[<p>If you&#8217;ve looked around at Twitter plugins that are available for WordPress, you probably had your eyes rolling around crazily in your head! Which one works? What plugin will best meet your needs? There are waaaaaayy too many Twitter plugins for WordPress.</p> <p>Here&#8217;s favorite strategy of mine, cleverly disguised as a simple link:</p> &#60;a href="http://twitter.com/home?status=RT@MyTwitAcct [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.sigmawebtechnologies.com/wp-content/uploads/2011/07/tweet-this-150x150.png" alt="" title="tweet-this" width="150" height="150" class="alignleft size-thumbnail wp-image-861" />If you&#8217;ve looked around at Twitter plugins that are available for WordPress, you probably had your eyes rolling around crazily in your head! Which one works? What plugin will best meet your needs? There are waaaaaayy too many Twitter plugins for WordPress.</p>
<p>Here&#8217;s favorite strategy of mine, cleverly disguised as a simple link:</p>
<div style="border: 1px solid #222; padding: 5px; background: #FFFFE0; margin-bottom: 30px;"><code>&lt;a href="http://twitter.com/home?status=RT@MyTwitAcct &lt;?php the_title(); ?&gt; &lt;?php echo get_settings('home'); ?&gt;?p=&lt;?php the_ID(); ?&gt;">Tweet This&lt;/a&gt;<br />
</code></div>
<p>This code inserts the RT and your Twitter account name, then uses the ID form of your post with the tweet. When people click the link in the tweet, they will then be redirected to the actual post using your blog&#8217;s selected permalink structure.</p>
<h2  class="related_post_title">Related Articles</h2><ul class="related_post"><li><a  href="http://www.sigmawebtechnologies.com/social-media/post-your-email-newsletters-to-your-facebook-business-page/" title="Post Your Email Newsletters to Your Facebook Business Page">Post Your Email Newsletters to Your Facebook Business Page</a></li><li><a  href="http://www.sigmawebtechnologies.com/social-media/twitter-who-to-follow/" title="Twitter Generates &#8220;Who to Follow&#8221; Suggestions">Twitter Generates &#8220;Who to Follow&#8221; Suggestions</a></li><li><a  href="http://www.sigmawebtechnologies.com/news/presentation-to-prescott-young-professionals/" title="Presentation to Prescott Young Professionals">Presentation to Prescott Young Professionals</a></li><li><a  href="http://www.sigmawebtechnologies.com/social-media/tweetdeck-listening-to-social-media/" title="TweetDeck: Listening to Social Media">TweetDeck: Listening to Social Media</a></li><li><a  href="http://www.sigmawebtechnologies.com/social-media/listening-on-twitter/" title="Listening on Twitter">Listening on Twitter</a></li></ul><img src="http://feeds.feedburner.com/~r/SigmaWebTechnologies/~4/lq8kxHdrq-8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sigmawebtechnologies.com/social-media/add-a-twitter-link-to-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sigmawebtechnologies.com/social-media/add-a-twitter-link-to-your-wordpress-blog/</feedburner:origLink></item>
		<item>
		<title>Adding a Favicon to Your Sub-site in WordPress Multisite</title>
		<link>http://feedproxy.google.com/~r/SigmaWebTechnologies/~3/mv8zUbEkyaM/</link>
		<comments>http://www.sigmawebtechnologies.com/wordpress/adding-a-favicon-to-your-sub-site-in-wordpress-multisite/#comments</comments>
		<pubDate>Tue, 14 Jun 2011 23:50:18 +0000</pubDate>
		<dc:creator>Larry Levenson</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[multisite]]></category>

		<guid isPermaLink="false">http://www.sigmawebtechnologies.com/?p=845</guid>
		<description><![CDATA[<p>A favicon (short for favorites icon), also known as a shortcut icon, Web site icon, URL icon, or bookmark icon, is a file containing one or more small icons, most commonly 16×16 pixels, associated with a particular Web site or Web page.</p> Where does a visitor see the favicon? <p>These days, pretty much all  browsers provide favicon support and typically display a page&#8217;s favicon [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-846" title="add a favicon to WordPress Multisite" src="http://www.sigmawebtechnologies.com/wp-content/uploads/2011/06/favicon_in_Firefox.png" alt="" width="250" height="150" />A <strong>favicon</strong> (short for <strong>favorites icon</strong>),  also known as a shortcut icon, Web site icon, URL icon, or bookmark  icon, is a file containing one or more small icons, most commonly  16×16 pixels, associated with a particular Web site or Web page.</p>
<h3>Where does a visitor see the favicon?</h3>
<p>These days, pretty much all  browsers provide favicon support and  typically display a page&#8217;s favicon in the browser&#8217;s address bar and next  to the page&#8217;s name in a list of bookmarks. Browsers that support  a tabbed document interface typically show a page&#8217;s favicon next to the  page&#8217;s title on the tab.</p>
<h3>How do I add a Favicon?</h3>
<p>We use the Personal Favicon plugin to allow sub-site administrators to add their own.</p>
<p><a  href="http://wordpress.org/extend/plugins/personal-favicon/" target="_blank">http://wordpress.org/extend/plugins/personal-favicon/</a></p>
<p>Upload your icon and copy the URL to it. Then go to Settings | Personal  Favicon and paste that URL. Select Blog and Admin Pages, and click  Save.</p>
<p>To see your new favicon, refresh your blog page. <img src='http://www.sigmawebtechnologies.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h2  class="related_post_title">Random Posts</h2><ul class="related_post"><li><a  href="http://www.sigmawebtechnologies.com/local-marketing/how-to-be-found-online-as-a-small-business/" title="How to be found online as a small business">How to be found online as a small business</a></li><li><a  href="http://www.sigmawebtechnologies.com/wordpress/creating-single-post-templates-in-wordpress/" title="Creating single post templates in WordPress">Creating single post templates in WordPress</a></li><li><a  href="http://www.sigmawebtechnologies.com/code/how-to-use-google-analytics-with-sharepoint/" title="How to Use Google Analytics with Sharepoint">How to Use Google Analytics with Sharepoint</a></li><li><a  href="http://www.sigmawebtechnologies.com/wordpress/hr-tag-in-a-wordpress-blog/" title="HR tag in a Wordpress blog">HR tag in a Wordpress blog</a></li><li><a  href="http://www.sigmawebtechnologies.com/tools/gmail-view-doc-attachments-right-in-your-browser/" title="Gmail: View .doc attachments right in your browser">Gmail: View .doc attachments right in your browser</a></li></ul><img src="http://feeds.feedburner.com/~r/SigmaWebTechnologies/~4/mv8zUbEkyaM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sigmawebtechnologies.com/wordpress/adding-a-favicon-to-your-sub-site-in-wordpress-multisite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sigmawebtechnologies.com/wordpress/adding-a-favicon-to-your-sub-site-in-wordpress-multisite/</feedburner:origLink></item>
		<item>
		<title>Using iFrames with WordPress</title>
		<link>http://feedproxy.google.com/~r/SigmaWebTechnologies/~3/bvU3tRUqrWI/</link>
		<comments>http://www.sigmawebtechnologies.com/wordpress/using-iframes-with-wordpress/#comments</comments>
		<pubDate>Tue, 14 Jun 2011 01:40:48 +0000</pubDate>
		<dc:creator>Larry Levenson</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.sigmawebtechnologies.com/?p=833</guid>
		<description><![CDATA[<p>It’s a known issue that WordPress editor will remove the iFrame code as soon as the tab is changed from HTML to visual or vice versa.</p> function mytheme_tinymce_config( $init ) {<br /> $valid_iframe = 'iframe[id&#124;class&#124;title&#124;style&#124;align&#124;frameborder&#124;height&#124;<br /> longdesc&#124;marginheight&#124;marginwidth&#124;<br /> name&#124;scrolling&#124;src&#124;width]';<br /> if ( isset( $init['extended_valid_elements'] ) ) {<br /> $init['extended_valid_elements'] .= ',' . $valid_iframe;<br /> } [...]]]></description>
			<content:encoded><![CDATA[<p>It’s a known issue that WordPress editor will remove the iFrame code as  soon as the tab is changed from HTML to visual or vice versa.</p>
<div style="border: 1px solid #222; padding: 5px; background: #FFFFE0; margin-bottom: 30px;"><code>function mytheme_tinymce_config( $init ) {<br />
 $valid_iframe = 'iframe[id|class|title|style|align|frameborder|height|<br />
longdesc|marginheight|marginwidth|<br />
name|scrolling|src|width]';<br />
 if ( isset( $init['extended_valid_elements'] ) ) {<br />
  $init['extended_valid_elements'] .= ',' . $valid_iframe;<br />
 } else {<br />
  $init['extended_valid_elements'] = $valid_iframe;<br />
 }<br />
 return $init;<br />
}<br />
add_filter('tiny_mce_before_init', 'mytheme_tinymce_config');<br />
</code></div>
<p>Add this into the functions.php file, and you can embed HMTL iframes anywhere.</p>
<h2  class="related_post_title">Random Posts</h2><ul class="related_post"><li><a  href="http://www.sigmawebtechnologies.com/news/were-a-favorite-place-on-google/" title="We&#8217;re a Favorite Place on Google">We&#8217;re a Favorite Place on Google</a></li><li><a  href="http://www.sigmawebtechnologies.com/code/how-many-months-between-two-dates/" title="How many months between two dates?">How many months between two dates?</a></li><li><a  href="http://www.sigmawebtechnologies.com/news/horizontal-attention-leans-left/" title="Horizontal Attention Leans Left">Horizontal Attention Leans Left</a></li><li><a  href="http://www.sigmawebtechnologies.com/soho/writing-articles-for-search-engines-and-people/" title="Writing Articles for Search Engines and People">Writing Articles for Search Engines and People</a></li><li><a  href="http://www.sigmawebtechnologies.com/local-marketing/how-to-make-your-email-campaigns-more-social/" title="How to Make Your Email Campaigns More Social">How to Make Your Email Campaigns More Social</a></li></ul><img src="http://feeds.feedburner.com/~r/SigmaWebTechnologies/~4/bvU3tRUqrWI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sigmawebtechnologies.com/wordpress/using-iframes-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sigmawebtechnologies.com/wordpress/using-iframes-with-wordpress/</feedburner:origLink></item>
		<item>
		<title>Why You Don’t Want to Use Online Tools to Manage Your Passwords</title>
		<link>http://feedproxy.google.com/~r/SigmaWebTechnologies/~3/vwLQXnHyN2c/</link>
		<comments>http://www.sigmawebtechnologies.com/news/why-you-dont-want-to-use-online-tools-to-manage-your-passwords/#comments</comments>
		<pubDate>Fri, 06 May 2011 18:41:13 +0000</pubDate>
		<dc:creator>Larry Levenson</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[lastpass]]></category>
		<category><![CDATA[password management]]></category>

		<guid isPermaLink="false">http://www.sigmawebtechnologies.com/?p=827</guid>
		<description><![CDATA[<br />]]></description>
			<content:encoded><![CDATA[<div style="float:right; width: 300px; text-align: center"><img class="size-medium wp-image-828" title="Who safeguards the safe?" src="http://www.sigmawebtechnologies.com/wp-content/uploads/2011/05/broken-lock-300x300.png" alt="" width="300" height="300" /><br /><a  href="http://www.flickr.com/photos/subcircle/500995147" 0="target="_blank">Courtesy of Subcircle Creative</a></div>
<p><em>May 5 (Bloomberg) &#8212; LastPass, a company that offers to safeguard and simplify managing subscribers&#8217; online passwords, said hackers may have broken into its database and stolen information on as many as 1.25 million accounts.</em></p>
<p><em>The company&#8217;s service allows customers to use one password with enhanced security features to access multiple password- protected accounts for online banking, Internet shopping, and other secure sites. Jeremy Conway, a researcher for the Portsmouth, New Hampshire, based cyber-security company NitroSecurity Inc., said the intrusion risks giving the hackers access to millions of different bank accounts, e-commerce sites and sensitive corporate networks.</em></p>
<h3>Almost funny<em><br />
</em></h3>
<p>This would almost be funny. . . unless you&#8217;re one of the 1.25 million (so far) whose data was stolen. Image someone having access to over a million usernames and passwords to things like corporate bank accounts, ecommerce sites, and internal corporate networks. This is seriously NOT GOOD!</p>
<p>Yes, you can (and probably should) question LastPass&#8217; network security, and what their technology team was thinking, but then a thinking person would ask, &#8220;Why store this sensitive information (usernames and passwords) online?&#8221;</p>
<p><img class="alignleft size-thumbnail wp-image-829" title="password2" src="http://www.sigmawebtechnologies.com/wp-content/uploads/2011/05/password2-150x97.gif" alt="" width="150" height="97" />&#8220;Why?&#8221; indeed! This type of information should NOT be stored online. All of us struggle with usernames and passwords, all of us wonder how managing this mass of login data could be made easier. .. but folks, let me tell you. . . saving it online is NOT the solution!</p>
<h3>What&#8217;s &#8220;online&#8221; and what&#8217;s not?</h3>
<p>Let&#8217;s think about how most of us &#8220;store&#8221; our passwords to online resources. Mostly, we depend on our web browser to remember our usernames and passwords. The latest versions of Internet Explorer, FireFox and Chrome are all very good at this. In fact, when we return to a website that requires a username and password, these browsers insert that information for us with little or no prompting. Excellent! My online life is so much easier because of this!</p>
<p>So are these web browsers storing that information online? No. Web browsers are software that runs on your computer. They stored password information locally, on your computer. So merely using your web browser to enter this information for you is not much of a security risk.</p>
<p>EXCEPT. . . if you are backing up your computer to an online storage site. Using online storage is smart as a backup strategy, but you need to MAKE SURE that your data is encrypted before it leaves your computer. The good online backup tools, like <a  title="Carbonite online backup" href="http://sigmaweb.carbonite.com" target="_blank">Carbonite</a>, take care of this for you. Make sure that any backup you do to an online storage facility encrypts the data before it leaves your computer!</p>
<h3>Should I use a password management tool?</h3>
<p>Some people use a local (lives on your own computer or USB key) password management tool like <a  title="KeePass" href="http://keepass.info" target="_blank">KeePass</a> (there are several tools like this). The idea is that there is a small table listing the website, your username, and your password. This software is locked with a &#8220;master password&#8221;. All you have to do is remember your master password, and you can have access to all your usernames and passwords.</p>
<p>This seems like a reasonable solution, and is certainly better that putting usernames on sticky notes and sticking them on your monitor! If this sort of solution sounds like something you could use, explore the various password management tools and see which one you like. But make SURE your data stays on your computer and is NOT backed up to the management tool&#8217;s website!</p>
<h3>What if I Use LastPass?</h3>
<p>If you use LastPass. . . well, you have my condolences. Start with a careful read of their <a  href="http://blog.lastpass.com/2011/05/lastpass-security-notification.html" target="_blank">security notification</a>. Then go to your critical websites (banking, ecommerce) and immediately change your password. Use a <a  href="http://www.makeuseof.com/tag/how-to-create-strong-password-that-you-can-remember-easily/" target="_blank">strong password</a>. Use a <a  href="http://strongpasswordgenerator.com/" target="_blank">password generator</a> if you want. Then close your account with them. Call your insurance company and make sure you have identity theft coverage. It won&#8217;t solve all the problems if your identity is stolen, but it will at least help with the related expense.</p>
<p>If you feel like you need a password management tool, <a  title="Google: password management" href="http://bit.ly/kXF3Sm" target="_blank">checkout some of the many tools available</a> and see which one might fit your needs the best.</p>
<h2  class="related_post_title">Random Posts</h2><ul class="related_post"><li><a  href="http://www.sigmawebtechnologies.com/social-media/use-twitter-search/" title="Use Twitter Search">Use Twitter Search</a></li><li><a  href="http://www.sigmawebtechnologies.com/news/google-hits-on-the-caffeine/" title="Google hits on the Caffeine!">Google hits on the Caffeine!</a></li><li><a  href="http://www.sigmawebtechnologies.com/tools/google-search-advanced-operators-reference/" title="Google Search Advanced Operators Reference">Google Search Advanced Operators Reference</a></li><li><a  href="http://www.sigmawebtechnologies.com/social-media/5-ways-social-media-is-changing-our-daily-lives/" title="5 Ways Social Media is Changing our Daily Lives">5 Ways Social Media is Changing our Daily Lives</a></li><li><a  href="http://www.sigmawebtechnologies.com/code/how-to-automatically-notify-subscribers-of-new-posts/" title="How to Automatically Notify Subscribers of New Posts">How to Automatically Notify Subscribers of New Posts</a></li></ul><img src="http://feeds.feedburner.com/~r/SigmaWebTechnologies/~4/vwLQXnHyN2c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sigmawebtechnologies.com/news/why-you-dont-want-to-use-online-tools-to-manage-your-passwords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sigmawebtechnologies.com/news/why-you-dont-want-to-use-online-tools-to-manage-your-passwords/</feedburner:origLink></item>
		<item>
		<title>Online Scams Grow in the Wake of Osama Bin Laden’s Death</title>
		<link>http://feedproxy.google.com/~r/SigmaWebTechnologies/~3/8tu5QReyh0g/</link>
		<comments>http://www.sigmawebtechnologies.com/news/online-scams-grow-in-the-wake-of-osama-bin-laden%e2%80%99s-death/#comments</comments>
		<pubDate>Wed, 04 May 2011 19:49:40 +0000</pubDate>
		<dc:creator>Larry Levenson</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.sigmawebtechnologies.com/?p=824</guid>
		<description><![CDATA[<p>(Prescott, AZ- May 4, 2011) In the aftermath of the death of Osama Bin Laden this past weekend, Better Business Bureau is warning consumers to watch out for a slew of cyber-scams that have popped up in the past few days. </p> <p>According to Kaspersky Labs, an Internet security firm, malicious Web sites and links [...]]]></description>
			<content:encoded><![CDATA[<p><em>(Prescott, AZ- May 4, 2011)</em> In the aftermath of the death of Osama  Bin Laden this past weekend, Better Business Bureau is warning consumers  to watch out for a slew of cyber-scams that have popped up in the past  few days.  </p>
<p><img src="http://www.sigmawebtechnologies.com/wp-content/uploads/2011/05/prescott-valley.jpg" alt="" title="alert from prescott valley" width="180" height="125" class="alignright size-full wp-image-825" />According to Kaspersky Labs, an Internet security firm, malicious  Web sites and links have been inundating Google Images search, Facebook,  and other social media sites.  </p>
<p>On Facebook, a fake video claiming to show the death of Bin Laden  prompts users to input a malicious URL into their browsers, which then  infects their computer with a virus. Kaspersky also reports that other  Facebook scams lure victims to malicious Facebook Pages with promises of  free airplane tickets, and other &#8220;free&#8221; offers to &#8220;celebrate Bin  Laden’s death.&#8221; </p>
<p>Consumers should also be very wary of links to Bin Laden related Web  sites that they find on Twitter, or any link with a URL that leads to  an unfamiliar webpage. Often these links will lead consumers to Web  sites with viruses, or forms that encourage consumers to enter personal  information, which can be used to steal their identity, or for phishing  scams. </p>
<h3>BBB Tips</h3>
<p>Be mindful about clicking on links that purport to show information  that’s not widely available from respected news sources. In the case of  Bin Laden, no photos or videos related to his death have been released.  Be extremely skeptical of links that say otherwise.  </p>
<p>Be wary of free offers “celebrating” any sort of occasion,  especially if the offer comes from a company or Web site you haven’t  heard of before. Often times all it takes for a scammer to infect your  computer with a virus is clicking on one bad link.  </p>
<p>For more information on how consumers can protect themselves against scams, or to find reputable businesses, visit <a  href="http://arizonabbb.org/" target="_blank">arizonabbb.org</a>.</p>
<p>For full details, go to <a  href="https://local.nixle.com/alert/4686934/?sub_id=144005" target="_blank">https://local.nixle.com/alert/4686934/?sub_id=144005</a>.</p>
<p><strong>Contact Information: </strong> <br />Brandon Bonney <br />Town of Prescott Valley, Support Services Division     <a  href="mailto:bbonney@pvaz.net" target="_blank">bbonney@pvaz.net</a></p>
<h2  class="related_post_title">Random Posts</h2><ul class="related_post"><li><a  href="http://www.sigmawebtechnologies.com/social-media/how-often-should-you-post-on-your-facebook-wall/" title="How Often Should You Post on Your Facebook Wall?">How Often Should You Post on Your Facebook Wall?</a></li><li><a  href="http://www.sigmawebtechnologies.com/code/add-a-login-form-anywhere-in-your-wordpress-theme/" title="Add a Login Form Anywhere In Your Wordpress Theme">Add a Login Form Anywhere In Your Wordpress Theme</a></li><li><a  href="http://www.sigmawebtechnologies.com/code/css-fixed-background-image/" title="CSS: Fixed background image">CSS: Fixed background image</a></li><li><a  href="http://www.sigmawebtechnologies.com/news/were-a-favorite-place-on-google/" title="We&#8217;re a Favorite Place on Google">We&#8217;re a Favorite Place on Google</a></li><li><a  href="http://www.sigmawebtechnologies.com/tools/how-to-use-googles-priority-inbox-to-save-time/" title="How to Use Google&#8217;s Priority Inbox to Save Time">How to Use Google&#8217;s Priority Inbox to Save Time</a></li></ul><img src="http://feeds.feedburner.com/~r/SigmaWebTechnologies/~4/8tu5QReyh0g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.sigmawebtechnologies.com/news/online-scams-grow-in-the-wake-of-osama-bin-laden%e2%80%99s-death/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.sigmawebtechnologies.com/news/online-scams-grow-in-the-wake-of-osama-bin-laden%e2%80%99s-death/</feedburner:origLink></item>
	</channel>
</rss>

