<?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>Cyprus Web Design</title>
	<atom:link href="http://logilabs.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://logilabs.com/blog</link>
	<description>Cyprus Web Design Blog</description>
	<lastBuildDate>Sat, 10 Mar 2012 20:07:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Dealing with spam on the Virtuemart Ask a question about this product page</title>
		<link>http://logilabs.com/blog/dealing-with-spam-on-the-virtuemart-ask-a-question-about-this-product-page</link>
		<comments>http://logilabs.com/blog/dealing-with-spam-on-the-virtuemart-ask-a-question-about-this-product-page#comments</comments>
		<pubDate>Sat, 10 Mar 2012 20:05:15 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Web Design Blog]]></category>

		<guid isPermaLink="false">http://logilabs.com/blog/?p=55</guid>
		<description><![CDATA[Anyone who&#8217;s setup an online store with Virtuemart will know about the &#8220;Ask a question about this product&#8221; page being spammed. Opinion is divided between introducing a CAPTCHA system (requires a lot of core hacks), or removing the link all together. This is my solution which is somewhere between the two. If the  &#8221;Ask a [...]]]></description>
			<content:encoded><![CDATA[<p>Anyone who&#8217;s setup an online store with Virtuemart will know about the &#8220;Ask a question about this product&#8221; page being spammed. Opinion is divided between introducing a CAPTCHA system (requires a lot of core hacks), or removing the link all together. This is my solution which is somewhere between the two.</p>
<p>If the  &#8221;Ask a question&#8221; page is visited, this code alteration will ask the user to login, or register before asking a question.</p>
<p>This alteration only requires changes to shop.ask.tpl. Therefore you can safely upgrade VirtueMart without fear of loosing the changes.</p>
<div style="width: 95%; border: 1px solid #8b0000; color: #ff0000; margin-top: 10px; margin-bottom: 10px; padding: 5px;">Backup your files before you do this, or indeed any code change of any kind. You&#8217;ve been warned</div>
<h3>Note: This is for Virtuemart 1.1.4. Ive not tested it on other versions.</h3>
<p><span id="more-55"></span><br />
Load up the file /components/com_virtuemart/themes/&lt;your theme&gt;/templates/pages/shop.ask.tpl.php in your editor, you should see something like this</p>
<div class="code_container">
<table class="php" style="border: 1px solid #054b6e; background: none repeat scroll 0% 0% #f8f8f8; border-collapse: collapse; width: 560px;">
<tbody>
<tr class="li1">
<td class="ln">
<pre class="de1">18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38</pre>
</td>
<td class="de1">
<pre class="de1"><span style="vertical-align: top;">mm_showMyFileName( __FILE__ );</span>
<span style="vertical-align: top;"> </span>
<span style="vertical-align: top;">if ( $set == 0 ) { // This is the enquiry form!</span>
<span style="vertical-align: top;"> </span>
<span style="vertical-align: top;"> </span>
<span style="vertical-align: top;">$validate = vmIsJoomla( '1.5' ) ? JUtility::getHash( $mainframe-&gt;getCfg( 'db' ) ) : mosHash( $mainframe-&gt;getCfg( 'db' ) );</span>
<span style="vertical-align: top;"> </span>
<span style="vertical-align: top;">  ?&gt;</span>
<span style="vertical-align: top;">  &lt;br /&gt;</span>
<span style="vertical-align: top;">  &lt;a class="button" href="/<span class="kw2">&lt;?php</span> <span class="kw3">echo</span> <span class="re0">$product_link</span> <span class="sy1">?&gt;</span>"&gt;<span class="kw2">&lt;?php</span> <span class="kw3">echo</span> <span class="re0">$VM_LANG</span><span class="sy0">-&gt;</span>_<span class="br0">(</span><span class="st_h">'VM_RETURN_TO_PRODUCT'</span><span class="br0">)</span> <span class="sy1">?&gt;</span>&lt;/a&gt;</span>
<span style="vertical-align: top;">  &lt;br /&gt;&lt;br /&gt;</span>
<span style="vertical-align: top;"> </span>
<span style="vertical-align: top;">  &lt;form action="<span class="kw2">&lt;?php</span> <span class="kw3">echo</span> <span class="re0">$mm_action_url</span> <span class="sy1">?&gt;</span>index.php" method="post" name="emailForm" id="emailForm"&gt;</span>
<span style="vertical-align: top;">  &lt;label for="contact_name"&gt;<span class="kw2">&lt;?php</span> <span class="kw3">echo</span> <span class="re0">$VM_LANG</span><span class="sy0">-&gt;</span>_<span class="br0">(</span><span class="st_h">'NAME_PROMPT'</span><span class="br0">)</span> <span class="sy1">?&gt;</span>&lt;/label&gt;</span>
<span style="vertical-align: top;">  &lt;br /&gt;&lt;input type="text" name="name" id="contact_name" size="80" class="inputbox" value="<span class="kw2">&lt;?php</span> <span class="kw3">echo</span> <span class="re0">$name</span> <span class="sy1">?&gt;</span>"&gt;&lt;br /&gt;&lt;br /&gt;</span>
<span style="vertical-align: top;">  &lt;label for="contact_mail"&gt;<span class="kw2">&lt;?php</span> <span class="kw3">echo</span> <span class="re0">$VM_LANG</span><span class="sy0">-&gt;</span>_<span class="br0">(</span><span class="st_h">'EMAIL_PROMPT'</span><span class="br0">)</span> <span class="sy1">?&gt;</span>&lt;/label&gt;</span>
<span style="vertical-align: top;">  &lt;br /&gt;&lt;input type="text" id="contact_mail" name="email" size="80" label="Your email" class="inputbox" value="<span class="kw2">&lt;?php</span> <span class="kw3">echo</span> <span class="re0">$email</span> <span class="sy1">?&gt;</span>"&gt;&lt;br /&gt;&lt;br /&gt;</span>
<span style="vertical-align: top;">  &lt;label for="contact_text"&gt;<span class="kw2">&lt;?php</span> <span class="kw3">echo</span> <span class="re0">$VM_LANG</span><span class="sy0">-&gt;</span>_<span class="br0">(</span><span class="st_h">'MESSAGE_PROMPT'</span><span class="br0">)</span> <span class="sy1">?&gt;</span>&lt;/label&gt;&lt;br /&gt;</span>
<span style="vertical-align: top;">  .</span>
<span style="vertical-align: top;">  .</span>
<span style="vertical-align: top;">  .</span></pre>
</td>
</tr>
</tbody>
</table>
</div>
<p>So we can see at line 20 there is a test to see if the form data has already been submitted. We&#8217;re going to add a secondary condition, that is if the user is logged in, then display the form, otherwise invite the user to either login, or register.</p>
<p>Add the following lines to this file (at line 27)</p>
<div class="code_container">
<div class="rj_insertcode">
<div class="rj_insertcode_php">
<div class="php" style="border: 1px solid #054b6e; background: none repeat scroll 0% 0% #f8f8f8; border-collapse: collapse; width: 560px;">
<pre style="margin: 0pt; padding: 0px 4px; background: none repeat scroll 0% 0% transparent; vertical-align: top; font-size: 12px;"><span style="vertical-align: top;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> </span>
<span style="vertical-align: top;">      <span style="color: #000088;">$userinfo</span><span style="color: #339933;">=&amp;</span> JFactory<span style="color: #339933;">::</span><span style="color: #004000;">getUser</span><span style="color: #009900;">(</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span></span>
<span style="vertical-align: top;">      <span style="color: #b1b100;">if</span><span style="color: #009900;">(</span><span style="color: #339933;">!</span><span style="color: #000088;">$userinfo</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">guest</span><span style="color: #009900;">)</span> <span style="color: #009900;">{</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></span></pre>
</div>
</div>
</div>
</div>
<p>Your code should now look like this</p>
<div class="code_container">
<table class="php" style="border: 1px solid #054b6e; background: none repeat scroll 0% 0% #f8f8f8; border-collapse: collapse; width: 560px;">
<tbody>
<tr class="li1">
<td style="border-right: 1px dotted #dddddd; background: none repeat scroll 0% 0% #f0f0f0; width: 1px; vertical-align: top; color: #676f73; font-size: 12px; text-align: right;">
<pre style="margin: 0pt; padding: 0px 4px; background: none repeat scroll 0% 0% transparent; vertical-align: top; font-size: 12px;">18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39</pre>
</td>
<td style="margin: 0pt; padding: 0px 4px; background: none repeat scroll 0% 0% transparent; vertical-align: top; font-size: 12px;">
<pre style="margin: 0pt; padding: 0px 4px; background: none repeat scroll 0% 0% transparent; vertical-align: top; font-size: 12px;"><span style="vertical-align: top;">mm_showMyFileName( __FILE__ );</span>
<span style="vertical-align: top;">?&gt;</span>
<span style="vertical-align: top;">&lt;div class="ask-question"&gt;</span>
<span style="vertical-align: top;">  &lt;div class="ask-question-inner"&gt;</span>
<span style="vertical-align: top;">    <span style="color: #000000; font-weight: bold;">&lt;?php</span></span>
<span style="vertical-align: top;"> </span>
<span style="vertical-align: top;">    <span style="color: #b1b100;">if</span> <span style="color: #009900;">(</span> <span style="color: #000088;">$set</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">0</span> <span style="color: #009900;">)</span> <span style="color: #009900;">{</span> <span style="color: #666666; font-style: italic;">// This is the enquiry form!</span></span>
<span style="vertical-align: top;"> </span>
<span style="vertical-align: top;">      <span style="color: #000088;">$validate</span> <span style="color: #339933;">=</span> vmIsJoomla<span style="color: #009900;">(</span> <span style="color: #0000ff;">'1.5'</span> <span style="color: #009900;">)</span> ? JUtility<span style="color: #339933;">::</span><span style="color: #004000;">getHash</span><span style="color: #009900;">(</span> <span style="color: #000088;">$mainframe</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getCfg</span><span style="color: #009900;">(</span> <span style="color: #0000ff;">'db'</span> <span style="color: #009900;">)</span> <span style="color: #009900;">)</span> <span style="color: #339933;">:</span> mosHash<span style="color: #009900;">(</span> <span style="color: #000088;">$mainframe</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getCfg</span><span style="color: #009900;">(</span> <span style="color: #0000ff;">'db'</span> <span style="color: #009900;">)</span> <span style="color: #009900;">)</span><span style="color: #339933;">;</span></span>
<span style="vertical-align: top;">      <span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="vertical-align: top;">      &lt;a class="return-to-product" href="/<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #990000;">echo</span> <span style="color: #000088;">$product_link</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>"&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #990000;">echo</span> <span style="color: #000088;">$VM_LANG</span><span style="color: #339933;">-&gt;</span>_<span style="color: #009900;">(</span><span style="color: #0000ff;">'VM_RETURN_TO_PRODUCT'</span><span style="color: #009900;">)</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/a&gt;</span>
<span style="vertical-align: top;">       <span style="color: #000000; font-weight: bold;">&lt;?php</span> </span>
<span style="vertical-align: top;">      <span style="color: #000088;">$userinfo</span><span style="color: #339933;">=&amp;</span> JFactory<span style="color: #339933;">::</span><span style="color: #004000;">getUser</span><span style="color: #009900;">(</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span></span>
<span style="vertical-align: top;">      <span style="color: #b1b100;">if</span><span style="color: #009900;">(</span><span style="color: #339933;">!</span><span style="color: #000088;">$userinfo</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">guest</span><span style="color: #009900;">)</span> <span style="color: #009900;">{</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="vertical-align: top;">        &lt;form action="<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #990000;">echo</span> <span style="color: #000088;">$mm_action_url</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>index.php" method="post" name="emailForm" id="emailForm"&gt;</span>
<span style="vertical-align: top;">        &lt;label for="contact_name"&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #990000;">echo</span> <span style="color: #000088;">$VM_LANG</span><span style="color: #339933;">-&gt;</span>_<span style="color: #009900;">(</span><span style="color: #0000ff;">'NAME_PROMPT'</span><span style="color: #009900;">)</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/label&gt;</span>
<span style="vertical-align: top;">        &lt;br /&gt;&lt;input type="text" name="name" id="contact_name" size="80" class="inputbox" value="<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #990000;">echo</span> <span style="color: #000088;">$name</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>"&gt;&lt;br /&gt;&lt;br /&gt;</span>
<span style="vertical-align: top;">        &lt;label for="contact_mail"&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #990000;">echo</span> <span style="color: #000088;">$VM_LANG</span><span style="color: #339933;">-&gt;</span>_<span style="color: #009900;">(</span><span style="color: #0000ff;">'EMAIL_PROMPT'</span><span style="color: #009900;">)</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/label&gt;</span>
<span style="vertical-align: top;">        &lt;br /&gt;&lt;input type="text" id="contact_mail" name="email" size="80" label="Your email" class="inputbox" value="<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #990000;">echo</span> <span style="color: #000088;">$email</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>"&gt;&lt;br /&gt;&lt;br /&gt;</span>
<span style="vertical-align: top;">        &lt;label for="contact_text"&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #990000;">echo</span> <span style="color: #000088;">$VM_LANG</span><span style="color: #339933;">-&gt;</span>_<span style="color: #009900;">(</span><span style="color: #0000ff;">'MESSAGE_PROMPT'</span><span style="color: #009900;">)</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/label&gt;&lt;br /&gt;</span>
<span style="vertical-align: top;">        &lt;textarea rows="10" cols="60" name="text" id="contact_text" class="inputbox"&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #990000;">echo</span> <span style="color: #000088;">$subject</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/textarea&gt;&lt;br /&gt;</span>
<span style="vertical-align: top;"> </span></pre>
</td>
</tr>
</tbody>
</table>
<p>Now move down to line 50 (ish), you should see this code:</p>
<table class="php" style="border: 1px solid #054b6e; background: none repeat scroll 0% 0% #f8f8f8; border-collapse: collapse; width: 560px;">
<tbody>
<tr class="li1">
<td style="border-right: 1px dotted #dddddd; background: none repeat scroll 0% 0% #f0f0f0; width: 1px; vertical-align: top; color: #676f73; font-size: 12px; text-align: right;">
<pre style="margin: 0pt; padding: 0px 4px; background: none repeat scroll 0% 0% transparent; vertical-align: top; font-size: 12px;">50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65</pre>
</td>
<td style="margin: 0pt; padding: 0px 4px; background: none repeat scroll 0% 0% transparent; vertical-align: top; font-size: 12px;">
<pre style="margin: 0pt; padding: 0px 4px; background: none repeat scroll 0% 0% transparent; vertical-align: top; font-size: 12px;"><span style="vertical-align: top;">&lt;script type="text/javascript"&gt;&lt;!--</span>
<span style="vertical-align: top;">function validateEnquiryForm() {</span>
<span style="vertical-align: top;">  if ( ( document.emailForm.text.value == "" ) || ( document.emailForm.email.value.search("@") == -1 ) || ( document.emailForm.email.value.search("[.*]" ) == -1 ) ) {</span>
<span style="vertical-align: top;">    alert( "<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #990000;">echo</span> <span style="color: #000088;">$VM_LANG</span><span style="color: #339933;">-&gt;</span>_<span style="color: #009900;">(</span><span style="color: #0000ff;">'CONTACT_FORM_NC'</span><span style="color: #339933;">,</span><span style="color: #000000; font-weight: bold;">false</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>" );</span>
<span style="vertical-align: top;">  } else if ( ( document.emailForm.email.value.search(";") != -1 ) || ( document.emailForm.email.value.search(",") != -1 ) || ( document.emailForm.email.value.search(" ") != -1 ) ) {</span>
<span style="vertical-align: top;">    alert( "You cannot enter more than one email address" );</span>
<span style="vertical-align: top;">  } else {</span>
<span style="vertical-align: top;">    document.emailForm.action = "<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #990000;">echo</span> sefRelToAbs<span style="color: #009900;">(</span><span style="color: #0000ff;">"index.php"</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>"</span>
<span style="vertical-align: top;">    document.emailForm.submit();</span>
<span style="vertical-align: top;">  }</span>
<span style="vertical-align: top;">}</span>
<span style="vertical-align: top;">--&gt;&lt;/script&gt;</span>
<span style="vertical-align: top;"> </span>
<span style="vertical-align: top;"><span style="color: #000000; font-weight: bold;">&lt;?php</span></span>
<span style="vertical-align: top;"><span style="color: #009900;">}</span></span>
<span style="vertical-align: top;"><span style="color: #b1b100;">else</span> <span style="color: #009900;">{</span> <span style="color: #666666; font-style: italic;">// if set==1 then we .... ..</span></span></pre>
</td>
</tr>
</tbody>
</table>
</div>
<p>Add the following lines, straight after line 61 in the above snippett. You&#8217;ll need to get rid of the existing opening &lt;?php tag.</p>
<p>Code to insert:</p>
<div class="code_container">
<table class="php" style="border: 1px solid #054b6e; background: none repeat scroll 0% 0% #f8f8f8; border-collapse: collapse; width: 100%;">
<tbody>
<tr class="li1">
<td style="border-right: 1px dotted #dddddd; background: none repeat scroll 0% 0% #f0f0f0; width: 1px; vertical-align: top; color: #676f73; font-size: 12px; text-align: right;">
<pre style="margin: 0pt; padding: 0px 4px; background: none repeat scroll 0% 0% transparent; vertical-align: top; font-size: 12px;">66
67
68
69
70
71
72</pre>
</td>
<td style="margin: 0pt; padding: 0px 4px; background: none repeat scroll 0% 0% transparent; vertical-align: top; font-size: 12px;">
<pre style="margin: 0pt; padding: 0px 4px; background: none repeat scroll 0% 0% transparent; vertical-align: top; font-size: 12px;"><span style="vertical-align: top;"><span style="color: #000000; font-weight: bold;">&lt;?php</span></span>
<span style="vertical-align: top;">  <span style="color: #009900;">}</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">{</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="vertical-align: top;">    Please &lt;A href="/user/login.html"&gt;Login to ask a question&lt;/A&gt;. </span>
<span style="vertical-align: top;">    If you do not have an account, </span>
<span style="vertical-align: top;">      &lt;a href="/index.php?option=com_virtuemart&amp;page=shop.registration&amp;Itemid=54"&gt;</span>
<span style="vertical-align: top;">      you can register here&lt;/a&gt;.</span>
<span style="vertical-align: top;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">}</span></span></pre>
</td>
</tr>
</tbody>
</table>
</div>
<p>So it should now look like this</p>
<div class="code_container">
<table class="php" style="border: 1px solid #054b6e; background: none repeat scroll 0% 0% #f8f8f8; border-collapse: collapse; width: 100%;">
<tbody>
<tr class="li1">
<td style="border-right: 1px dotted #dddddd; background: none repeat scroll 0% 0% #f0f0f0; width: 1px; vertical-align: top; color: #676f73; font-size: 12px; text-align: right;">
<pre style="margin: 0pt; padding: 0px 4px; background: none repeat scroll 0% 0% transparent; vertical-align: top; font-size: 12px;">50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76</pre>
</td>
<td style="margin: 0pt; padding: 0px 4px; background: none repeat scroll 0% 0% transparent; vertical-align: top; font-size: 12px;">
<pre style="margin: 0pt; padding: 0px 4px; background: none repeat scroll 0% 0% transparent; vertical-align: top; font-size: 12px;"><span style="vertical-align: top;">&lt;script type="text/javascript"&gt;&lt;!--</span>
<span style="vertical-align: top;">function validateEnquiryForm() {</span>
<span style="vertical-align: top;">  if ( ( document.emailForm.text.value == "" ) || ( document.emailForm.email.value.search("@") == -1 ) || ( document.emailForm.email.value.search("[.*]" ) == -1 ) ) {</span>
<span style="vertical-align: top;">    alert( "<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #990000;">echo</span> <span style="color: #000088;">$VM_LANG</span><span style="color: #339933;">-&gt;</span>_<span style="color: #009900;">(</span><span style="color: #0000ff;">'CONTACT_FORM_NC'</span><span style="color: #339933;">,</span><span style="color: #000000; font-weight: bold;">false</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>" );</span>
<span style="vertical-align: top;">  } else if ( ( document.emailForm.email.value.search(";") != -1 ) || ( document.emailForm.email.value.search(",") != -1 ) || ( document.emailForm.email.value.search(" ") != -1 ) ) {</span>
<span style="vertical-align: top;">    alert( "You cannot enter more than one email address" );</span>
<span style="vertical-align: top;">  } else {</span>
<span style="vertical-align: top;">    document.emailForm.action = "<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #990000;">echo</span> sefRelToAbs<span style="color: #009900;">(</span><span style="color: #0000ff;">"index.php"</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>"</span>
<span style="vertical-align: top;">    document.emailForm.submit();</span>
<span style="vertical-align: top;">  }</span>
<span style="vertical-align: top;">}</span>
<span style="vertical-align: top;">--&gt;&lt;/script&gt;</span>
<span style="vertical-align: top;">  <span style="color: #000000; font-weight: bold;">&lt;?php</span></span>
<span style="vertical-align: top;">  <span style="color: #009900;">}</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">{</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="vertical-align: top;">     Please &lt;A href="/user/login.html"&gt;Login to ask a question&lt;/A&gt;. </span>
<span style="vertical-align: top;">    If you do not have an account, &lt;a href="/index.php?option=com_virtuemart&amp;page=shop.registration&amp;Itemid=54"&gt;you can register here&lt;/a&gt;.</span>
<span style="vertical-align: top;">  <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">}</span></span>
<span style="vertical-align: top;"><span style="color: #009900;">}</span></span>
<span style="vertical-align: top;"><span style="color: #b1b100;">else</span> <span style="color: #009900;">{</span> <span style="color: #666666; font-style: italic;">// if set==1 then we have sent the email to the vendor and say thank you here.</span></span>
<span style="vertical-align: top;"> <span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="vertical-align: top;">       &lt;img src="/<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #990000;">echo</span> VM_THEMEURL <span style="color: #000000; font-weight: bold;">?&gt;</span>images/button_ok.png" height="48" width="48" align="center" alt="Success" border="0" /&gt;</span>
<span style="vertical-align: top;">       <span style="color: #000000; font-weight: bold;">&lt;?php</span> <a href="http://web.archive.org/web/20091213031120/http://www.php.net/echo"><span style="color: #990000;">echo</span></a> <span style="color: #000088;">$VM_LANG</span><span style="color: #339933;">-&gt;</span>_<span style="color: #009900;">(</span><span style="color: #0000ff;">'THANK_MESSAGE'</span><span style="color: #009900;">)</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="vertical-align: top;">.</span>
<span style="vertical-align: top;">.</span>
<span style="vertical-align: top;">.</span>
<span style="vertical-align: top;"> </span>
<span style="vertical-align: top;"> </span></pre>
</td>
</tr>
</tbody>
</table>
</div>
<p>Save your file, upload it if you have to. Browse to one of your products and click on &#8220;Ask a question about this product&#8221; If you&#8217;re logged in, it will present the form as normal, if you&#8217;re not, we&#8217;ll then it will ask you to login or register. There is an argument to say the user may decide they cant be bothered to login, or register, and a Captcha is far more suitable. I agree, and I&#8217;ve no doubt that the rather spiffing chaps at Virtuemart will put this feature in to the next release.</p>
<p>Just to stress, this is for Virtuemart 1.1.4. I havent tested it with any other versions.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-bebo">
			<a href="http://www.shareaholic.com/api/share/?title=Dealing+with+spam+on+the+Virtuemart+Ask+a+question+about+this+product+page&amp;link=http://logilabs.com/blog/dealing-with-spam-on-the-virtuemart-ask-a-question-about-this-product-page&amp;notes=Anyone%20who%27s%20setup%20an%20online%20store%20with%20Virtuemart%20will%20know%20about%20the%20%22Ask%20a%20question%20about%20this%20product%22%20page%20being%20spammed.%20Opinion%20is%20divided%20between%20introducing%20a%20CAPTCHA%20system%20%28requires%20a%20lot%20of%20core%20hacks%29%2C%20or%20removing%20the%20link%20all%20together.%20This%20is%20my%20solution%20which%20is%20somewhere%20between%20the&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=196&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://logilabs.com/blog/dealing-with-spam-on-the-virtuemart-ask-a-question-about-this-product-page/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Dealing+with+spam+on+the+Virtuemart+Ask+a+question+about+this+product+page&amp;link=http://logilabs.com/blog/dealing-with-spam-on-the-virtuemart-ask-a-question-about-this-product-page&amp;notes=Anyone%20who%27s%20setup%20an%20online%20store%20with%20Virtuemart%20will%20know%20about%20the%20%22Ask%20a%20question%20about%20this%20product%22%20page%20being%20spammed.%20Opinion%20is%20divided%20between%20introducing%20a%20CAPTCHA%20system%20%28requires%20a%20lot%20of%20core%20hacks%29%2C%20or%20removing%20the%20link%20all%20together.%20This%20is%20my%20solution%20which%20is%20somewhere%20between%20the&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Dealing+with+spam+on+the+Virtuemart+Ask+a+question+about+this+product+page&amp;link=http://logilabs.com/blog/dealing-with-spam-on-the-virtuemart-ask-a-question-about-this-product-page&amp;notes=Anyone%20who%27s%20setup%20an%20online%20store%20with%20Virtuemart%20will%20know%20about%20the%20%22Ask%20a%20question%20about%20this%20product%22%20page%20being%20spammed.%20Opinion%20is%20divided%20between%20introducing%20a%20CAPTCHA%20system%20%28requires%20a%20lot%20of%20core%20hacks%29%2C%20or%20removing%20the%20link%20all%20together.%20This%20is%20my%20solution%20which%20is%20somewhere%20between%20the&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Dealing+with+spam+on+the+Virtuemart+Ask+a+question+about+this+product+page&amp;link=http://logilabs.com/blog/dealing-with-spam-on-the-virtuemart-ask-a-question-about-this-product-page&amp;notes=Anyone%20who%27s%20setup%20an%20online%20store%20with%20Virtuemart%20will%20know%20about%20the%20%22Ask%20a%20question%20about%20this%20product%22%20page%20being%20spammed.%20Opinion%20is%20divided%20between%20introducing%20a%20CAPTCHA%20system%20%28requires%20a%20lot%20of%20core%20hacks%29%2C%20or%20removing%20the%20link%20all%20together.%20This%20is%20my%20solution%20which%20is%20somewhere%20between%20the&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Dealing+with+spam+on+the+Virtuemart+Ask+a+question+about+this+product+page&amp;link=http://logilabs.com/blog/dealing-with-spam-on-the-virtuemart-ask-a-question-about-this-product-page&amp;notes=Anyone%20who%27s%20setup%20an%20online%20store%20with%20Virtuemart%20will%20know%20about%20the%20%22Ask%20a%20question%20about%20this%20product%22%20page%20being%20spammed.%20Opinion%20is%20divided%20between%20introducing%20a%20CAPTCHA%20system%20%28requires%20a%20lot%20of%20core%20hacks%29%2C%20or%20removing%20the%20link%20all%20together.%20This%20is%20my%20solution%20which%20is%20somewhere%20between%20the&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Dealing+with+spam+on+the+Virtuemart+Ask+a+question+about+this+product+page&amp;link=http://logilabs.com/blog/dealing-with-spam-on-the-virtuemart-ask-a-question-about-this-product-page&amp;notes=Anyone%20who%27s%20setup%20an%20online%20store%20with%20Virtuemart%20will%20know%20about%20the%20%22Ask%20a%20question%20about%20this%20product%22%20page%20being%20spammed.%20Opinion%20is%20divided%20between%20introducing%20a%20CAPTCHA%20system%20%28requires%20a%20lot%20of%20core%20hacks%29%2C%20or%20removing%20the%20link%20all%20together.%20This%20is%20my%20solution%20which%20is%20somewhere%20between%20the&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://logilabs.com/blog/dealing-with-spam-on-the-virtuemart-ask-a-question-about-this-product-page/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Questions when Designing your e-shop</title>
		<link>http://logilabs.com/blog/10-questions-when-designing-your-e-shop</link>
		<comments>http://logilabs.com/blog/10-questions-when-designing-your-e-shop#comments</comments>
		<pubDate>Tue, 27 Jul 2010 06:35:18 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Web Design Blog]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[e-shop]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://logilabs.com/blog/?p=43</guid>
		<description><![CDATA[1. What Are Your Business Goals? 2. What&#8217;s the Purpose of Your Website? 3. What Type of Products or Services Will You Sell? 4. How Many Products Will You Sell From Your Website? 5. How Many Variables Does Your Product Have? 6. How Will You Accept Online Payments? 7. Do You Have a Web Hosting [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-50" title="e-shop" src="http://logilabs.com/blog/wp-content/uploads/2010/07/e-shop1.png" alt="" width="335" height="220" />1. What Are Your Business Goals?</p>
<p>2. What&#8217;s the Purpose of Your Website?</p>
<p>3. What Type of Products or Services Will You Sell?</p>
<p>4. How Many Products Will You Sell From Your Website?</p>
<p>5. How Many Variables Does Your Product Have?</p>
<p>6. How Will You Accept Online Payments?</p>
<p>7. Do You Have a Web Hosting Plan?</p>
<p>8. Will You Need to Maintain the Website Yourself?</p>
<p>9. Do You Have a Marketing Plan?</p>
<p>10. How Will You Monitor Your Website Statistics?</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-bebo">
			<a href="http://www.shareaholic.com/api/share/?title=10+Questions+when+Designing+your+e-shop&amp;link=http://logilabs.com/blog/10-questions-when-designing-your-e-shop&amp;notes=1.%20What%20Are%20Your%20Business%20Goals%3F%0D%0A%0D%0A2.%20What%27s%20the%20Purpose%20of%20Your%20Website%3F%0D%0A%0D%0A3.%20What%20Type%20of%20Products%20or%20Services%20Will%20You%20Sell%3F%0D%0A%0D%0A4.%20How%20Many%20Products%20Will%20You%20Sell%20From%20Your%20Website%3F%0D%0A%0D%0A5.%20How%20Many%20Variables%20Does%20Your%20Product%20Have%3F%0D%0A%0D%0A6.%20How%20Will%20You%20Accept%20Online%20Payments%3F%0D%0A%0D%0A7.%20Do%20You%20Have%20a%20W&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=196&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://logilabs.com/blog/10-questions-when-designing-your-e-shop/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=10+Questions+when+Designing+your+e-shop&amp;link=http://logilabs.com/blog/10-questions-when-designing-your-e-shop&amp;notes=1.%20What%20Are%20Your%20Business%20Goals%3F%0D%0A%0D%0A2.%20What%27s%20the%20Purpose%20of%20Your%20Website%3F%0D%0A%0D%0A3.%20What%20Type%20of%20Products%20or%20Services%20Will%20You%20Sell%3F%0D%0A%0D%0A4.%20How%20Many%20Products%20Will%20You%20Sell%20From%20Your%20Website%3F%0D%0A%0D%0A5.%20How%20Many%20Variables%20Does%20Your%20Product%20Have%3F%0D%0A%0D%0A6.%20How%20Will%20You%20Accept%20Online%20Payments%3F%0D%0A%0D%0A7.%20Do%20You%20Have%20a%20W&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=10+Questions+when+Designing+your+e-shop&amp;link=http://logilabs.com/blog/10-questions-when-designing-your-e-shop&amp;notes=1.%20What%20Are%20Your%20Business%20Goals%3F%0D%0A%0D%0A2.%20What%27s%20the%20Purpose%20of%20Your%20Website%3F%0D%0A%0D%0A3.%20What%20Type%20of%20Products%20or%20Services%20Will%20You%20Sell%3F%0D%0A%0D%0A4.%20How%20Many%20Products%20Will%20You%20Sell%20From%20Your%20Website%3F%0D%0A%0D%0A5.%20How%20Many%20Variables%20Does%20Your%20Product%20Have%3F%0D%0A%0D%0A6.%20How%20Will%20You%20Accept%20Online%20Payments%3F%0D%0A%0D%0A7.%20Do%20You%20Have%20a%20W&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=10+Questions+when+Designing+your+e-shop&amp;link=http://logilabs.com/blog/10-questions-when-designing-your-e-shop&amp;notes=1.%20What%20Are%20Your%20Business%20Goals%3F%0D%0A%0D%0A2.%20What%27s%20the%20Purpose%20of%20Your%20Website%3F%0D%0A%0D%0A3.%20What%20Type%20of%20Products%20or%20Services%20Will%20You%20Sell%3F%0D%0A%0D%0A4.%20How%20Many%20Products%20Will%20You%20Sell%20From%20Your%20Website%3F%0D%0A%0D%0A5.%20How%20Many%20Variables%20Does%20Your%20Product%20Have%3F%0D%0A%0D%0A6.%20How%20Will%20You%20Accept%20Online%20Payments%3F%0D%0A%0D%0A7.%20Do%20You%20Have%20a%20W&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=10+Questions+when+Designing+your+e-shop&amp;link=http://logilabs.com/blog/10-questions-when-designing-your-e-shop&amp;notes=1.%20What%20Are%20Your%20Business%20Goals%3F%0D%0A%0D%0A2.%20What%27s%20the%20Purpose%20of%20Your%20Website%3F%0D%0A%0D%0A3.%20What%20Type%20of%20Products%20or%20Services%20Will%20You%20Sell%3F%0D%0A%0D%0A4.%20How%20Many%20Products%20Will%20You%20Sell%20From%20Your%20Website%3F%0D%0A%0D%0A5.%20How%20Many%20Variables%20Does%20Your%20Product%20Have%3F%0D%0A%0D%0A6.%20How%20Will%20You%20Accept%20Online%20Payments%3F%0D%0A%0D%0A7.%20Do%20You%20Have%20a%20W&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=10+Questions+when+Designing+your+e-shop&amp;link=http://logilabs.com/blog/10-questions-when-designing-your-e-shop&amp;notes=1.%20What%20Are%20Your%20Business%20Goals%3F%0D%0A%0D%0A2.%20What%27s%20the%20Purpose%20of%20Your%20Website%3F%0D%0A%0D%0A3.%20What%20Type%20of%20Products%20or%20Services%20Will%20You%20Sell%3F%0D%0A%0D%0A4.%20How%20Many%20Products%20Will%20You%20Sell%20From%20Your%20Website%3F%0D%0A%0D%0A5.%20How%20Many%20Variables%20Does%20Your%20Product%20Have%3F%0D%0A%0D%0A6.%20How%20Will%20You%20Accept%20Online%20Payments%3F%0D%0A%0D%0A7.%20Do%20You%20Have%20a%20W&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://logilabs.com/blog/10-questions-when-designing-your-e-shop/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>5 Quick tips for social media marketing</title>
		<link>http://logilabs.com/blog/5-quick-tips-for-social-media-marketing</link>
		<comments>http://logilabs.com/blog/5-quick-tips-for-social-media-marketing#comments</comments>
		<pubDate>Sat, 26 Jun 2010 09:18:53 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Web Design Blog]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://logilabs.com/blog/?p=8</guid>
		<description><![CDATA[1. Search Engine Rank Awareness 2. Additional Site Traffic from Social Media Posts 3. Use Social Media for SEO-Based Links 4. Target Specific Markets 5. Improved Brand Recognition Share this on Bebo Subscribe to the comments for this post? Share this on del.icio.us Share this on Facebook Share this on Reddit Stumble upon something good? [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-37" title="social-networking" src="http://logilabs.com/blog/wp-content/uploads/2010/06/social-networking.png" alt="" width="335" height="220" />1. Search Engine Rank Awareness<br />
2. Additional Site Traffic from Social Media Posts<br />
3. Use Social Media for SEO-Based Links<br />
4. Target Specific Markets<br />
5. Improved Brand Recognition</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-bebo">
			<a href="http://www.shareaholic.com/api/share/?title=5+Quick+tips+for+social+media+marketing&amp;link=http://logilabs.com/blog/5-quick-tips-for-social-media-marketing&amp;notes=1.%20Search%20Engine%20Rank%20Awareness%0D%0A2.%20Additional%20Site%20Traffic%20from%20Social%20Media%20Posts%0D%0A3.%20Use%20Social%20Media%20for%20SEO-Based%20Links%0D%0A4.%20Target%20Specific%20Markets%0D%0A5.%20Improved%20Brand%20Recognition&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=196&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://logilabs.com/blog/5-quick-tips-for-social-media-marketing/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=5+Quick+tips+for+social+media+marketing&amp;link=http://logilabs.com/blog/5-quick-tips-for-social-media-marketing&amp;notes=1.%20Search%20Engine%20Rank%20Awareness%0D%0A2.%20Additional%20Site%20Traffic%20from%20Social%20Media%20Posts%0D%0A3.%20Use%20Social%20Media%20for%20SEO-Based%20Links%0D%0A4.%20Target%20Specific%20Markets%0D%0A5.%20Improved%20Brand%20Recognition&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=5+Quick+tips+for+social+media+marketing&amp;link=http://logilabs.com/blog/5-quick-tips-for-social-media-marketing&amp;notes=1.%20Search%20Engine%20Rank%20Awareness%0D%0A2.%20Additional%20Site%20Traffic%20from%20Social%20Media%20Posts%0D%0A3.%20Use%20Social%20Media%20for%20SEO-Based%20Links%0D%0A4.%20Target%20Specific%20Markets%0D%0A5.%20Improved%20Brand%20Recognition&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=5+Quick+tips+for+social+media+marketing&amp;link=http://logilabs.com/blog/5-quick-tips-for-social-media-marketing&amp;notes=1.%20Search%20Engine%20Rank%20Awareness%0D%0A2.%20Additional%20Site%20Traffic%20from%20Social%20Media%20Posts%0D%0A3.%20Use%20Social%20Media%20for%20SEO-Based%20Links%0D%0A4.%20Target%20Specific%20Markets%0D%0A5.%20Improved%20Brand%20Recognition&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=5+Quick+tips+for+social+media+marketing&amp;link=http://logilabs.com/blog/5-quick-tips-for-social-media-marketing&amp;notes=1.%20Search%20Engine%20Rank%20Awareness%0D%0A2.%20Additional%20Site%20Traffic%20from%20Social%20Media%20Posts%0D%0A3.%20Use%20Social%20Media%20for%20SEO-Based%20Links%0D%0A4.%20Target%20Specific%20Markets%0D%0A5.%20Improved%20Brand%20Recognition&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=5+Quick+tips+for+social+media+marketing&amp;link=http://logilabs.com/blog/5-quick-tips-for-social-media-marketing&amp;notes=1.%20Search%20Engine%20Rank%20Awareness%0D%0A2.%20Additional%20Site%20Traffic%20from%20Social%20Media%20Posts%0D%0A3.%20Use%20Social%20Media%20for%20SEO-Based%20Links%0D%0A4.%20Target%20Specific%20Markets%0D%0A5.%20Improved%20Brand%20Recognition&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://logilabs.com/blog/5-quick-tips-for-social-media-marketing/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a blog</title>
		<link>http://logilabs.com/blog/creating-a-blog</link>
		<comments>http://logilabs.com/blog/creating-a-blog#comments</comments>
		<pubDate>Tue, 22 Jun 2010 09:52:23 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Web Design Blog]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://logilabs.com/blog/?p=15</guid>
		<description><![CDATA[1. Identify your readers 2. Create social media accounts. 3. Establish your social media presence. 4. Determine where to place your blog. 5. Use the right keywords. 6. Choose a blogging platform 7. Plan your posts 8. Network with influencers 9. Promote your blog 10. Measure results Share this on Bebo Subscribe to the comments [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-41" title="blog" src="http://logilabs.com/blog/wp-content/uploads/2010/06/blog.png" alt="" width="335" height="220" />1. Identify your readers<br />
2. Create social media accounts.<br />
3. Establish your social media presence.<br />
4. Determine where to place your blog.<br />
5. Use the right keywords.<br />
6. Choose a blogging platform<br />
7. Plan your posts<br />
8. Network with influencers<br />
9. Promote your blog<br />
10. Measure results</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-bebo">
			<a href="http://www.shareaholic.com/api/share/?title=Creating+a+blog&amp;link=http://logilabs.com/blog/creating-a-blog&amp;notes=1.%20Identify%20your%20readers%0D%0A2.%20Create%20social%20media%20accounts.%0D%0A3.%20Establish%20your%20social%20media%20presence.%0D%0A4.%20Determine%20where%20to%20place%20your%20blog.%0D%0A5.%20Use%20the%20right%20keywords.%0D%0A6.%20Choose%20a%20blogging%20platform%0D%0A7.%20Plan%20your%20posts%0D%0A8.%20Network%20with%20influencers%0D%0A9.%20Promote%20your%20blog%0D%0A10.%20Measure%20results&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=196&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://logilabs.com/blog/creating-a-blog/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Creating+a+blog&amp;link=http://logilabs.com/blog/creating-a-blog&amp;notes=1.%20Identify%20your%20readers%0D%0A2.%20Create%20social%20media%20accounts.%0D%0A3.%20Establish%20your%20social%20media%20presence.%0D%0A4.%20Determine%20where%20to%20place%20your%20blog.%0D%0A5.%20Use%20the%20right%20keywords.%0D%0A6.%20Choose%20a%20blogging%20platform%0D%0A7.%20Plan%20your%20posts%0D%0A8.%20Network%20with%20influencers%0D%0A9.%20Promote%20your%20blog%0D%0A10.%20Measure%20results&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Creating+a+blog&amp;link=http://logilabs.com/blog/creating-a-blog&amp;notes=1.%20Identify%20your%20readers%0D%0A2.%20Create%20social%20media%20accounts.%0D%0A3.%20Establish%20your%20social%20media%20presence.%0D%0A4.%20Determine%20where%20to%20place%20your%20blog.%0D%0A5.%20Use%20the%20right%20keywords.%0D%0A6.%20Choose%20a%20blogging%20platform%0D%0A7.%20Plan%20your%20posts%0D%0A8.%20Network%20with%20influencers%0D%0A9.%20Promote%20your%20blog%0D%0A10.%20Measure%20results&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Creating+a+blog&amp;link=http://logilabs.com/blog/creating-a-blog&amp;notes=1.%20Identify%20your%20readers%0D%0A2.%20Create%20social%20media%20accounts.%0D%0A3.%20Establish%20your%20social%20media%20presence.%0D%0A4.%20Determine%20where%20to%20place%20your%20blog.%0D%0A5.%20Use%20the%20right%20keywords.%0D%0A6.%20Choose%20a%20blogging%20platform%0D%0A7.%20Plan%20your%20posts%0D%0A8.%20Network%20with%20influencers%0D%0A9.%20Promote%20your%20blog%0D%0A10.%20Measure%20results&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Creating+a+blog&amp;link=http://logilabs.com/blog/creating-a-blog&amp;notes=1.%20Identify%20your%20readers%0D%0A2.%20Create%20social%20media%20accounts.%0D%0A3.%20Establish%20your%20social%20media%20presence.%0D%0A4.%20Determine%20where%20to%20place%20your%20blog.%0D%0A5.%20Use%20the%20right%20keywords.%0D%0A6.%20Choose%20a%20blogging%20platform%0D%0A7.%20Plan%20your%20posts%0D%0A8.%20Network%20with%20influencers%0D%0A9.%20Promote%20your%20blog%0D%0A10.%20Measure%20results&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Creating+a+blog&amp;link=http://logilabs.com/blog/creating-a-blog&amp;notes=1.%20Identify%20your%20readers%0D%0A2.%20Create%20social%20media%20accounts.%0D%0A3.%20Establish%20your%20social%20media%20presence.%0D%0A4.%20Determine%20where%20to%20place%20your%20blog.%0D%0A5.%20Use%20the%20right%20keywords.%0D%0A6.%20Choose%20a%20blogging%20platform%0D%0A7.%20Plan%20your%20posts%0D%0A8.%20Network%20with%20influencers%0D%0A9.%20Promote%20your%20blog%0D%0A10.%20Measure%20results&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://logilabs.com/blog/creating-a-blog/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Tips</title>
		<link>http://logilabs.com/blog/twitter-tips</link>
		<comments>http://logilabs.com/blog/twitter-tips#comments</comments>
		<pubDate>Sun, 20 Jun 2010 09:33:09 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Web Design Blog]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://logilabs.com/blog/?p=11</guid>
		<description><![CDATA[Regular Postings Retweet Be Helpful Don&#8217;t Be A Follow CopyCat What to Tweet Comment Say Thank You Be Personal Post Pictures/Video Talk About More Than Yourself Share this on Bebo Subscribe to the comments for this post? Share this on del.icio.us Share this on Facebook Share this on Reddit Stumble upon something good? Share it [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>Regular Postings<img class="alignright size-full wp-image-35" title="twitter" src="http://logilabs.com/blog/wp-content/uploads/2010/06/twitter3.png" alt="" width="335" height="220" /></li>
<li>Retweet</li>
<li>Be Helpful</li>
<li>Don&#8217;t Be A Follow CopyCat</li>
<li>What to Tweet</li>
<li>Comment</li>
<li>Say Thank You</li>
<li>Be Personal</li>
<li>Post Pictures/Video</li>
<li>Talk About More Than Yourself</li>
</ol>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-bebo">
			<a href="http://www.shareaholic.com/api/share/?title=Twitter+Tips&amp;link=http://logilabs.com/blog/twitter-tips&amp;notes=%0D%0A%09Regular%20Postings%0D%0A%09Retweet%0D%0A%09Be%20Helpful%0D%0A%09Don%27t%20Be%20A%20Follow%20CopyCat%0D%0A%09What%20to%20Tweet%0D%0A%09Comment%0D%0A%09Say%20Thank%20You%0D%0A%09Be%20Personal%0D%0A%09Post%20Pictures%2FVideo%0D%0A%09Talk%20About%20More%20Than%20Yourself%0D%0A&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=196&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://logilabs.com/blog/twitter-tips/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Twitter+Tips&amp;link=http://logilabs.com/blog/twitter-tips&amp;notes=%0D%0A%09Regular%20Postings%0D%0A%09Retweet%0D%0A%09Be%20Helpful%0D%0A%09Don%27t%20Be%20A%20Follow%20CopyCat%0D%0A%09What%20to%20Tweet%0D%0A%09Comment%0D%0A%09Say%20Thank%20You%0D%0A%09Be%20Personal%0D%0A%09Post%20Pictures%2FVideo%0D%0A%09Talk%20About%20More%20Than%20Yourself%0D%0A&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Twitter+Tips&amp;link=http://logilabs.com/blog/twitter-tips&amp;notes=%0D%0A%09Regular%20Postings%0D%0A%09Retweet%0D%0A%09Be%20Helpful%0D%0A%09Don%27t%20Be%20A%20Follow%20CopyCat%0D%0A%09What%20to%20Tweet%0D%0A%09Comment%0D%0A%09Say%20Thank%20You%0D%0A%09Be%20Personal%0D%0A%09Post%20Pictures%2FVideo%0D%0A%09Talk%20About%20More%20Than%20Yourself%0D%0A&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Twitter+Tips&amp;link=http://logilabs.com/blog/twitter-tips&amp;notes=%0D%0A%09Regular%20Postings%0D%0A%09Retweet%0D%0A%09Be%20Helpful%0D%0A%09Don%27t%20Be%20A%20Follow%20CopyCat%0D%0A%09What%20to%20Tweet%0D%0A%09Comment%0D%0A%09Say%20Thank%20You%0D%0A%09Be%20Personal%0D%0A%09Post%20Pictures%2FVideo%0D%0A%09Talk%20About%20More%20Than%20Yourself%0D%0A&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Twitter+Tips&amp;link=http://logilabs.com/blog/twitter-tips&amp;notes=%0D%0A%09Regular%20Postings%0D%0A%09Retweet%0D%0A%09Be%20Helpful%0D%0A%09Don%27t%20Be%20A%20Follow%20CopyCat%0D%0A%09What%20to%20Tweet%0D%0A%09Comment%0D%0A%09Say%20Thank%20You%0D%0A%09Be%20Personal%0D%0A%09Post%20Pictures%2FVideo%0D%0A%09Talk%20About%20More%20Than%20Yourself%0D%0A&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Twitter+Tips&amp;link=http://logilabs.com/blog/twitter-tips&amp;notes=%0D%0A%09Regular%20Postings%0D%0A%09Retweet%0D%0A%09Be%20Helpful%0D%0A%09Don%27t%20Be%20A%20Follow%20CopyCat%0D%0A%09What%20to%20Tweet%0D%0A%09Comment%0D%0A%09Say%20Thank%20You%0D%0A%09Be%20Personal%0D%0A%09Post%20Pictures%2FVideo%0D%0A%09Talk%20About%20More%20Than%20Yourself%0D%0A&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://logilabs.com/blog/twitter-tips/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://logilabs.com/blog/hello-world</link>
		<comments>http://logilabs.com/blog/hello-world#comments</comments>
		<pubDate>Wed, 09 Jun 2010 09:25:17 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Web Design Blog]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://logilabs.com/blog/?p=1</guid>
		<description><![CDATA[Welcome to Logilabs Web Design Blog.  Here we will be bloging about web design, e-commerce, e-marketing, cms, seo and web hosting. We hope you will find our blog useful and interesting. Please feel free to comment on our posts. Share this on Bebo Subscribe to the comments for this post? Share this on del.icio.us Share [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome to Logilabs <a title="web design" href="http://www.logilabs.com" target="_blank">Web Design</a> Blog.  Here we will be bloging about web design, e-commerce, e-marketing, cms, seo and web hosting. We hope you will find our blog useful and interesting. Please feel free to comment on our posts. <img class="alignright size-full wp-image-39" title="hello-world" src="http://logilabs.com/blog/wp-content/uploads/2010/06/hello-world.png" alt="" width="335" height="220" /></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-bebo">
			<a href="http://www.shareaholic.com/api/share/?title=Hello+world%21&amp;link=http://logilabs.com/blog/hello-world&amp;notes=Welcome%20to%20Logilabs%20Web%20Design%20Blog.%C2%A0%20Here%20we%20will%20be%20bloging%20about%20web%20design%2C%20e-commerce%2C%20e-marketing%2C%20cms%2C%20seo%20and%20web%20hosting.%20We%20hope%20you%20will%20find%20our%20blog%20useful%20and%20interesting.%20Please%20feel%20free%20to%20comment%20on%20our%20posts.%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=196&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://logilabs.com/blog/hello-world/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Hello+world%21&amp;link=http://logilabs.com/blog/hello-world&amp;notes=Welcome%20to%20Logilabs%20Web%20Design%20Blog.%C2%A0%20Here%20we%20will%20be%20bloging%20about%20web%20design%2C%20e-commerce%2C%20e-marketing%2C%20cms%2C%20seo%20and%20web%20hosting.%20We%20hope%20you%20will%20find%20our%20blog%20useful%20and%20interesting.%20Please%20feel%20free%20to%20comment%20on%20our%20posts.%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Hello+world%21&amp;link=http://logilabs.com/blog/hello-world&amp;notes=Welcome%20to%20Logilabs%20Web%20Design%20Blog.%C2%A0%20Here%20we%20will%20be%20bloging%20about%20web%20design%2C%20e-commerce%2C%20e-marketing%2C%20cms%2C%20seo%20and%20web%20hosting.%20We%20hope%20you%20will%20find%20our%20blog%20useful%20and%20interesting.%20Please%20feel%20free%20to%20comment%20on%20our%20posts.%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Hello+world%21&amp;link=http://logilabs.com/blog/hello-world&amp;notes=Welcome%20to%20Logilabs%20Web%20Design%20Blog.%C2%A0%20Here%20we%20will%20be%20bloging%20about%20web%20design%2C%20e-commerce%2C%20e-marketing%2C%20cms%2C%20seo%20and%20web%20hosting.%20We%20hope%20you%20will%20find%20our%20blog%20useful%20and%20interesting.%20Please%20feel%20free%20to%20comment%20on%20our%20posts.%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Hello+world%21&amp;link=http://logilabs.com/blog/hello-world&amp;notes=Welcome%20to%20Logilabs%20Web%20Design%20Blog.%C2%A0%20Here%20we%20will%20be%20bloging%20about%20web%20design%2C%20e-commerce%2C%20e-marketing%2C%20cms%2C%20seo%20and%20web%20hosting.%20We%20hope%20you%20will%20find%20our%20blog%20useful%20and%20interesting.%20Please%20feel%20free%20to%20comment%20on%20our%20posts.%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Hello+world%21&amp;link=http://logilabs.com/blog/hello-world&amp;notes=Welcome%20to%20Logilabs%20Web%20Design%20Blog.%C2%A0%20Here%20we%20will%20be%20bloging%20about%20web%20design%2C%20e-commerce%2C%20e-marketing%2C%20cms%2C%20seo%20and%20web%20hosting.%20We%20hope%20you%20will%20find%20our%20blog%20useful%20and%20interesting.%20Please%20feel%20free%20to%20comment%20on%20our%20posts.%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://logilabs.com/blog/hello-world/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

