<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Lichtman Consulting&#187; Lichtman Consulting -</title>
	<atom:link href="http://lichtman.ca/feed" rel="self" type="application/rss+xml" />
	<link>http://lichtman.ca</link>
	<description>Your Strategic Development Partner</description>
	<lastBuildDate>Mon, 08 Feb 2010 22:43:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to add a custom login box into your Drupal theme</title>
		<link>http://lichtman.ca/software-development/drupal-software-development/how-to-add-a-custom-login-box-into-your-drupal-theme</link>
		<comments>http://lichtman.ca/software-development/drupal-software-development/how-to-add-a-custom-login-box-into-your-drupal-theme#comments</comments>
		<pubDate>Mon, 08 Feb 2010 22:43:25 +0000</pubDate>
		<dc:creator>Jeremy Lichtman</dc:creator>
				<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://lichtman.ca/?p=380</guid>
		<description><![CDATA[This is a guest post by Nathan, our resident Drupal expert. With luck, it will be the first of a series of posts with a more technical nature than we usually write about here. You can read more of Nathan&#8217;s work here: http://bomshteyn.com.
We are starting a new series called Drupal hacks and solutions. This is [...]]]></description>
			<content:encoded><![CDATA[<p><!-- google_ad_section_start --><em>This is a guest post by Nathan, our resident Drupal expert. With luck, it will be the first of a series of posts with a more technical nature than we usually write about here. You can read more of Nathan&#8217;s work here: <a href="http://bomshteyn.com">http://bomshteyn.com</a>.</em></p>
<p>We are starting a new series called Drupal hacks and solutions. This is going to be a useful collection of how-to&#8217;s and code examples, based on our experiences.</p>
<p>I am sure every Drupal developer out there has his own ways of styling Drupal (which as <a href="http://bomshteyn.com/2010/01/03/should-you-use-wordpress-or-drupal/">http://bomshteyn.com/2010/01/03/should-you-use-wordpress-or-drupal/</a> discussed is not always an easy task), we are just going to write up the cases that we encountered and solutions we used.</p>
<p>As always there is an easy way to do something and a proper Drupal way of doing the exact same thing. Whenever possible we try to do it the Drupal way, and would advise you to do the same, but i have to admit thats not always the case, and i would sometimes insert a SQL query into a template instead of properly using a drupal function of some sort.</p>
<p>It&#8217;s almost a year now since I started working on our first Drupal site; over time I have learned, and continue to learn, new &#8220;proper&#8221; ways of programming in Drupal and working &#8220;with it&#8221; versus &#8220;around it&#8221;.</p>
<p>As you work on a project you have a problem and find a solution, but by the time you get around to the next project and encounter a similar or even same problem (the latest project we were working on was approximately 400 of programming hours) you no longer remember how you solved it last time. In theory you could just open the last project&#8217;s code and find the solution, but sometimes its easier said then done, first you have to remember in which project you had this issue and second since an issue in Drupal could be fixed on so many levels (core, theme, modules&#8230;.), where to look becomes an issue by-itself.</p>
<p>So here we are faced with a case of our own that needs a solution.</p>
<p>Our first urge was to create an internal wiki where we would write down this type of stuff for future use &#8211; knowing first hand how hard it is to find an up-to-date solution to some very common problems in theming Drupal. Plus the fact that we always wanted to give back to the open source community of Drupal. We decided to do it as a blog category on our site so that it would be searchable &#8211; not just internally but by the whole ever growing Drupal community. As a starting point we will give you an example post, so that you know what to expect.</p>
<p><strong>How to add a custom login box into your Drupal theme</strong></p>
<p>You will probably want to show this only for non logged in users so here is an example of the code you would use:</p>
<p>&lt;?php<br />
if($logged_in){?&gt;<br />
// put some code here<br />
&lt;?php } else {?&gt;<br />
&lt;?php  global $user; ?&gt;<br />
&lt;form action=&#8221;&lt;?php print $front_page.&#8217;user/login/?&#8217;.drupal_get_destination();?&gt;&#8221; method=&#8221;post&#8221; id=&#8221;user-login&#8221;&gt;<br />
&lt;label for=&#8221;edit-name&#8221;&gt;username&lt;/label&gt;<br />
&lt;input type=&#8221;text&#8221; name=&#8221;name&#8221; id=&#8221;edit-name&#8221; value=&#8221;" tabindex=&#8221;1&#8243;/&gt;<br />
&lt;label for=&#8221;edit-pass&#8221;&gt;password&lt;/label&gt;<br />
&lt;input type=&#8221;password&#8221; name=&#8221;pass&#8221; id=&#8221;edit-pass&#8221; tabindex=&#8221;2&#8243;/&gt;<br />
&lt;input type=&#8221;hidden&#8221; name=&#8221;form_id&#8221; id=&#8221;edit-user-login&#8221; value=&#8221;user_login&#8221; /&gt;<br />
&lt;input type=&#8221;submit&#8221; name=&#8221;op&#8221; id=&#8221;edit-submit&#8221; tabindex=&#8221;3&#8243; value=&#8221;Submit&#8221; alt=&#8221;Submit&#8221; /&gt;<br />
&lt;p&gt;Forgot &lt;a href=&#8221;/user/password&#8221;&gt;password&lt;/a&gt;? &amp;nbsp; Or &lt;a href=&#8221;/user/register&#8221;&gt;Create New Account&lt;/a&gt;&lt;/p&gt;<br />
&lt;/form&gt;<br />
&lt;?php }?&gt;<!-- google_ad_section_end --></p>



If you like this article, please share it with others:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flichtman.ca%2Fsoftware-development%2Fdrupal-software-development%2Fhow-to-add-a-custom-login-box-into-your-drupal-theme&amp;title=How%20to%20add%20a%20custom%20login%20box%20into%20your%20Drupal%20theme&amp;bodytext=This%20is%20a%20guest%20post%20by%20Nathan%2C%20our%20resident%20Drupal%20expert.%20With%20luck%2C%20it%20will%20be%20the%20first%20of%20a%20series%20of%20posts%20with%20a%20more%20technical%20nature%20than%20we%20usually%20write%20about%20here.%20You%20can%20read%20more%20of%20Nathan%27s%20work%20here%3A%20http%3A%2F%2Fbomshteyn.com.%0D%0A%0D%0AWe%20are%20s" title="Digg"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Flichtman.ca%2Fsoftware-development%2Fdrupal-software-development%2Fhow-to-add-a-custom-login-box-into-your-drupal-theme&amp;title=How%20to%20add%20a%20custom%20login%20box%20into%20your%20Drupal%20theme&amp;notes=This%20is%20a%20guest%20post%20by%20Nathan%2C%20our%20resident%20Drupal%20expert.%20With%20luck%2C%20it%20will%20be%20the%20first%20of%20a%20series%20of%20posts%20with%20a%20more%20technical%20nature%20than%20we%20usually%20write%20about%20here.%20You%20can%20read%20more%20of%20Nathan%27s%20work%20here%3A%20http%3A%2F%2Fbomshteyn.com.%0D%0A%0D%0AWe%20are%20s" title="del.icio.us"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Flichtman.ca%2Fsoftware-development%2Fdrupal-software-development%2Fhow-to-add-a-custom-login-box-into-your-drupal-theme&amp;t=How%20to%20add%20a%20custom%20login%20box%20into%20your%20Drupal%20theme" title="Facebook"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Flichtman.ca%2Fsoftware-development%2Fdrupal-software-development%2Fhow-to-add-a-custom-login-box-into-your-drupal-theme&amp;title=How%20to%20add%20a%20custom%20login%20box%20into%20your%20Drupal%20theme&amp;annotation=This%20is%20a%20guest%20post%20by%20Nathan%2C%20our%20resident%20Drupal%20expert.%20With%20luck%2C%20it%20will%20be%20the%20first%20of%20a%20series%20of%20posts%20with%20a%20more%20technical%20nature%20than%20we%20usually%20write%20about%20here.%20You%20can%20read%20more%20of%20Nathan%27s%20work%20here%3A%20http%3A%2F%2Fbomshteyn.com.%0D%0A%0D%0AWe%20are%20s" title="Google Bookmarks"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flichtman.ca%2Fsoftware-development%2Fdrupal-software-development%2Fhow-to-add-a-custom-login-box-into-your-drupal-theme&amp;title=How%20to%20add%20a%20custom%20login%20box%20into%20your%20Drupal%20theme&amp;source=Lichtman+Consulting+Your+Strategic+Development+Partner&amp;summary=This%20is%20a%20guest%20post%20by%20Nathan%2C%20our%20resident%20Drupal%20expert.%20With%20luck%2C%20it%20will%20be%20the%20first%20of%20a%20series%20of%20posts%20with%20a%20more%20technical%20nature%20than%20we%20usually%20write%20about%20here.%20You%20can%20read%20more%20of%20Nathan%27s%20work%20here%3A%20http%3A%2F%2Fbomshteyn.com.%0D%0A%0D%0AWe%20are%20s" title="LinkedIn"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Flichtman.ca%2Fsoftware-development%2Fdrupal-software-development%2Fhow-to-add-a-custom-login-box-into-your-drupal-theme&amp;title=How%20to%20add%20a%20custom%20login%20box%20into%20your%20Drupal%20theme" title="Reddit"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://slashdot.org/bookmark.pl?title=How%20to%20add%20a%20custom%20login%20box%20into%20your%20Drupal%20theme&amp;url=http%3A%2F%2Flichtman.ca%2Fsoftware-development%2Fdrupal-software-development%2Fhow-to-add-a-custom-login-box-into-your-drupal-theme" title="Slashdot"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flichtman.ca%2Fsoftware-development%2Fdrupal-software-development%2Fhow-to-add-a-custom-login-box-into-your-drupal-theme&amp;title=How%20to%20add%20a%20custom%20login%20box%20into%20your%20Drupal%20theme" title="StumbleUpon"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Flichtman.ca%2Fsoftware-development%2Fdrupal-software-development%2Fhow-to-add-a-custom-login-box-into-your-drupal-theme" title="Technorati"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Flichtman.ca%2Fsoftware-development%2Fdrupal-software-development%2Fhow-to-add-a-custom-login-box-into-your-drupal-theme&amp;t=How%20to%20add%20a%20custom%20login%20box%20into%20your%20Drupal%20theme" title="MySpace"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://lichtman.ca/software-development/drupal-software-development/how-to-add-a-custom-login-box-into-your-drupal-theme/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Business Lessons From Farmville &#8211; Part 3</title>
		<link>http://lichtman.ca/articles/business-lessons-from-farmville-part-3</link>
		<comments>http://lichtman.ca/articles/business-lessons-from-farmville-part-3#comments</comments>
		<pubDate>Mon, 18 Jan 2010 20:32:20 +0000</pubDate>
		<dc:creator>Jeremy Lichtman</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://lichtman.ca/?p=373</guid>
		<description><![CDATA[Continued from Part 2 &#8211; http://lichtman.ca/articles/business-lessons-from-farmville-%E2%80%93-part-2.  In Part 2 we discussed the publicity and communal aspects of building a successful viral application, with examples from Zynga&#8217;s Farmville game.
3. Manage Scalability
Like all rapidly growing applications, Farmville has scalability issues – as of this writing, they are working on a serious issue pertaining to how the application [...]]]></description>
			<content:encoded><![CDATA[<p><!-- google_ad_section_start --><em>Continued from Part 2 &#8211; <a href="http://lichtman.ca/articles/business-lessons-from-farmville-%E2%80%93-part-2">http://lichtman.ca/articles/business-lessons-from-farmville-%E2%80%93-part-2</a>.  In Part 2 we discussed the publicity and communal aspects of building a successful viral application, with examples from Zynga&#8217;s Farmville game.</em></p>
<h2>3. Manage Scalability</h2>
<p>Like all rapidly growing applications, Farmville has scalability issues – as of this writing, they are working on a serious issue pertaining to how the application loads.</p>
<p>Any rapidly growing application has a tendency to run up against physical limits to both the design of the application and also the underlying hardware on which it is running. The result is that at each order of magnitude of growth in traffic, significant work may be required in order to redesign the application. In the meantime, it isn&#8217;t uncommon for these kinds of apps to have outages, extreme slowness, or bizarre and unscripted behaviour.</p>
<p>What Zynga has done is to appropriately deal with user expectations: firstly be explaining what the situation is, and secondly by compensating users (in this case via free game items) for the irritation. It is surprising how many companies will try to either hide or deny outages due to scalability issues.</p>
<h2>4. Make Money</h2>
<p>Making money out of a busy website or application is harder than it may seem.</p>
<p>The “throw something up on the web and put ads on it” model hasn&#8217;t worked well in a number of years (yes, I also know a few people still successfully doing this – just try duplicating it from scratch now).</p>
<p>This means that a company that is successfully making money online is worth analyzing in more detail. I don&#8217;t know how much Zynga is making (they&#8217;re a private company), but from what I&#8217;ve read they&#8217;re profitable.</p>
<p>Say what you want about the morality of selling virtual items via micropayments, the model appears to work well &#8211; at least for the most addictive of online games.</p>
<p>Farmville has two types of internal &#8220;currency&#8221; for purchasing items in the game:</p>
<p>One type of currency is easily earned within the game, and can be used to purchase the most common items.</p>
<p>The &#8220;premium&#8221; currency &#8211; which is usually obtained through a micropayment (although small quantities of it now circulate within the game as well) &#8211; can be used to purchase a variety of premium items that either make game play easier, or convey some form of status.</p>
<p>This model allows people to play the game without having to buy anything, while allowing the most enthusiastic players to essentially subsidize everyone else.</p>
<p>This &#8220;freemium&#8221; business model works at a similar psychological level to the old &#8220;shareware&#8221; software licenses &#8211; people can use it for free, but also feel like there is some level of obligation to pay, based on their own perceived value of the app.</p>
<h2>5. Multiply</h2>
<p>On a fickle internet, success may be fleeting.</p>
<p>If a website attracts significant traffic – and money – they need to immediately start planning the next step.</p>
<p>It appears that Zynga realizes that there may be inherent limits to how big a specific web game can get, and that their approach also includes the notion of continually duplicating their success with new games – particularly using cross-pollination approaches such as using familiar characters.</p>
<p>Duplicating a successful methodology over and over can be a useful means of sustaining viral success – particularly if one is skilled at redirecting existing “customers” to the next big thing. By building all of their games around a standard platform &#8211; in this case Facebook &#8211; the development time to create new apps is reduced. There is also a consistant user interface between the apps, allowing for faster user adoption.</p>
<p>If you play Farmville, you will quickly notice that Zynga has posted advertising at the top of each page for their other games. The objective is to &#8220;cross-pollinate&#8221; the user list from their various games (my understanding is that they are now running a large number of games on Facebook and other platforms).</p>
<p>One trick &#8211; which they don&#8217;t seem to be using right now &#8211; would be to allow users to utilize the same game currency across all of the games on their platform. I&#8217;ve seen this used in practice elsewhere.</p>
<p>Two last things that they appear to be doing well: a)  Zynga developed certain iconic characters for Farmville (i.e. the cartoon animals), and they have used these animals (and similar characters) in other apps that are directly marketed to the users of Farmville. In addition, b) they rapidly create competing products whenever another development team builds a game that could move into their marketspace &#8211; and they make an effort to improve on the original. The second company into a market can do very nicely indeed &#8211; just think of the Beta vs VHS wars.</p>
<p>In the final part of this article, I will wrap things up and provide some other examples from other businesses. To be continued&#8230;<!-- google_ad_section_end --></p>



If you like this article, please share it with others:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-3&amp;title=Business%20Lessons%20From%20Farmville%20-%20Part%203&amp;bodytext=Continued%20from%20Part%202%20-%20http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-%25E2%2580%2593-part-2.%C2%A0%20In%20Part%202%20we%20discussed%20the%20publicity%20and%20communal%20aspects%20of%20building%20a%20successful%20viral%20application%2C%20with%20examples%20from%20Zynga%27s%20Farmville%20game.%0D%0A" title="Digg"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-3&amp;title=Business%20Lessons%20From%20Farmville%20-%20Part%203&amp;notes=Continued%20from%20Part%202%20-%20http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-%25E2%2580%2593-part-2.%C2%A0%20In%20Part%202%20we%20discussed%20the%20publicity%20and%20communal%20aspects%20of%20building%20a%20successful%20viral%20application%2C%20with%20examples%20from%20Zynga%27s%20Farmville%20game.%0D%0A" title="del.icio.us"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-3&amp;t=Business%20Lessons%20From%20Farmville%20-%20Part%203" title="Facebook"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-3&amp;title=Business%20Lessons%20From%20Farmville%20-%20Part%203&amp;annotation=Continued%20from%20Part%202%20-%20http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-%25E2%2580%2593-part-2.%C2%A0%20In%20Part%202%20we%20discussed%20the%20publicity%20and%20communal%20aspects%20of%20building%20a%20successful%20viral%20application%2C%20with%20examples%20from%20Zynga%27s%20Farmville%20game.%0D%0A" title="Google Bookmarks"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-3&amp;title=Business%20Lessons%20From%20Farmville%20-%20Part%203&amp;source=Lichtman+Consulting+Your+Strategic+Development+Partner&amp;summary=Continued%20from%20Part%202%20-%20http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-%25E2%2580%2593-part-2.%C2%A0%20In%20Part%202%20we%20discussed%20the%20publicity%20and%20communal%20aspects%20of%20building%20a%20successful%20viral%20application%2C%20with%20examples%20from%20Zynga%27s%20Farmville%20game.%0D%0A" title="LinkedIn"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-3&amp;title=Business%20Lessons%20From%20Farmville%20-%20Part%203" title="Reddit"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://slashdot.org/bookmark.pl?title=Business%20Lessons%20From%20Farmville%20-%20Part%203&amp;url=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-3" title="Slashdot"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-3&amp;title=Business%20Lessons%20From%20Farmville%20-%20Part%203" title="StumbleUpon"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-3" title="Technorati"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-3&amp;t=Business%20Lessons%20From%20Farmville%20-%20Part%203" title="MySpace"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://lichtman.ca/articles/business-lessons-from-farmville-part-3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Business Lessons From Farmville – Part 2</title>
		<link>http://lichtman.ca/articles/business-lessons-from-farmville-%e2%80%93-part-2</link>
		<comments>http://lichtman.ca/articles/business-lessons-from-farmville-%e2%80%93-part-2#comments</comments>
		<pubDate>Fri, 15 Jan 2010 02:10:43 +0000</pubDate>
		<dc:creator>Jeremy Lichtman</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Farmville]]></category>
		<category><![CDATA[Game]]></category>

		<guid isPermaLink="false">http://lichtman.ca/?p=371</guid>
		<description><![CDATA[Continued from Part 1 &#8211; http://lichtman.ca/articles/business-lessons-from-farmville-part-1. In Part 1 we discussed the idea that there are business lessons that can be learned from viral games such as Zynga&#8217;s Farmville.
2. Let Everybody Know
If you&#8217;re on Facebook, you are familiar with the extent to which Farmville pesters people who aren&#8217;t already playing it. I had actually blocked [...]]]></description>
			<content:encoded><![CDATA[<p><!-- google_ad_section_start --><em>Continued from Part 1 &#8211; <a href="http://lichtman.ca/articles/business-lessons-from-farmville-part-1">http://lichtman.ca/articles/business-lessons-from-farmville-part-1</a>. In Part 1 we discussed the idea that there are business lessons that can be learned from viral games such as Zynga&#8217;s Farmville.</em></p>
<h2>2. Let Everybody Know</h2>
<p>If you&#8217;re on Facebook, you are familiar with the extent to which Farmville pesters people who aren&#8217;t already playing it. I had actually blocked the application at one point, and only logged in after reading about how it had attracted 70 million users on a mainstream press website &#8211; which actually proves the idea that in advertising, repeating your message ad nauseum actually does pay off. Eventually.</p>
<p>What Zynga have done with Farmville is create a system that provides an immense number of opportunities for people who are already using the game to gain by telling other people about it. In addition to bugging people who aren&#8217;t already playing, it also provides &#8211; as mentioned above &#8211; innumerable ways of reminding people who are already playing it about its existence. This can be irritating, but it is clearly an exceedingly effective methodology for growing traffic.</p>
<p>A small number of the methods that they use to spread the news include:</p>
<ul>
<li>Constantly requesting users to post announcements to their &#8220;streams&#8221; &#8211; every time a user achieves a milestone in the game &#8211; no matter how small &#8211; Farmville asks the user if they want to place a post on their stream (the list of updates shared between &#8220;friends&#8221; on Facebook). These announcements are essentially sales referrals &#8211; if somebody not playing the game sees hundreds of such announcements from their friends, possibly it may pique their interest.</li>
<li>Many posts from Farmville contain image &#8220;snapshots&#8221; of what a user&#8217;s farm looks like. These follow the notion of &#8220;show me, don&#8217;t tell me&#8221; &#8211; a picture is worth a whole lot of verbiage.</li>
</ul>
<h2>3. Build a Community</h2>
<p>As mentioned briefly in Part 1, the notion of a community is very powerful in social networking applications. If the people that you are friendly with are all involved in a particular community, not only are you more likely to join, but you&#8217;re also much less likely to leave. Real world examples include religious institutions, multi-level marketing organizations, social clubs, charities etc etc. Many such organizations fulfill a social role in addition to any other role they may play, and for their participants this can be a powerful motivator.</p>
<p>The vast majority of online social applications pay lip service to the communal role &#8211; but in actuality they provide little incentive (or supportive functionality for that matter) for people to actually interact with each other.</p>
<p>One of the key reasons why Farmville has been so successful is that the communal aspect has been so well thought out &#8211; not only are there endless ways for people to interact in the game &#8211; it is difficult to progress without doing so. A few examples (and there are probably dozens of others) follow:</p>
<ul>
<li>Neighbours &#8211; the game plays up the folksy notion of farmers chatting over a picket fence. Members can add other players as virtual neighbours in the game, and thereafter the game visually renders the neighbouring farms next to the player&#8217;s farm. Players are encouraged to visit their neighbour&#8217;s farms, and to participate in building up those farms via simple tasks (fertilizing their crops), for which they score points.</li>
<li>Many items in the game cannot be purchased from the &#8220;market&#8221; directly &#8211; they can only be given as gifts. Players are encouraged to give such gifts to their neighbours, and the receipt of such items triggers a polite request to send something back.</li>
<li>An interesting recent feature &#8211; barn raising. A player wishing to build a &#8220;barn&#8221; with which to store items can pay for the barn directly &#8211; or get it for free if ten of their neighbours are willing to help them. The process involves a large amount of voluntary messaging being posted to streams &#8211; and people&#8217;s in-boxes.</li>
</ul>
<p>[To be continued in Part 3...]<!-- google_ad_section_end --></p>



If you like this article, please share it with others:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-%25e2%2580%2593-part-2&amp;title=Business%20Lessons%20From%20Farmville%20%E2%80%93%20Part%202&amp;bodytext=Continued%20from%20Part%201%20-%20http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-1.%20In%20Part%201%20we%20discussed%20the%20idea%20that%20there%20are%20business%20lessons%20that%20can%20be%20learned%20from%20viral%20games%20such%20as%20Zynga%27s%20Farmville.%0D%0A2.%20Let%20Everybody%20Know%0D%0AIf%20you" title="Digg"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-%25e2%2580%2593-part-2&amp;title=Business%20Lessons%20From%20Farmville%20%E2%80%93%20Part%202&amp;notes=Continued%20from%20Part%201%20-%20http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-1.%20In%20Part%201%20we%20discussed%20the%20idea%20that%20there%20are%20business%20lessons%20that%20can%20be%20learned%20from%20viral%20games%20such%20as%20Zynga%27s%20Farmville.%0D%0A2.%20Let%20Everybody%20Know%0D%0AIf%20you" title="del.icio.us"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-%25e2%2580%2593-part-2&amp;t=Business%20Lessons%20From%20Farmville%20%E2%80%93%20Part%202" title="Facebook"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-%25e2%2580%2593-part-2&amp;title=Business%20Lessons%20From%20Farmville%20%E2%80%93%20Part%202&amp;annotation=Continued%20from%20Part%201%20-%20http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-1.%20In%20Part%201%20we%20discussed%20the%20idea%20that%20there%20are%20business%20lessons%20that%20can%20be%20learned%20from%20viral%20games%20such%20as%20Zynga%27s%20Farmville.%0D%0A2.%20Let%20Everybody%20Know%0D%0AIf%20you" title="Google Bookmarks"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-%25e2%2580%2593-part-2&amp;title=Business%20Lessons%20From%20Farmville%20%E2%80%93%20Part%202&amp;source=Lichtman+Consulting+Your+Strategic+Development+Partner&amp;summary=Continued%20from%20Part%201%20-%20http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-1.%20In%20Part%201%20we%20discussed%20the%20idea%20that%20there%20are%20business%20lessons%20that%20can%20be%20learned%20from%20viral%20games%20such%20as%20Zynga%27s%20Farmville.%0D%0A2.%20Let%20Everybody%20Know%0D%0AIf%20you" title="LinkedIn"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-%25e2%2580%2593-part-2&amp;title=Business%20Lessons%20From%20Farmville%20%E2%80%93%20Part%202" title="Reddit"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://slashdot.org/bookmark.pl?title=Business%20Lessons%20From%20Farmville%20%E2%80%93%20Part%202&amp;url=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-%25e2%2580%2593-part-2" title="Slashdot"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-%25e2%2580%2593-part-2&amp;title=Business%20Lessons%20From%20Farmville%20%E2%80%93%20Part%202" title="StumbleUpon"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-%25e2%2580%2593-part-2" title="Technorati"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-%25e2%2580%2593-part-2&amp;t=Business%20Lessons%20From%20Farmville%20%E2%80%93%20Part%202" title="MySpace"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://lichtman.ca/articles/business-lessons-from-farmville-%e2%80%93-part-2/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Business Lessons From Farmville &#8211; Part 1</title>
		<link>http://lichtman.ca/articles/business-lessons-from-farmville-part-1</link>
		<comments>http://lichtman.ca/articles/business-lessons-from-farmville-part-1#comments</comments>
		<pubDate>Sun, 10 Jan 2010 20:25:17 +0000</pubDate>
		<dc:creator>Jeremy Lichtman</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Farmville]]></category>
		<category><![CDATA[Game]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Zynga]]></category>

		<guid isPermaLink="false">http://lichtman.ca/?p=369</guid>
		<description><![CDATA[




Image by anshu_si via Flickr



I&#8217;m not generally recommending that you drop everything and play Farmville, but there are some interesting business lessons to be learned from the game. Possibly this blog entry will save you massive amounts of time &#8211; i.e. you can simply read on, rather than playing. 
If you&#8217;re on Facebook, you&#8217;ve probably [...]]]></description>
			<content:encoded><![CDATA[<p><!-- google_ad_section_start -->
<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 250px;">
<dt class="wp-caption-dt"><a href="http://www.flickr.com/photos/18639319@N00/4092817962"><img title="Day 312/365 - 8 Nov - FarmVille" src="http://farm3.static.flickr.com/2749/4092817962_ca0218ca17_m.jpg" alt="Day 312/365 - 8 Nov - FarmVille" width="240" height="239" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image by <a href="http://www.flickr.com/photos/18639319@N00/4092817962">anshu_si</a> via Flickr</dd>
</dl>
</div>
</div>
<p><em>I&#8217;m not generally recommending that you drop everything and play Farmville, but there are some interesting business lessons to be learned from the game. Possibly this blog entry will save you massive amounts of time &#8211; i.e. you can simply read on, rather than playing. </em></p>
<p>If you&#8217;re on Facebook, you&#8217;ve probably already been pestered by notifications from a game called Farmville, created by a company called Zynga. Possibly you&#8217;re already playing the game yourself. Over the past few months, the number of people playing the game has exceeded 70 million &#8211; for comparison&#8217;s sake, this is roughly the same as the total number of people using Twitter. Clearly they&#8217;re doing something interesting.</p>
<p>Generally speaking, Farmville falls under the category of &#8220;viral applications&#8221;. A viral app is one that seems to spread uncontrollably &#8211; just like a cold or flu bug does.</p>
<p>The key to “virality” has been documented elsewhere to great effect (just visit your local library or favourite guerrilla  marketing blog):</p>
<ul>
<li>create something that is going to keep people interested (what&#8217;s usually called &#8220;stickiness&#8221;).</li>
<li>make sure that using it will work even better if the user tells their friends about it.</li>
<li>seed the application, website, or whatever with an initial set of users &#8211; probably friends of the owner.</li>
<li>watch it grow.</li>
<li>deal with scalability issues</li>
<li>figure out how to make money (!)</li>
<li>reproduce / duplicate the effect elsewhere</li>
</ul>
<p>Very few applications make it to the final step, and there is definitely at least some element of luck involved &#8211; I&#8217;ve seen some great ideas fall flat for no apparent reason.</p>
<p>What Zynga has done though is a very interesting example of a successful viral application, and there are a number of attributes that can be used elsewhere &#8211; not necessarily for games either.</p>
<h2>1. Keep People Interested</h2>
<p>The notion of keeping people constantly interested in an application is very helpful in building a virally marketed website or game. The longer a person&#8217;s attention is on something, the more opportunities the makers have to get them to tell other people about it, as well as there being more likelihood of selling the user something. Keeping people interested is not conceptually hard, but can be <strong>difficult</strong> to implement in practice; I&#8217;m seen a great many websites fall short in this regard. &#8220;Viral&#8221; without &#8220;sticky&#8221; often equals &#8220;flop&#8221;.</p>
<p>Zynga have done a few interesting things with regards to holding people&#8217;s attention. Some of them are general rules from the game builder&#8217;s playbook, and thus aren&#8217;t transferable to all products or services.</p>
<p>Some of the tactics include constantly changing items, seasonally based differences in the appearance of the game, new functionality as a user progresses in level, randomization (things like animals moving around on their own) – these are all things common to many successful online games. Maintaining a stream of new activity is actually quite difficult to carry out – as I&#8217;ve discovered in the past while working on other games. There&#8217;s a certain level of perseverance involved, along with rallying the developers – most of whom are probably feeling burned out at this point (again, past experience) and keeping the creative juices flowing.</p>
<p>Other interest-enhancing features include their gift exchange system – I&#8217;ll talk more about this in Part 2 – which a) ensures that certain things can only be accomplished with the help of friends, and b) provides a stream of requests to players inboxes to entice them to come back repeatedly.</p>
<p>Two last things of note:</p>
<p>By building a community, where players cooperate in longer term development with each other, Farmville makes it less likely that somebody will drop out. Community formation is a powerful tool to keep people coming back over and over.</p>
<p>Farmville also relies on people&#8217;s nostalgia for “the simple life” &#8211; not that farming is particularly simple in actuality.  The nostalgia factor can be a powerful tool for marketing to particular market segments.</p>
<p>[To Be Continued...]</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/74c6032d-1fbf-4ec9-956c-51167712db6a/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=74c6032d-1fbf-4ec9-956c-51167712db6a" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<p><!-- google_ad_section_end --></p>



If you like this article, please share it with others:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-1&amp;title=Business%20Lessons%20From%20Farmville%20-%20Part%201&amp;bodytext=%0D%0AImage%20by%20anshu_si%20via%20Flickr%0D%0A%0D%0AI%27m%20not%20generally%20recommending%20that%20you%20drop%20everything%20and%20play%20Farmville%2C%20but%20there%20are%20some%20interesting%20business%20lessons%20to%20be%20learned%20from%20the%20game.%20Possibly%20this%20blog%20entry%20will%20save%20you%20massive%20amounts%20of%20time%20" title="Digg"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-1&amp;title=Business%20Lessons%20From%20Farmville%20-%20Part%201&amp;notes=%0D%0AImage%20by%20anshu_si%20via%20Flickr%0D%0A%0D%0AI%27m%20not%20generally%20recommending%20that%20you%20drop%20everything%20and%20play%20Farmville%2C%20but%20there%20are%20some%20interesting%20business%20lessons%20to%20be%20learned%20from%20the%20game.%20Possibly%20this%20blog%20entry%20will%20save%20you%20massive%20amounts%20of%20time%20" title="del.icio.us"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-1&amp;t=Business%20Lessons%20From%20Farmville%20-%20Part%201" title="Facebook"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-1&amp;title=Business%20Lessons%20From%20Farmville%20-%20Part%201&amp;annotation=%0D%0AImage%20by%20anshu_si%20via%20Flickr%0D%0A%0D%0AI%27m%20not%20generally%20recommending%20that%20you%20drop%20everything%20and%20play%20Farmville%2C%20but%20there%20are%20some%20interesting%20business%20lessons%20to%20be%20learned%20from%20the%20game.%20Possibly%20this%20blog%20entry%20will%20save%20you%20massive%20amounts%20of%20time%20" title="Google Bookmarks"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-1&amp;title=Business%20Lessons%20From%20Farmville%20-%20Part%201&amp;source=Lichtman+Consulting+Your+Strategic+Development+Partner&amp;summary=%0D%0AImage%20by%20anshu_si%20via%20Flickr%0D%0A%0D%0AI%27m%20not%20generally%20recommending%20that%20you%20drop%20everything%20and%20play%20Farmville%2C%20but%20there%20are%20some%20interesting%20business%20lessons%20to%20be%20learned%20from%20the%20game.%20Possibly%20this%20blog%20entry%20will%20save%20you%20massive%20amounts%20of%20time%20" title="LinkedIn"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-1&amp;title=Business%20Lessons%20From%20Farmville%20-%20Part%201" title="Reddit"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://slashdot.org/bookmark.pl?title=Business%20Lessons%20From%20Farmville%20-%20Part%201&amp;url=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-1" title="Slashdot"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-1&amp;title=Business%20Lessons%20From%20Farmville%20-%20Part%201" title="StumbleUpon"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-1" title="Technorati"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Flichtman.ca%2Farticles%2Fbusiness-lessons-from-farmville-part-1&amp;t=Business%20Lessons%20From%20Farmville%20-%20Part%201" title="MySpace"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://lichtman.ca/articles/business-lessons-from-farmville-part-1/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Article on Creating Drupal Sites</title>
		<link>http://lichtman.ca/uncategorized/article-on-creating-drupal-sites</link>
		<comments>http://lichtman.ca/uncategorized/article-on-creating-drupal-sites#comments</comments>
		<pubDate>Tue, 29 Dec 2009 18:14:02 +0000</pubDate>
		<dc:creator>Jeremy Lichtman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[drupal]]></category>

		<guid isPermaLink="false">http://lichtman.ca/uncategorized/article-on-creating-drupal-sites</guid>
		<description><![CDATA[Nathan did a nice article on tools and tricks for creating new sites in Drupal. Worth a read: http://bomshteyn.com/2009/12/29/couple-of-things-i-learned-while-creating-sites-in-drupal/



If you like this article, please share it with others:


	
	
	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p><!-- google_ad_section_start -->Nathan did a nice article on tools and tricks for creating new sites in Drupal. Worth a read: <a href="http://bomshteyn.com/2009/12/29/couple-of-things-i-learned-while-creating-sites-in-drupal/" target="_self">http://bomshteyn.com/2009/12/29/couple-of-things-i-learned-while-creating-sites-in-drupal/</a><!-- google_ad_section_end --></p>



If you like this article, please share it with others:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flichtman.ca%2Funcategorized%2Farticle-on-creating-drupal-sites&amp;title=Article%20on%20Creating%20Drupal%20Sites&amp;bodytext=Nathan%20did%20a%20nice%20article%20on%20tools%20and%20tricks%20for%20creating%20new%20sites%20in%20Drupal.%20Worth%20a%20read%3A%20http%3A%2F%2Fbomshteyn.com%2F2009%2F12%2F29%2Fcouple-of-things-i-learned-while-creating-sites-in-drupal%2F" title="Digg"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Flichtman.ca%2Funcategorized%2Farticle-on-creating-drupal-sites&amp;title=Article%20on%20Creating%20Drupal%20Sites&amp;notes=Nathan%20did%20a%20nice%20article%20on%20tools%20and%20tricks%20for%20creating%20new%20sites%20in%20Drupal.%20Worth%20a%20read%3A%20http%3A%2F%2Fbomshteyn.com%2F2009%2F12%2F29%2Fcouple-of-things-i-learned-while-creating-sites-in-drupal%2F" title="del.icio.us"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Flichtman.ca%2Funcategorized%2Farticle-on-creating-drupal-sites&amp;t=Article%20on%20Creating%20Drupal%20Sites" title="Facebook"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Flichtman.ca%2Funcategorized%2Farticle-on-creating-drupal-sites&amp;title=Article%20on%20Creating%20Drupal%20Sites&amp;annotation=Nathan%20did%20a%20nice%20article%20on%20tools%20and%20tricks%20for%20creating%20new%20sites%20in%20Drupal.%20Worth%20a%20read%3A%20http%3A%2F%2Fbomshteyn.com%2F2009%2F12%2F29%2Fcouple-of-things-i-learned-while-creating-sites-in-drupal%2F" title="Google Bookmarks"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flichtman.ca%2Funcategorized%2Farticle-on-creating-drupal-sites&amp;title=Article%20on%20Creating%20Drupal%20Sites&amp;source=Lichtman+Consulting+Your+Strategic+Development+Partner&amp;summary=Nathan%20did%20a%20nice%20article%20on%20tools%20and%20tricks%20for%20creating%20new%20sites%20in%20Drupal.%20Worth%20a%20read%3A%20http%3A%2F%2Fbomshteyn.com%2F2009%2F12%2F29%2Fcouple-of-things-i-learned-while-creating-sites-in-drupal%2F" title="LinkedIn"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Flichtman.ca%2Funcategorized%2Farticle-on-creating-drupal-sites&amp;title=Article%20on%20Creating%20Drupal%20Sites" title="Reddit"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://slashdot.org/bookmark.pl?title=Article%20on%20Creating%20Drupal%20Sites&amp;url=http%3A%2F%2Flichtman.ca%2Funcategorized%2Farticle-on-creating-drupal-sites" title="Slashdot"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flichtman.ca%2Funcategorized%2Farticle-on-creating-drupal-sites&amp;title=Article%20on%20Creating%20Drupal%20Sites" title="StumbleUpon"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Flichtman.ca%2Funcategorized%2Farticle-on-creating-drupal-sites" title="Technorati"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Flichtman.ca%2Funcategorized%2Farticle-on-creating-drupal-sites&amp;t=Article%20on%20Creating%20Drupal%20Sites" title="MySpace"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://lichtman.ca/uncategorized/article-on-creating-drupal-sites/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Moving Data to Drupal / Ubercart</title>
		<link>http://lichtman.ca/learning/moving-data-to-drupal-ubercart</link>
		<comments>http://lichtman.ca/learning/moving-data-to-drupal-ubercart#comments</comments>
		<pubDate>Thu, 24 Dec 2009 01:31:13 +0000</pubDate>
		<dc:creator>Jeremy Lichtman</dc:creator>
				<category><![CDATA[Learning]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[csv]]></category>
		<category><![CDATA[data conversion]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[nuisance]]></category>
		<category><![CDATA[shopping cart]]></category>
		<category><![CDATA[ubercart]]></category>

		<guid isPermaLink="false">http://lichtman.ca/?p=361</guid>
		<description><![CDATA[The following blog entry describes the solution to an issue encountered by Jeremy and Nathan in moving data from an old website to a new one. Based on a brief search for a solution, it looks like many other people may find a use for the (admittedly rather crude) code that we wrote to solve [...]]]></description>
			<content:encoded><![CDATA[<p><!-- google_ad_section_start --><em>The following blog entry describes the solution to an issue encountered by Jeremy and Nathan in moving data from an old website to a new one. Based on a brief search for a solution, it looks like many other people may find a use for the (admittedly rather crude) code that we wrote to solve the problem. We hope this helps!</em></p>
<p>We&#8217;ve recently had to convert data from an old custom-built shopping cart, to a new website based on Drupal and Ubercart. The old website had approximately 5000 products, with a data structure that was completely unlike the one used by Drupal to store data. We initially tried using the Drupal data loader module, but as other people have discovered, it isn&#8217;t necessarily a good fit for loading Ubercart product data, particularly when the products have images, or &#8211; and this is especially the case &#8211; custom data fields.<br />
<strong><br />
You can <a title="Download our Drupal/Ubercart loader script" href="http://lichtman.ca/free-downloads/loader.zip" target="_blank">download a copy of our script</a> here.</strong></p>
<p>In the end, we put together a custom php script to pull data directly from one database to another. The script is fairly crude, but it may be useful to somebody trying to import data into Ubercart from another non-standard system.</p>
<p>As a result, I will link a copy of the script below. Please bear in mind that a) we accept no responsibility  whatsoever for its use (i.e. back up your databases first!!!), and b) while we have documented our assumptions, this is a crude script that is specifically designed for our particular needs. Be that as it may, you may be able to find a use for this.</p>
<p>Additionally, it was a pain just getting a list of the Drupal and Ubertcart tables that needed to be looked at in order to do the data conversion. The list below may be useful to you as well.</p>
<h2>How it works:</h2>
<p>The old shopping cart had two relevant tables: a category listing (hierarchical), and a products table, which included some customer specific fields, as well as a single url to a product photo.</p>
<p>Drupal/Ubercart, on the other hand, uses a large number of tables to represent the same data. This is because products use the same node-based system as the rest of Drupal, in addition to a number of product specific tables.</p>
<p>In addition, product images are dealt with using Drupal&#8217;s file cacheing system, which is relatively complex in nature. All in all, our data goes from two tables to approximately nine (depending on your specific needs) in Drupal.</p>
<p>The script has some handling &#8211; very buggy still &#8211; in place for keeping track of the current position in the old database. This means that you can run the data conversion in small chunks, checking at each point to see how well it is doing. You can also set how many records to convert each time. In order for this to work, a very simple table to track the record pointer needs to be added into the old database.</p>
<p>We did not cover the conversion of product categories, since typically there are a much smaller number of categories than products, and in addition, the Drupal data loader does a reasonably good job of loading them.</p>
<h2>List of tables involved:</h2>
<ul>
<li>node &#8211; in Drupal, everything is a node, including products. Each new product record will need a corresponding node of the correct type.</li>
<li>node_revisions &#8211; this table contains much of the actual textual data (i.e. product description text) involved in displaying the node.</li>
<li>content_type_product &#8211; if you need to create custom fields for your Ubercart products, the data will go here. Our code in this section will probably not map directly to what you&#8217;re working on.</li>
<li>uc_product &#8211; where the product records &#8220;live&#8221;. There will be one record here for each of the product nodes.</li>
<li>uc_product_stock &#8211; contains stock-related data (i.e. how many of the product you have on hand etc) for products.</li>
<li>files &#8211; each product image needs to have a record in this table, which stores the file names and locations &#8211; but does not map these images directly to the product records (you need another table for that!).</li>
<li>content_field_image_cache &#8211; this is the mechanism that ties a product image to the underlying product. We didn&#8217;t really try to work with Drupal&#8217;s actual cache mechanism, so after you have loaded the products, you may want to clear the cache.</li>
<li>term_data &#8211; this is where product category information resides, based on Drupal&#8217;s vocabulary / hierarchy system. We hacked the solution in a fairly inelegant way &#8211; by doing a category name lookup to retrieve the term id.</li>
<li>term_node &#8211; a connection table between a term (i.e. a product category) and a node (in this case the products).</li>
</ul>
<h2>Base assumptions:</h2>
<ul>
<li>We assumed that the old and new websites both have mysql databases.</li>
<li>Both databases will probably have to be on the same server (or at least one of them needs to be externally accessible if that isn&#8217;t the case)</li>
<li>The script should be uploaded and run from the new website&#8217;s location.</li>
<li>We assumed that there is only one product image per product &#8211; although this would be fairly easy to modify.</li>
<li>We manually added our categories to the new website</li>
<li>We manually moved product images across &#8211; there are comments in the script where you could automate this though.</li>
<li>Error checking is extremely rudimentary; if this scripts hits a problem it just stops.</li>
<li>If you hit data conv snags, the fastest way to proceed is to restore your backup database, reset the pointer record, and start over.</li>
</ul>
<p><!-- google_ad_section_end --></p>



If you like this article, please share it with others:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flichtman.ca%2Flearning%2Fmoving-data-to-drupal-ubercart&amp;title=Moving%20Data%20to%20Drupal%20%2F%20Ubercart&amp;bodytext=The%20following%20blog%20entry%20describes%20the%20solution%20to%20an%20issue%20encountered%20by%20Jeremy%20and%20Nathan%20in%20moving%20data%20from%20an%20old%20website%20to%20a%20new%20one.%20Based%20on%20a%20brief%20search%20for%20a%20solution%2C%20it%20looks%20like%20many%20other%20people%20may%20find%20a%20use%20for%20the%20%28admittedly%20r" title="Digg"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Flichtman.ca%2Flearning%2Fmoving-data-to-drupal-ubercart&amp;title=Moving%20Data%20to%20Drupal%20%2F%20Ubercart&amp;notes=The%20following%20blog%20entry%20describes%20the%20solution%20to%20an%20issue%20encountered%20by%20Jeremy%20and%20Nathan%20in%20moving%20data%20from%20an%20old%20website%20to%20a%20new%20one.%20Based%20on%20a%20brief%20search%20for%20a%20solution%2C%20it%20looks%20like%20many%20other%20people%20may%20find%20a%20use%20for%20the%20%28admittedly%20r" title="del.icio.us"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Flichtman.ca%2Flearning%2Fmoving-data-to-drupal-ubercart&amp;t=Moving%20Data%20to%20Drupal%20%2F%20Ubercart" title="Facebook"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Flichtman.ca%2Flearning%2Fmoving-data-to-drupal-ubercart&amp;title=Moving%20Data%20to%20Drupal%20%2F%20Ubercart&amp;annotation=The%20following%20blog%20entry%20describes%20the%20solution%20to%20an%20issue%20encountered%20by%20Jeremy%20and%20Nathan%20in%20moving%20data%20from%20an%20old%20website%20to%20a%20new%20one.%20Based%20on%20a%20brief%20search%20for%20a%20solution%2C%20it%20looks%20like%20many%20other%20people%20may%20find%20a%20use%20for%20the%20%28admittedly%20r" title="Google Bookmarks"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flichtman.ca%2Flearning%2Fmoving-data-to-drupal-ubercart&amp;title=Moving%20Data%20to%20Drupal%20%2F%20Ubercart&amp;source=Lichtman+Consulting+Your+Strategic+Development+Partner&amp;summary=The%20following%20blog%20entry%20describes%20the%20solution%20to%20an%20issue%20encountered%20by%20Jeremy%20and%20Nathan%20in%20moving%20data%20from%20an%20old%20website%20to%20a%20new%20one.%20Based%20on%20a%20brief%20search%20for%20a%20solution%2C%20it%20looks%20like%20many%20other%20people%20may%20find%20a%20use%20for%20the%20%28admittedly%20r" title="LinkedIn"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Flichtman.ca%2Flearning%2Fmoving-data-to-drupal-ubercart&amp;title=Moving%20Data%20to%20Drupal%20%2F%20Ubercart" title="Reddit"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://slashdot.org/bookmark.pl?title=Moving%20Data%20to%20Drupal%20%2F%20Ubercart&amp;url=http%3A%2F%2Flichtman.ca%2Flearning%2Fmoving-data-to-drupal-ubercart" title="Slashdot"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flichtman.ca%2Flearning%2Fmoving-data-to-drupal-ubercart&amp;title=Moving%20Data%20to%20Drupal%20%2F%20Ubercart" title="StumbleUpon"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Flichtman.ca%2Flearning%2Fmoving-data-to-drupal-ubercart" title="Technorati"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Flichtman.ca%2Flearning%2Fmoving-data-to-drupal-ubercart&amp;t=Moving%20Data%20to%20Drupal%20%2F%20Ubercart" title="MySpace"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://lichtman.ca/learning/moving-data-to-drupal-ubercart/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Now using Disqus</title>
		<link>http://lichtman.ca/social-media/now-using-disqus</link>
		<comments>http://lichtman.ca/social-media/now-using-disqus#comments</comments>
		<pubDate>Fri, 18 Dec 2009 03:19:27 +0000</pubDate>
		<dc:creator>Jeremy Lichtman</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[disqus]]></category>

		<guid isPermaLink="false">http://lichtman.ca/?p=359</guid>
		<description><![CDATA[I&#8217;ve finally taken Nathan&#8217;s advice and installed Disqus to handle the comments on this site. Please let me know if you notice anything broken as a result. Supposedly there are some nice features, including the ability to leave video comments.



If you like this article, please share it with others:


	
	
	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p><!-- google_ad_section_start -->I&#8217;ve finally taken Nathan&#8217;s advice and installed Disqus to handle the comments on this site. Please let me know if you notice anything broken as a result. Supposedly there are some nice features, including the ability to leave video comments.<!-- google_ad_section_end --></p>



If you like this article, please share it with others:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flichtman.ca%2Fsocial-media%2Fnow-using-disqus&amp;title=Now%20using%20Disqus&amp;bodytext=I%27ve%20finally%20taken%20Nathan%27s%20advice%20and%20installed%20Disqus%20to%20handle%20the%20comments%20on%20this%20site.%20Please%20let%20me%20know%20if%20you%20notice%20anything%20broken%20as%20a%20result.%20Supposedly%20there%20are%20some%20nice%20features%2C%20including%20the%20ability%20to%20leave%20video%20comments." title="Digg"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Flichtman.ca%2Fsocial-media%2Fnow-using-disqus&amp;title=Now%20using%20Disqus&amp;notes=I%27ve%20finally%20taken%20Nathan%27s%20advice%20and%20installed%20Disqus%20to%20handle%20the%20comments%20on%20this%20site.%20Please%20let%20me%20know%20if%20you%20notice%20anything%20broken%20as%20a%20result.%20Supposedly%20there%20are%20some%20nice%20features%2C%20including%20the%20ability%20to%20leave%20video%20comments." title="del.icio.us"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Flichtman.ca%2Fsocial-media%2Fnow-using-disqus&amp;t=Now%20using%20Disqus" title="Facebook"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Flichtman.ca%2Fsocial-media%2Fnow-using-disqus&amp;title=Now%20using%20Disqus&amp;annotation=I%27ve%20finally%20taken%20Nathan%27s%20advice%20and%20installed%20Disqus%20to%20handle%20the%20comments%20on%20this%20site.%20Please%20let%20me%20know%20if%20you%20notice%20anything%20broken%20as%20a%20result.%20Supposedly%20there%20are%20some%20nice%20features%2C%20including%20the%20ability%20to%20leave%20video%20comments." title="Google Bookmarks"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flichtman.ca%2Fsocial-media%2Fnow-using-disqus&amp;title=Now%20using%20Disqus&amp;source=Lichtman+Consulting+Your+Strategic+Development+Partner&amp;summary=I%27ve%20finally%20taken%20Nathan%27s%20advice%20and%20installed%20Disqus%20to%20handle%20the%20comments%20on%20this%20site.%20Please%20let%20me%20know%20if%20you%20notice%20anything%20broken%20as%20a%20result.%20Supposedly%20there%20are%20some%20nice%20features%2C%20including%20the%20ability%20to%20leave%20video%20comments." title="LinkedIn"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Flichtman.ca%2Fsocial-media%2Fnow-using-disqus&amp;title=Now%20using%20Disqus" title="Reddit"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://slashdot.org/bookmark.pl?title=Now%20using%20Disqus&amp;url=http%3A%2F%2Flichtman.ca%2Fsocial-media%2Fnow-using-disqus" title="Slashdot"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flichtman.ca%2Fsocial-media%2Fnow-using-disqus&amp;title=Now%20using%20Disqus" title="StumbleUpon"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Flichtman.ca%2Fsocial-media%2Fnow-using-disqus" title="Technorati"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Flichtman.ca%2Fsocial-media%2Fnow-using-disqus&amp;t=Now%20using%20Disqus" title="MySpace"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://lichtman.ca/social-media/now-using-disqus/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>“Whole Life” Approach to Website Development – Part 3</title>
		<link>http://lichtman.ca/uncategorized/%e2%80%9cwhole-life%e2%80%9d-approach-to-website-development-%e2%80%93-part-3</link>
		<comments>http://lichtman.ca/uncategorized/%e2%80%9cwhole-life%e2%80%9d-approach-to-website-development-%e2%80%93-part-3#comments</comments>
		<pubDate>Thu, 26 Nov 2009 15:34:00 +0000</pubDate>
		<dc:creator>Jeremy Lichtman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://lichtman.ca/?p=356</guid>
		<description><![CDATA[Continued from Part 2 – http://lichtman.ca/uncategorized/whole-life-approach-to-website-development-part-2
In Part 2, we covered some of the stages during development and just after the launch of a website.
8. Operations




Image via Wikipedia



I&#8217;ve frequently seen websites launch successfully, only to lose steam rapidly, once the obvious difficulties in actually running a web-business come into play.
Operating a successful web-based business can be [...]]]></description>
			<content:encoded><![CDATA[<p><!-- google_ad_section_start --><em>Continued from Part 2 – http://lichtman.ca/uncategorized/whole-life-approach-to-website-development-part-2</em></p>
<p><em>In Part 2, we covered some of the stages during development and just after the launch of a website.</em></p>
<h2>8. Operations</h2>
<div class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://commons.wikipedia.org/wiki/Image:Allentown_Project_042.jpg"><img title="Image of a logistics provider's warehouse of g..." src="http://upload.wikimedia.org/wikipedia/commons/thumb/6/61/Allentown_Project_042.jpg/300px-Allentown_Project_042.jpg" alt="Image of a logistics provider's warehouse of g..." width="300" height="225" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://commons.wikipedia.org/wiki/Image:Allentown_Project_042.jpg">Wikipedia</a></dd>
</dl>
</div>
</div>
<p>I&#8217;ve frequently seen websites launch successfully, only to lose steam rapidly, once the obvious difficulties in actually running a web-business come into play.</p>
<p>Operating a successful web-based business can be a lot of work, no matter how much effort is placed on automation.</p>
<p>A website that sells a product can have a major time committment required in order to fulfill orders (i.e. package them up and mail them), or to answer queries.</p>
<p>Content-based sites can be even harder to maintain, particularly when the general public has the ability to participate in the content creation process &#8211; large social media sites often have a significant number of staff dedicated to removing content that contravenes the terms of service.</p>
<p>I&#8217;ve recently worked with several customers who have partnered with fulfillment centers in order to offload a portion of the order fulfillment process onto specialists. The websites have been designed to integrate with the fulfillment center&#8217;s systems in order to keep the order statuses current. I&#8217;ll eventually post an update here when I&#8217;ve seen how well this works in practice.</p>
<p>Creating a plan &#8211; possibly even as early as the business plan stage &#8211; for how operations will work, the amount of time needed to keep a website running, and whether any staff are required for this purpose (and particularly how much that would cost), is an effective way of making sure that the resources will be in place to run things after launch. It also gears owners of web businesses up for the long, ongoing task of running an online business.</p>
<h2>9. Maintenance Cycle</h2>
<div class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;">
<p><div class="wp-caption alignleft" style="width: 250px"><a href="http://www.flickr.com/photos/93752018@N00/3040699634"><img title="Car Repair" src="http://farm4.static.flickr.com/3033/3040699634_cb25da7b53_m.jpg" alt="Car Repair" width="240" height="180" /></a><p class="wp-caption-text">Image by akseabird via Flickr</p></div></p>
</div>
<p>Most web developers approach the ongoing maintenance of a customer&#8217;s site as a form of additional revenue after a project has completed.</p>
<p>Few owners of websites appear to budget for ongoing maintenance related issues &#8211; which could include bug fixing or building additional functionality &#8211; before or during development.</p>
<p>For developers, there&#8217;s a risk associated with the maintenance cycle, given that an ongoing series of invoices (unless well justified) could result in the customer leaving for another development company.</p>
<p>Ensuring that new owners of web businesses understand what is involved (particularly with regards to costing) in maintaining a website over time will go a long way towards forging a better partnership between developer and customer.</p>
<h2>10. Creative Destruction &#8211; When to Scrap It and Start Over</h2>
<div class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 250px;">
<dt class="wp-caption-dt"><a href="http://www.flickr.com/photos/11018968@N00/148825789"><img title="Wrecking Ball" src="http://farm1.static.flickr.com/47/148825789_74deeeca36_m.jpg" alt="Wrecking Ball" width="240" height="188" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image by <a href="http://www.flickr.com/photos/11018968@N00/148825789">Editor B</a> via Flickr</dd>
</dl>
</div>
</div>
<p>I&#8217;ve worked on a number of websites where the site had some initial success, which dropped off over time. Unfortunately some products are faddish in nature, which means that there is a very well defined life cycle for the product.</p>
<p>The products or services sold by a website may not be the only things subject to this inherent life cycle.</p>
<p>A website built today may not work as well in the future. Technologies change, people&#8217;s design taste changes, and websites do become outdated over time.</p>
<p>As some point in time, a decision may need to be made to scrap a site and start over.</p>
<p>This often seems to happen on an ad-hoc basis, where a customer becomes infuriated with a developer and leaves for another web development company; the new company will typically try to sell a complete start-over, as opposed to modifying somebody else&#8217;s work.</p>
<p>By ensuring from the start that customers understand that there are inherent lifespans involved in a web business (just like any other), developers can potentially develop a longer term relationship with their customers that lasts beyond a single project.</p>
<h2>Conclusions</h2>
<p>There are a few quick conclusions that can be drawn from all of this:</p>
<ul>
<li>A web business involves a lot more than just throwing together a website and putting it up on the internet. If you ignore the fact that its a business like any other, you may be setting yourself up for failure.</li>
<li>Web development companies are only part of the “supply chain” involved in building a successful web business. Other companies that are often involved include: business consultants, accountants, lawyers, loan companies or investors, PR people, SEO/SEM companies, supply chain management or fulfillment centres, phone support companies and many more. It makes a lot of sense for web developers to cultivate relationships with each of these kinds of companies, in order to be able to provide a full “package” to their customers.</li>
<li>It takes time and extended effort to build a successful web business. Both you and your vendors need to have tenacity, because a lack of staying power won&#8217;t cut it. Despite anything you&#8217;ve seen in the news, most successful online businesses are the result of many, many years of hard work.</li>
</ul>
<p><!-- google_ad_section_end --></p>



If you like this article, please share it with others:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-3&amp;title=%E2%80%9CWhole%20Life%E2%80%9D%20Approach%20to%20Website%20Development%20%E2%80%93%20Part%203&amp;bodytext=Continued%20from%20Part%202%20%E2%80%93%20http%3A%2F%2Flichtman.ca%2Funcategorized%2Fwhole-life-approach-to-website-development-part-2%0D%0A%0D%0AIn%20Part%202%2C%20we%20covered%20some%20of%20the%20stages%20during%20development%20and%20just%20after%20the%20launch%20of%20a%20website.%0D%0A8.%20Operations%0D%0A%0D%0A%20%20Image%20via%20Wikipedi" title="Digg"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-3&amp;title=%E2%80%9CWhole%20Life%E2%80%9D%20Approach%20to%20Website%20Development%20%E2%80%93%20Part%203&amp;notes=Continued%20from%20Part%202%20%E2%80%93%20http%3A%2F%2Flichtman.ca%2Funcategorized%2Fwhole-life-approach-to-website-development-part-2%0D%0A%0D%0AIn%20Part%202%2C%20we%20covered%20some%20of%20the%20stages%20during%20development%20and%20just%20after%20the%20launch%20of%20a%20website.%0D%0A8.%20Operations%0D%0A%0D%0A%20%20Image%20via%20Wikipedi" title="del.icio.us"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-3&amp;t=%E2%80%9CWhole%20Life%E2%80%9D%20Approach%20to%20Website%20Development%20%E2%80%93%20Part%203" title="Facebook"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-3&amp;title=%E2%80%9CWhole%20Life%E2%80%9D%20Approach%20to%20Website%20Development%20%E2%80%93%20Part%203&amp;annotation=Continued%20from%20Part%202%20%E2%80%93%20http%3A%2F%2Flichtman.ca%2Funcategorized%2Fwhole-life-approach-to-website-development-part-2%0D%0A%0D%0AIn%20Part%202%2C%20we%20covered%20some%20of%20the%20stages%20during%20development%20and%20just%20after%20the%20launch%20of%20a%20website.%0D%0A8.%20Operations%0D%0A%0D%0A%20%20Image%20via%20Wikipedi" title="Google Bookmarks"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-3&amp;title=%E2%80%9CWhole%20Life%E2%80%9D%20Approach%20to%20Website%20Development%20%E2%80%93%20Part%203&amp;source=Lichtman+Consulting+Your+Strategic+Development+Partner&amp;summary=Continued%20from%20Part%202%20%E2%80%93%20http%3A%2F%2Flichtman.ca%2Funcategorized%2Fwhole-life-approach-to-website-development-part-2%0D%0A%0D%0AIn%20Part%202%2C%20we%20covered%20some%20of%20the%20stages%20during%20development%20and%20just%20after%20the%20launch%20of%20a%20website.%0D%0A8.%20Operations%0D%0A%0D%0A%20%20Image%20via%20Wikipedi" title="LinkedIn"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-3&amp;title=%E2%80%9CWhole%20Life%E2%80%9D%20Approach%20to%20Website%20Development%20%E2%80%93%20Part%203" title="Reddit"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://slashdot.org/bookmark.pl?title=%E2%80%9CWhole%20Life%E2%80%9D%20Approach%20to%20Website%20Development%20%E2%80%93%20Part%203&amp;url=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-3" title="Slashdot"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-3&amp;title=%E2%80%9CWhole%20Life%E2%80%9D%20Approach%20to%20Website%20Development%20%E2%80%93%20Part%203" title="StumbleUpon"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-3" title="Technorati"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-3&amp;t=%E2%80%9CWhole%20Life%E2%80%9D%20Approach%20to%20Website%20Development%20%E2%80%93%20Part%203" title="MySpace"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://lichtman.ca/uncategorized/%e2%80%9cwhole-life%e2%80%9d-approach-to-website-development-%e2%80%93-part-3/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>“Whole Life” Approach to Website Development – Part 2</title>
		<link>http://lichtman.ca/uncategorized/%e2%80%9cwhole-life%e2%80%9d-approach-to-website-development-%e2%80%93-part-2</link>
		<comments>http://lichtman.ca/uncategorized/%e2%80%9cwhole-life%e2%80%9d-approach-to-website-development-%e2%80%93-part-2#comments</comments>
		<pubDate>Wed, 25 Nov 2009 16:40:43 +0000</pubDate>
		<dc:creator>Jeremy Lichtman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://lichtman.ca/?p=353</guid>
		<description><![CDATA[Continued from Part 1 &#8211; http://lichtman.ca/uncategorized/whole-life-approach-to-website-development-part-1
In Part 1, we discussed that websites need to be viewed from the perspective of the business cycle, rather than as a simple project.
4. Design / Implementation




Image by *spo0ky* via Flickr



There isn&#8217;t all that much I can add regarding the design and implementation phases of a web project. This is [...]]]></description>
			<content:encoded><![CDATA[<p><!-- google_ad_section_start --><em>Continued from Part 1 &#8211; <a href="http://lichtman.ca/uncategorized/whole-life-approach-to-website-development-part-1">http://lichtman.ca/uncategorized/whole-life-approach-to-website-development-part-1</a></em></p>
<p><em>In Part 1, we discussed that websites need to be viewed from the perspective of the business cycle, rather than as a simple project.</em></p>
<h2>4. Design / Implementation</h2>
<div class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 250px;">
<dt class="wp-caption-dt"><a href="http://www.flickr.com/photos/36521982811@N01/493564363"><img title="Travelstart Design Studio is officially 3 of u..." src="http://farm1.static.flickr.com/190/493564363_746ca2da08_m.jpg" alt="Travelstart Design Studio is officially 3 of u..." width="240" height="180" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image by <a href="http://www.flickr.com/photos/36521982811@N01/493564363">*spo0ky*</a> via Flickr</dd>
</dl>
</div>
</div>
<p>There isn&#8217;t all that much I can add regarding the design and implementation phases of a web project. This is the technical portion of the project, and the business-owner is somewhat at the mercy of the skills of the people that have been hired to build the site.</p>
<p>Web developers can use this phase as an opportunity to obtain feedback from customers <span style="text-decoration: underline;">early and often</span>, which may reduce the amount of time involved in the testing and “Beta” shakedown period after launch.</p>
<h2>5. Testing</h2>
<div class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;">
<p><div class="wp-caption alignleft" style="width: 310px"><a href="http://commons.wikipedia.org/wiki/Image:Dummies.jpg"><img title="Vince and Larry the crash test dummies, who ap..." src="http://upload.wikimedia.org/wikipedia/commons/thumb/8/82/Dummies.jpg/300px-Dummies.jpg" alt="Vince and Larry the crash test dummies, who ap..." width="300" height="188" /></a><p class="wp-caption-text">Image via Wikipedia</p></div></p>
</div>
<p>I know of few web development companies that have a formal testing process in place.</p>
<p>Part of the problem is that testing is labour intensive, and requires a particular nitpicky mindset that developers seldom choose to acquire.</p>
<p>If web projects properly budget for the testing phase (including adequately estimating the amount of time involved), then more options become available, including hiring staff specifically for this purpose, or utilizing a third-party testing company.</p>
<p>This avoids the prevalent (I&#8217;m guilty of this too sometimes) practice of pushing a large chunk of the testing process onto the customer.</p>
<h2>6. Launch</h2>
<div class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://commons.wikipedia.org/wiki/Image:S63-22731.jpg"><img title="Launching of flight Mercury-Redstone 3 (MR-3),..." src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/79/S63-22731.jpg/300px-S63-22731.jpg" alt="Launching of flight Mercury-Redstone 3 (MR-3),..." width="300" height="395" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://commons.wikipedia.org/wiki/Image:S63-22731.jpg">Wikipedia</a></dd>
</dl>
</div>
</div>
<p>Typically the launch of a website tends to be greeted with a lot of fanfare.</p>
<p>If the owner has engaged a PR company, there can be a significant buzz attached to the initial launch.</p>
<p>The critical things to bear in mind are that a) the buzz may not correspond to a significant number of sales, and b) there needs to be a committment to work at building the business after the initial buzz wears off (which it usually will).</p>
<p>I&#8217;ve seen a lot of sites launch well, only to founder later on.</p>
<p>Its critical not to confuse the big launch with the lengthy hard work of building an online clientelle, which may take years (just like with a regular “real world” business).</p>
<p>Tenacity pays off! Do not be discouraged if things don&#8217;t immediately work on launch!</p>
<h2>7. Building Traffic &#8211; PR, SEO, Organic Growth and Networking</h2>
<div class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;">
<p><div class="wp-caption alignleft" style="width: 310px"><a href="http://commons.wikipedia.org/wiki/Image:Soporte-resistencia_reverseroles.jpg"><img title="Stock chart showing levels of support (4,5,6, ..." src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Soporte-resistencia_reverseroles.jpg/300px-Soporte-resistencia_reverseroles.jpg" alt="Stock chart showing levels of support (4,5,6, ..." width="300" height="163" /></a><p class="wp-caption-text">Image via Wikipedia</p></div></p>
</div>
<p>There are quite a few factors involved in building traffic to a website over time.</p>
<p>A quick point before discussing this important issue: the “conversion” or “closing” ratio of your website &#8211; it isn&#8217;t any good to obtain a large amount of traffic on your website if you aren&#8217;t turning that traffic into sales (or some kind of revenue anyhow).</p>
<p>Keep a close eye on the closing ratio (i.e. percentage of visitors that result in revenue) over time, and don&#8217;t be afraid to change aspects of your website if things aren&#8217;t working.</p>
<p>I find that tools like the “Funnels” system built into Google Analytics do a great job of showing where a website is losing people.</p>
<p>I&#8217;ve seen a decidedly mixed bag of results in the past from both PR companies and SEO (search engine optimization) people. I&#8217;ve written a bit in the past on both topics, so I won&#8217;t go into a lot of detail here.</p>
<p>Generally the process of building a significant amount of traffic on a website boils down to continually promoting the site over a long period of time; this is particularly the case where a business is looking for so-called “organic growth”, which basically means people just finding the website randomly, due to it being frequently referenced elsewhere.</p>
<p>The process of building organic growth often is a result of “networking” with the owners of other websites. This takes both hard work and a willingness to give and take. Note: I&#8217;m not talking about lame &#8220;link exchanges&#8221;, but rather the more &#8220;blog oriented&#8221; approach where people discuss each other on their sites. An example would be somebody discussing how much a like a particular site, or how an interaction with somebody at a web-based company went. You can&#8217;t beat that kind of press.</p>
<p>As mentioned above, I&#8217;ve worked on a number of projects over the years where various PR companies were engaged in order to promote projects.</p>
<p>My experience has been that PR companies tend to have specific areas where they shine, and promoting websites isn&#8217;t something that all of them do well. Partially this is because PR is oriented towards short term promotion of products, or finding ways to plug something newsworthy (and hence time-limited).</p>
<p>If you can find a PR person who has staying power, and can keep doggedly plugging away at something long after it becomes boring &#8211; stick with them, as they are rare.</p>
<p>Its also been somewhat evident that there are many PR people out there who are primarily good at promoting themselves. I don&#8217;t have much ability personally to see through “BS” of this nature; my recommendation would be to get some references for previous jobs that are similar to yours, and take the time to call them.</p>
<p>SEO is also something of a mixed basket.</p>
<p>Search engine optimizers and marketers tend to specialize in particular areas, for instance Pay Per Click, On Page SEO, Organic SEO, Link Building, Social Media Marketing etc. I don&#8217;t want to go into detail on the topic of SEO, despite its importance to newly launched websites, since I&#8217;ve written frequently on this topic before.</p>
<p>The key with hiring an SEO/SEM company is a) check refences, and b) start with a small, limited scale project first, and don&#8217;t be afraid to drop them quickly if they don&#8217;t deliver.</p>
<p>As somebody who has worked in this field, I&#8217;m also aware that there&#8217;s a similar effect at play to PR people &#8211; over time the effectiveness of a specific technique may wane, resulting in a loss of interest on the part of the SEO people involved. When this happens, it may be time to move on.</p>
<p><em>To Be Continued&#8230;</em><!-- google_ad_section_end --></p>



If you like this article, please share it with others:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-2&amp;title=%E2%80%9CWhole%20Life%E2%80%9D%20Approach%20to%20Website%20Development%20%E2%80%93%20Part%202&amp;bodytext=Continued%20from%20Part%201%20-%20http%3A%2F%2Flichtman.ca%2Funcategorized%2Fwhole-life-approach-to-website-development-part-1%0D%0A%0D%0AIn%20Part%201%2C%20we%20discussed%20that%20websites%20need%20to%20be%20viewed%20from%20the%20perspective%20of%20the%20business%20cycle%2C%20rather%20than%20as%20a%20simple%20project.%0D%0A4.%20Des" title="Digg"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-2&amp;title=%E2%80%9CWhole%20Life%E2%80%9D%20Approach%20to%20Website%20Development%20%E2%80%93%20Part%202&amp;notes=Continued%20from%20Part%201%20-%20http%3A%2F%2Flichtman.ca%2Funcategorized%2Fwhole-life-approach-to-website-development-part-1%0D%0A%0D%0AIn%20Part%201%2C%20we%20discussed%20that%20websites%20need%20to%20be%20viewed%20from%20the%20perspective%20of%20the%20business%20cycle%2C%20rather%20than%20as%20a%20simple%20project.%0D%0A4.%20Des" title="del.icio.us"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-2&amp;t=%E2%80%9CWhole%20Life%E2%80%9D%20Approach%20to%20Website%20Development%20%E2%80%93%20Part%202" title="Facebook"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-2&amp;title=%E2%80%9CWhole%20Life%E2%80%9D%20Approach%20to%20Website%20Development%20%E2%80%93%20Part%202&amp;annotation=Continued%20from%20Part%201%20-%20http%3A%2F%2Flichtman.ca%2Funcategorized%2Fwhole-life-approach-to-website-development-part-1%0D%0A%0D%0AIn%20Part%201%2C%20we%20discussed%20that%20websites%20need%20to%20be%20viewed%20from%20the%20perspective%20of%20the%20business%20cycle%2C%20rather%20than%20as%20a%20simple%20project.%0D%0A4.%20Des" title="Google Bookmarks"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-2&amp;title=%E2%80%9CWhole%20Life%E2%80%9D%20Approach%20to%20Website%20Development%20%E2%80%93%20Part%202&amp;source=Lichtman+Consulting+Your+Strategic+Development+Partner&amp;summary=Continued%20from%20Part%201%20-%20http%3A%2F%2Flichtman.ca%2Funcategorized%2Fwhole-life-approach-to-website-development-part-1%0D%0A%0D%0AIn%20Part%201%2C%20we%20discussed%20that%20websites%20need%20to%20be%20viewed%20from%20the%20perspective%20of%20the%20business%20cycle%2C%20rather%20than%20as%20a%20simple%20project.%0D%0A4.%20Des" title="LinkedIn"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-2&amp;title=%E2%80%9CWhole%20Life%E2%80%9D%20Approach%20to%20Website%20Development%20%E2%80%93%20Part%202" title="Reddit"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://slashdot.org/bookmark.pl?title=%E2%80%9CWhole%20Life%E2%80%9D%20Approach%20to%20Website%20Development%20%E2%80%93%20Part%202&amp;url=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-2" title="Slashdot"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-2&amp;title=%E2%80%9CWhole%20Life%E2%80%9D%20Approach%20to%20Website%20Development%20%E2%80%93%20Part%202" title="StumbleUpon"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-2" title="Technorati"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Flichtman.ca%2Funcategorized%2F%25e2%2580%259cwhole-life%25e2%2580%259d-approach-to-website-development-%25e2%2580%2593-part-2&amp;t=%E2%80%9CWhole%20Life%E2%80%9D%20Approach%20to%20Website%20Development%20%E2%80%93%20Part%202" title="MySpace"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://lichtman.ca/uncategorized/%e2%80%9cwhole-life%e2%80%9d-approach-to-website-development-%e2%80%93-part-2/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>&#8220;Whole Life&#8221; Approach to Website Development &#8211; Part 1</title>
		<link>http://lichtman.ca/uncategorized/whole-life-approach-to-website-development-part-1</link>
		<comments>http://lichtman.ca/uncategorized/whole-life-approach-to-website-development-part-1#comments</comments>
		<pubDate>Tue, 24 Nov 2009 16:21:46 +0000</pubDate>
		<dc:creator>Jeremy Lichtman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://lichtman.ca/?p=350</guid>
		<description><![CDATA[In my experience, small business owners tend to view websites as either a business card that happens to be online (i.e. excessively low expectations), or as something that is supposed to miraculously provide revenue the instant it is launched.




Image by anselm23 via Flickr



The problem is partially one of not taking a broader “whole life cycle” [...]]]></description>
			<content:encoded><![CDATA[<p><!-- google_ad_section_start -->In my experience, small business owners tend to view websites as either a business card that happens to be online (i.e. excessively low expectations), or as something that is supposed to miraculously provide revenue the instant it is launched.</p>
<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 250px;">
<dt class="wp-caption-dt"><a href="http://www.flickr.com/photos/71586127@N00/1335552438"><img title="Master List of Websites" src="http://farm2.static.flickr.com/1205/1335552438_dcba2e79d3_m.jpg" alt="Master List of Websites" width="240" height="180" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image by <a href="http://www.flickr.com/photos/71586127@N00/1335552438">anselm23</a> via Flickr</dd>
</dl>
</div>
</div>
<p>The problem is partially one of not taking a broader “whole life cycle” view of the website as a business in its own right. It may also be exacerbated by web developers who may be more comfortable with creative or software development, as opposed to a hard-headed business-oriented view of a site.</p>
<p>The issue is that a website is a business like any other, and that implies that there is more going on than its appearance or functionality alone.</p>
<p>Developers also need to resist the temptation to take the easy way out and just implement whatever the customer asks for. This may require developers to pick up some business-oriented skills in order to provide a more professional level of service for their clients.</p>
<p>A look at the full cycle involved in building a website &#8211; or more accurately a web business &#8211; gives a wider picture that may suggest both areas for improvement on the part of developers, as well as a more realistic set of expectations from business owners.</p>
<p>The &#8220;Whole Life&#8221; development cycle starts long before anybody discusses what a website is going to look like, and continues (often for years) after the site has been launched.</p>
<h2>1. Concept</h2>
<div class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignleft" style="width: 250px;">
<dt class="wp-caption-dt"><a href="http://www.flickr.com/photos/23678023@N07/2297989507"><img title="Lightbulb" src="http://farm4.static.flickr.com/3161/2297989507_5bd5d9db3f_m.jpg" alt="Lightbulb" width="240" height="160" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image by <a href="http://www.flickr.com/photos/23678023@N07/2297989507">Martin Charbonneau Photographe</a> via Flickr</dd>
</dl>
</div>
</div>
<p>Frequently,  the initial concept for a website originates with the business owner.</p>
<p>In many cases, they take their flash of brilliance and immediately start trying to build it.</p>
<p>A quick feasibility study may be in order though.</p>
<p>This may consist of a quick Google search to see if there are competing products, or bouncing the idea off a trusted friend (I&#8217;ve encountered people who are incredibly paranoid about protecting their ideas, regardless of whether the idea is actually valuable or not).</p>
<p>Where web development companies come into this is in the area of professionalism: it isn&#8217;t easy to tell a potential customer that their ideas are terrible, or to try and make them modify their concepts in order to allow them to work better online.</p>
<p>Part of that is that developers and designers are by nature creative people, and we don&#8217;t like raining on somebody&#8217;s parade.</p>
<p>Part of it is also the risk of losing a possible customer.</p>
<p>Yes, this should be done tactfully (that could be a complete article on its own), but if we don&#8217;t address this up front, it creates a larger likelyhood of the project blowing up in our faces later on.</p>
<p>Attempting to adjust expectations mid-course isn&#8217;t usually much of a solution.</p>
<h2>2. Business Model / Business Plan</h2>
<div class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://commons.wikipedia.org/wiki/Image:LaBelle_Blueprint.jpg"><img title="Modern blueprint of the French galleon La Belle." src="http://upload.wikimedia.org/wikipedia/commons/1/10/LaBelle_Blueprint.jpg" alt="Modern blueprint of the French galleon La Belle." width="300" height="197" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://commons.wikipedia.org/wiki/Image:LaBelle_Blueprint.jpg">Wikipedia</a></dd>
</dl>
</div>
</div>
<p>This is a neglected area with new web businesses, and one that could provide additional revenue for development firms that are willing to learn new skills &#8211; or work with other companies that have the skillset.</p>
<p>Frequently new websites are built and launched without a hard look at how they are going to make money. &#8220;Oh I&#8217;ll just build something and throw ads up on it&#8221; or &#8220;I&#8217;ll have a shopping cart so people will buy things&#8221; don&#8217;t hold water any more &#8211; if they ever did. I&#8217;m still amazed at how many people I talk to still think along these lines.</p>
<p>Want a successful web business? Start with a well defined model for how it will make money. Then put together a business plan (and possibly a marketing plan).</p>
<p>A well-crafted business plan can take a long time to put together (Factor at least 35 hours for a simple plan, and 6 weeks or more for a complex one).</p>
<p>If the web development company you are working with doesn&#8217;t provide this service (hint: my company does about 3 or 4 per month) then hopefully they have a relationship with somebody else who does.</p>
<p>The business plan may help later on as well, if you are seeking financing for your website.</p>
<h2>3. Financing</h2>
<p>If you are building a small website, the issue of financing probably boils down to giving the designer an initial deposit and then whatever you owe once its all done.</p>
<div class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 250px;">
<dt class="wp-caption-dt"><a href="http://www.flickr.com/photos/75891675@N00/2401722298"><img title="Money Back Guarantee" src="http://farm4.static.flickr.com/3200/2401722298_5dd70f8067_m.jpg" alt="Money Back Guarantee" width="240" height="160" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image by <a href="http://www.flickr.com/photos/75891675@N00/2401722298">Roby©</a> via Flickr</dd>
</dl>
</div>
</div>
<p>Larger web projects, however, can be expensive, particularly when you factor in the labour involved in custom graphic design or software development. This means that you could potentially need to look at financing options, in order to complete your project.</p>
<p>Most web companies are far too small to be able to provide sophisticate financing options for web development projects, so it is possible you&#8217;ll be looking around for a different way to put together financing.</p>
<p>The current financial situation has resulted in difficulties in obtaining traditional sources of financing (typically loans) for web development projects. As of the time of writing, (tail end of 2009) the people I&#8217;ve spoken to have had little success obtaining bank financing for business development of any kind, including web development. It is unclear whether this source of funding is still viable for web projects.</p>
<p>I&#8217;ve recently spoken to people in the business of brokering small (i.e. under $100,000) loans, which are typically unsecured. My understanding is that this type of financing still exists, if one is willing to hunt around to find it, and it one is willing to accept the terms as-is. Secured loans on a larger scale can also be obtained for development projects, but again the terms may or may not be acceptable. Personally I haven&#8217;t had any experience actually taking out a loan of this nature, so this is mostly based on discussing the topic with people in that industry; I haven&#8217;t spoken recently to anybody who has obtained this kind of financing for a project.</p>
<p>“Angel” or “Venture Capital” funding is another traditional (at least in a Dot Com sense) way of putting together financing for web development. I also don&#8217;t have personal experience with going this route, although I&#8217;ve had “nibbles” from local angel investors that I know regarding specific projects in the past; none of those has resulted in anything to date&#8230; Usually people in either of those areas are looking to buy a piece of the equity of whatever it is that you&#8217;re building, so your track record is going to be important to them (hence the business plan!).</p>
<p>One unusual source of funding for web development (or software) projects can be equipment financing companies. Many of the “captive” financing companies for computer hardware manufacturers (one example would be IBM Global Financing, but all of the large equipment manufacturers have them) will  finance software or web development projects, provided that you purchase equipment from them as part of the deal. So for instance you could buy the servers required to run your site, finance them, and then roll other startup expenses such as off the shelf software and custom development that are also required, into a single loan.</p>
<p>By cultivating relationships with potential sources of funding, web development companies can add a powerful sales tool into their “kit”, which will allow them to land larger projects. This kind of relationship could also be extremely beneficial for lenders and investors as well, since web developers are frequently the first line of vendors to see newly launched concepts. I&#8217;ve actively cultivated relationships with companies in these areas for years as a result, and I&#8217;m often puzzled when a VC doesn&#8217;t “get it” &#8211; in their position who wouldn&#8217;t want a steady stream of pre-qualified applicants?</p>
<p><em>To Be Continued&#8230;.</em></p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<p><!-- google_ad_section_end --></p>



If you like this article, please share it with others:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Flichtman.ca%2Funcategorized%2Fwhole-life-approach-to-website-development-part-1&amp;title=%22Whole%20Life%22%20Approach%20to%20Website%20Development%20-%20Part%201&amp;bodytext=In%20my%20experience%2C%20small%20business%20owners%20tend%20to%20view%20websites%20as%20either%20a%20business%20card%20that%20happens%20to%20be%20online%20%28i.e.%20excessively%20low%20expectations%29%2C%20or%20as%20something%20that%20is%20supposed%20to%20miraculously%20provide%20revenue%20the%20instant%20it%20is%20launched.%0D%0A%0D%0A%20%20I" title="Digg"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Flichtman.ca%2Funcategorized%2Fwhole-life-approach-to-website-development-part-1&amp;title=%22Whole%20Life%22%20Approach%20to%20Website%20Development%20-%20Part%201&amp;notes=In%20my%20experience%2C%20small%20business%20owners%20tend%20to%20view%20websites%20as%20either%20a%20business%20card%20that%20happens%20to%20be%20online%20%28i.e.%20excessively%20low%20expectations%29%2C%20or%20as%20something%20that%20is%20supposed%20to%20miraculously%20provide%20revenue%20the%20instant%20it%20is%20launched.%0D%0A%0D%0A%20%20I" title="del.icio.us"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Flichtman.ca%2Funcategorized%2Fwhole-life-approach-to-website-development-part-1&amp;t=%22Whole%20Life%22%20Approach%20to%20Website%20Development%20-%20Part%201" title="Facebook"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Flichtman.ca%2Funcategorized%2Fwhole-life-approach-to-website-development-part-1&amp;title=%22Whole%20Life%22%20Approach%20to%20Website%20Development%20-%20Part%201&amp;annotation=In%20my%20experience%2C%20small%20business%20owners%20tend%20to%20view%20websites%20as%20either%20a%20business%20card%20that%20happens%20to%20be%20online%20%28i.e.%20excessively%20low%20expectations%29%2C%20or%20as%20something%20that%20is%20supposed%20to%20miraculously%20provide%20revenue%20the%20instant%20it%20is%20launched.%0D%0A%0D%0A%20%20I" title="Google Bookmarks"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Flichtman.ca%2Funcategorized%2Fwhole-life-approach-to-website-development-part-1&amp;title=%22Whole%20Life%22%20Approach%20to%20Website%20Development%20-%20Part%201&amp;source=Lichtman+Consulting+Your+Strategic+Development+Partner&amp;summary=In%20my%20experience%2C%20small%20business%20owners%20tend%20to%20view%20websites%20as%20either%20a%20business%20card%20that%20happens%20to%20be%20online%20%28i.e.%20excessively%20low%20expectations%29%2C%20or%20as%20something%20that%20is%20supposed%20to%20miraculously%20provide%20revenue%20the%20instant%20it%20is%20launched.%0D%0A%0D%0A%20%20I" title="LinkedIn"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Flichtman.ca%2Funcategorized%2Fwhole-life-approach-to-website-development-part-1&amp;title=%22Whole%20Life%22%20Approach%20to%20Website%20Development%20-%20Part%201" title="Reddit"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://slashdot.org/bookmark.pl?title=%22Whole%20Life%22%20Approach%20to%20Website%20Development%20-%20Part%201&amp;url=http%3A%2F%2Flichtman.ca%2Funcategorized%2Fwhole-life-approach-to-website-development-part-1" title="Slashdot"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flichtman.ca%2Funcategorized%2Fwhole-life-approach-to-website-development-part-1&amp;title=%22Whole%20Life%22%20Approach%20to%20Website%20Development%20-%20Part%201" title="StumbleUpon"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Flichtman.ca%2Funcategorized%2Fwhole-life-approach-to-website-development-part-1" title="Technorati"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Flichtman.ca%2Funcategorized%2Fwhole-life-approach-to-website-development-part-1&amp;t=%22Whole%20Life%22%20Approach%20to%20Website%20Development%20-%20Part%201" title="MySpace"><img src="http://lichtman.ca/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://lichtman.ca/uncategorized/whole-life-approach-to-website-development-part-1/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>
