<?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>SeeThrough Web Blog</title>
	<atom:link href="http://seethroughweb.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://seethroughweb.com/blog</link>
	<description>Tutorials, tips, snippets and observations about TYPO3, Magento, and our web work in general.</description>
	<lastBuildDate>Fri, 27 Apr 2012 16:28:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Sending emails in Typo3 4.7</title>
		<link>http://seethroughweb.com/blog/?p=366</link>
		<comments>http://seethroughweb.com/blog/?p=366#comments</comments>
		<pubDate>Fri, 27 Apr 2012 16:27:52 +0000</pubDate>
		<dc:creator>Indira</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[t3lib_mail]]></category>
		<category><![CDATA[TYPO3]]></category>

		<guid isPermaLink="false">http://seethroughweb.com/blog/?p=366</guid>
		<description><![CDATA[Today I updated my Typo3 installation with the 4.7 version released a few days ago. After the update the backend was fine, but then in the frontend I had a PHP error saying that there was a problem with the class file t3lib_html_mail.php. It turns out that the html_mail class was deprecated since Typo3 4.5 [...]]]></description>
			<content:encoded><![CDATA[<p>Today I updated my Typo3 installation with the 4.7 version released a few days ago. After the update the backend was fine, but then in the frontend I had a PHP error saying that there was a problem with the class file t3lib_html_mail.php.<br />
It turns out that the html_mail class was deprecated since Typo3 4.5 and I was using it in a custom extension.<br />
The solution was to replace that file with the t3lib_mail class. However, there is no t3lib_mail.php file under the t3lib directory. The question then is: where is the t3lib_mail class file? This was not clear in the different sources I checked. After two or three hours spent in this silly question I found that the name of the class is actually t3lib_mail_message.php, so the steps would be:</p>
<p>1- Replace html_mail php class included for:<br />
<strong>require_once(PATH_t3lib.&#8217;/mail/class.t3lib_mail_message.php&#8217;);</strong></p>
<p>2- Go to your custom sendEmail() method (this is where you create the instance of the html_mail class) and comment your code, use this as an example instead:<br />
<strong>$mail = t3lib_div::makeInstance(&#8216;t3lib_mail_Message&#8217;);</strong><br />
<strong> $mail-&gt;setFrom(&#8220;email1@example.com&#8221;);</strong><br />
<strong> $mail-&gt;setTo(&#8220;email2@example.com&#8221;);</strong><br />
<strong> $mail-&gt;setSubject($subject);</strong><br />
<strong> $mail-&gt;setBody($content);</strong><br />
<strong> $mail-&gt;send();</strong></p>
<p><strong></strong><br />
It seems that Powermail also uses the html_mail class, but there should be an update for that. In case you don&#8217;t want to use the new API consider using this suggestion<br />
<strong>$TYPO3_CONF_VARS['MAIL']['substituteOldMailAPI'] = 0;</strong></p>
<p>Recommended links:</p>
<p>http://buzz.typo3.org/teams/core/article/your-first-blog/</p>
<p>Hope this helps.</p>
<script type="text/javascript">  linkscolor = "000000";  highlightscolor = "888888";  backgroundcolor = "FFFFFF";  channel = "none";   </script><script type="text/javascript" src="http://www.addmarx.com/dynamicbookmark_compressed.php"></script><span><a onClick="clickDynamic1(this); return false;" href="http://www.addmarx.com"><img style="padding:0px; margin:0px" src="http://seethroughweb.com/blog/wp-content/plugins/addmarx/sharebookmarx.png" border="0"></a></span><span style="position:absolute; z-index:1000001; margin-top:24px; margin-left:-127px; visibility:hidden;"><iframe id="addmarx_empty" scrolling="no" frameborder="0"></iframe></span><p class="addmarx_spacer"></p><!-- Please place the above code into your site where you want to have a bookmark/share/publicize link. Please do not change any of the code aside from the link text or image, or else the code may not work properly.  -->]]></content:encoded>
			<wfw:commentRss>http://seethroughweb.com/blog/?feed=rss2&#038;p=366</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ajax with Typo3</title>
		<link>http://seethroughweb.com/blog/?p=361</link>
		<comments>http://seethroughweb.com/blog/?p=361#comments</comments>
		<pubDate>Fri, 30 Mar 2012 14:09:45 +0000</pubDate>
		<dc:creator>Indira</dc:creator>
				<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[TYPO3 snippets]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://seethroughweb.com/blog/?p=361</guid>
		<description><![CDATA[If you want to use Ajax (in my case I was using jQuery) with Typo3 then you may want to use the eID mechanism. eID stands for Extension ID. When Typo3 receives a URL that contains the eID parameter (for example: www.mydomain.com/index.php?eID=myextension), then the normal process stops and there won&#8217;t be any frontend output, it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<div>If you want to use Ajax (in my case I was using jQuery) with Typo3 then you may want to use the eID mechanism. eID stands for Extension ID. When Typo3 receives a URL that contains the eID parameter (for example: www.mydomain.com/index.php?eID=myextension), then the normal process stops and there won&#8217;t be any frontend output, it&#8217;s not cached and doens&#8217;t generate header code etc. With this the entire FE of TYPO3 is omitted. The only output is the result of our method. Before using this, everytime I tried to use ajax with jQuery and print the results, I was receving the entire HTML structure of the page with all the header and all the information from the frontend. This is what you need to do:</div>
<p>1 &#8211; Create a new php class inside your custom extension</p>
<p>&lt;?php<br />
require_once(PATH_t3lib . &#8216;class.t3lib_befunc.php&#8217;);<br />
require_once(PATH_t3lib . &#8216;stddb/tables.php&#8217;);<br />
require_once(t3lib_extMgm::extPath(&#8216;cms&#8217;, &#8216;ext_tables.php&#8217;));</p>
<p>class<strong> tx_whatisit_eID</strong> {<br />
public function init() {<br />
tslib_eidtools::connectDB();<br />
}<br />
public function main() {<br />
// get params for query<br />
$param = t3lib_div::_GET();<br />
$name = $param['name'];<br />
echo &#8220;hello world &#8220;. $name;<br />
}<br />
}</p>
<p>if (defined(&#8216;TYPO3_MODE&#8217;) &amp;&amp; isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['ext/<strong>myextension/class.tx_whatisit_eid.php</strong>'])) {<br />
include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['ext/<strong>myextension/class.tx_whatisit_eid.php</strong>']);<br />
}<br />
$module = t3lib_div::makeInstance(&#8216;<strong>tx_whatisit_eID</strong>&#8216;);<br />
$module-&gt;init();<br />
$module-&gt;main();<br />
?&gt;</p>
<p>2- Register the class in ext_localconf.php<br />
$GLOBALS['TYPO3_CONF_VARS']['FE']['eID_include']['<strong>myextension</strong>'] = &#8216;EXT:<strong>myextension/class.tx_whatisit_eid.php</strong>&#8216;;</p>
<p>3- In your javascript file you can call:<br />
$.get(&#8220;http://mydomain.com/index.php?eID=<strong>myextension</strong>&#8220;, {name: &#8216;John&#8217;}, function(data) {<br />
alert(data);<br />
} );</p>
<p>Hope you find this useful.<br />
Thanks to Niels Frohling for his help too.</p>
<script type="text/javascript">  linkscolor = "000000";  highlightscolor = "888888";  backgroundcolor = "FFFFFF";  channel = "none";   </script><script type="text/javascript" src="http://www.addmarx.com/dynamicbookmark_compressed.php"></script><span><a onClick="clickDynamic1(this); return false;" href="http://www.addmarx.com"><img style="padding:0px; margin:0px" src="http://seethroughweb.com/blog/wp-content/plugins/addmarx/sharebookmarx.png" border="0"></a></span><span style="position:absolute; z-index:1000001; margin-top:24px; margin-left:-127px; visibility:hidden;"><iframe id="addmarx_empty" scrolling="no" frameborder="0"></iframe></span><p class="addmarx_spacer"></p><!-- Please place the above code into your site where you want to have a bookmark/share/publicize link. Please do not change any of the code aside from the link text or image, or else the code may not work properly.  -->]]></content:encoded>
			<wfw:commentRss>http://seethroughweb.com/blog/?feed=rss2&#038;p=361</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What taxes should you be collecting through your E-commerce Website in Canada?</title>
		<link>http://seethroughweb.com/blog/?p=352</link>
		<comments>http://seethroughweb.com/blog/?p=352#comments</comments>
		<pubDate>Mon, 19 Mar 2012 23:04:06 +0000</pubDate>
		<dc:creator>Simon Browning</dc:creator>
				<category><![CDATA[ecommerce]]></category>

		<guid isPermaLink="false">http://seethroughweb.com/blog/?p=352</guid>
		<description><![CDATA[I was working with a client today who will soon be launching an e-commerce website  and we were going over the taxes to be collected through the site.  It&#8217;s a little bit involved with all of the different provincial tax rates we have in Canada, so I thought I&#8217;d post the details for future reference. [...]]]></description>
			<content:encoded><![CDATA[<p>I was working with a client today who will soon be launching an e-commerce website  and we were going over the taxes to be collected through the site.  It&#8217;s a little bit involved with all of the different provincial tax rates we have in Canada, so I thought I&#8217;d post the details for future reference.</p>
<p>In every province or territory of Canada, we must pay a federal tax on most items we purchase.  In most provinces of Canada, we must also pay a provincial tax.  Sometimes these taxes are displayed separately (federal: GST, provincial: RST, PST, or QST), sometimes they are combined into a single, harmonized tax (HST).</p>
<h2><strong>For products purchased and delivered within the same province: </strong></h2>
<p>In some provinces the provincial and federal portions are blended into a single “harmonized” tax.</p>
<p>For example, in Ontario, one would pay a single 13% tax</p>
<blockquote>
<table width="200" border="0">
<tbody>
<tr>
<td>Subtotal:</td>
<td>$ 5</td>
</tr>
<tr>
<td>Shipping:</td>
<td>$ 5</td>
</tr>
<tr>
<td>HST:</td>
<td>$ 1.30*</td>
</tr>
<tr>
<td>Total:</td>
<td>$ 11.30</td>
</tr>
</tbody>
</table>
</blockquote>
<p>* note, the taxes are also applied to the shipping as well as any handling fees.</p>
<p><strong>In some provinces the provincial and federal portions are separate.</strong></p>
<p>For example, in Manitoba one would pay a 5% federal and a 7% provincial tax. Both of these taxes are usually displayed separately on an invoice, as in:</p>
<blockquote>
<table width="200" border="0">
<tbody>
<tr>
<td>Subtotal:</td>
<td>$ 5</td>
</tr>
<tr>
<td>Shipping:</td>
<td>$ 5</td>
</tr>
<tr>
<td>RST:</td>
<td>$ .70</td>
</tr>
<tr>
<td>GST:</td>
<td>$ .50</td>
</tr>
<tr>
<td>Total:</td>
<td>$11.20</td>
</tr>
</tbody>
</table>
</blockquote>
<p>In two provinces (Prince Edward Island and Quebec), the provincial tax is applied to the total with GST already applied.</p>
<p>For example, in PEI:</p>
<blockquote>
<table width="200" border="0">
<tbody>
<tr>
<td>Subtotal:</td>
<td>$5</td>
</tr>
<tr>
<td>Shipping:</td>
<td>$5</td>
</tr>
<tr>
<td>GST:</td>
<td>$.50</td>
</tr>
<tr>
<td>SubTotal:</td>
<td>$10.50</td>
</tr>
<tr>
<td>PST:</td>
<td>$1.05</td>
</tr>
<tr>
<td>Total:</td>
<td>$11.55</td>
</tr>
</tbody>
</table>
</blockquote>
<p>&nbsp;</p>
<h2><strong>For products purchased in one province and delivered to another province:</strong></h2>
<p>If you are shipping the product out of your province to a province that participates in HST, you are required to collect HST at the provinces rate (different provinces have different HST rates).</p>
<p>Ex. Nova Scotia</p>
<blockquote>
<table width="200" border="0">
<tbody>
<tr>
<td>Subtotal:</td>
<td>$ 5</td>
</tr>
<tr>
<td>Shipping:</td>
<td>$ 5</td>
</tr>
<tr>
<td>HST:</td>
<td>$ 1.50</td>
</tr>
<tr>
<td>Total:</td>
<td>$11.50</td>
</tr>
</tbody>
</table>
</blockquote>
<p>If you are shipping the product out of your province to Prince Edward Island or Saskatchewan, you are required to collect GST, and encouraged to collect PST (at the provinces applicable rates).</p>
<p>Ex. Saskatchewan</p>
<blockquote>
<table width="200" border="0">
<tbody>
<tr>
<td>Subtotal:</td>
<td>$ 5</td>
</tr>
<tr>
<td>Shipping:</td>
<td>$ 5</td>
</tr>
<tr>
<td>PST:</td>
<td>$ .50</td>
</tr>
<tr>
<td>GST:</td>
<td>$ .50</td>
</tr>
<tr>
<td>Total:</td>
<td>$11.00</td>
</tr>
</tbody>
</table>
</blockquote>
<p>If you are shipping the product out of your province to Manitoba, you are required to collect GST and Manitoba’s RST</p>
<blockquote>
<table width="200" border="0">
<tbody>
<tr>
<td>Subtotal:</td>
<td>$ 5</td>
</tr>
<tr>
<td>Shipping:</td>
<td>$ 5</td>
</tr>
<tr>
<td>RST:</td>
<td>$ .70</td>
</tr>
<tr>
<td>GST:</td>
<td>$ .50</td>
</tr>
<tr>
<td>Total:</td>
<td>$11.20</td>
</tr>
</tbody>
</table>
</blockquote>
<p>If you are shipping the product out of your province to Quebec, you are required to collect GST and QST (Quebec’s RST).</p>
<blockquote>
<table width="200" border="0">
<tbody>
<tr>
<td>Subtotal:</td>
<td>$5</td>
</tr>
<tr>
<td>Shipping:</td>
<td>$5</td>
</tr>
<tr>
<td>GST:</td>
<td>$.50</td>
</tr>
<tr>
<td>SubTotal:</td>
<td>$10.50</td>
</tr>
<tr>
<td>QST:</td>
<td>$1.00</td>
</tr>
<tr>
<td>Total:</td>
<td>$11.50</td>
</tr>
</tbody>
</table>
</blockquote>
<p>If you are shipping the product out of your province to Alberta, Nunavut, Northwest Territories, or Yukon, you are required to collect GST</p>
<blockquote>
<table width="200" border="0">
<tbody>
<tr>
<td>Subtotal:</td>
<td>$ 5</td>
</tr>
<tr>
<td>Shipping:</td>
<td>$ 5</td>
</tr>
<tr>
<td>GST:</td>
<td>.50</td>
</tr>
<tr>
<td>Total:</td>
<td>10.50</td>
</tr>
</tbody>
</table>
</blockquote>
<p>&nbsp;</p>
<h2><strong>For products delivered outside of Canada:</strong></h2>
<p>No tax would be charged.</p>
<blockquote>
<table width="200" border="0">
<tbody>
<tr>
<td>Subtotal:</td>
<td>$ 5</td>
</tr>
<tr>
<td>Shipping:</td>
<td>$ 5</td>
</tr>
<tr>
<td>Total:</td>
<td>$10.00</td>
</tr>
</tbody>
</table>
</blockquote>
<p>&nbsp;</p>
<h2><strong>Exemptions:</strong></h2>
<p>Certain products may be exempt from the following:</p>
<ol>
<li>provincial taxes (RST, PST, or QST),</li>
<li>the federal tax (GST),</li>
<li>both provincial and federal tax</li>
<li>HST</li>
<li>the provincial portion of HST</li>
</ol>
<p>Certain types of customers can be exempt from the following:</p>
<ol>
<li>provincial tax</li>
<li>the provincial portion of the HST</li>
</ol>
<p>&nbsp;</p>
<h2><strong>Taxes &amp; Rates:</strong></h2>
<ul>
<li>British Columbia: HST 12%</li>
<li>New Brunswick: HST 13%</li>
<li>Newfoundland and Labrador: HST 13%</li>
<li>Nova Scotia: HST 15%</li>
<li>Ontario: HST 13%</li>
</ul>
<ul>
<li>Manitoba: GST 5% + RST 7% on retail price only</li>
<li>Prince Edward Island: GST 5% + PST 10% on retail price including goods and services tax</li>
<li>Quebec: GST 5% + QST 9.5% on retail price including goods and services tax</li>
<li>Saskatchewan: GST 5% + PST 5% on retail price only</li>
</ul>
<ul>
<li>Alberta: GST 5%</li>
<li>Northwest Territories: GST 5%</li>
<li>Nunavut: GST 5%</li>
<li>Yukon: GST 5%</li>
</ul>
<p>&nbsp;</p>
<h2><strong>References: </strong></h2>
<p><a href="http://www.canadabusiness.ca/eng/guide/5155/#c5166">http://www.canadabusiness.ca/eng/guide/5155/#c5166</a></p>
<p><a href="http://news.ontario.ca/rev/en/2010/06/continuing-point-of-sale-exemption-for-ontarios-first-nations.html">http://news.ontario.ca/rev/en/2010/06/continuing-point-of-sale-exemption-for-ontarios-first-nations.html</a></p>
<script type="text/javascript">  linkscolor = "000000";  highlightscolor = "888888";  backgroundcolor = "FFFFFF";  channel = "none";   </script><script type="text/javascript" src="http://www.addmarx.com/dynamicbookmark_compressed.php"></script><span><a onClick="clickDynamic1(this); return false;" href="http://www.addmarx.com"><img style="padding:0px; margin:0px" src="http://seethroughweb.com/blog/wp-content/plugins/addmarx/sharebookmarx.png" border="0"></a></span><span style="position:absolute; z-index:1000001; margin-top:24px; margin-left:-127px; visibility:hidden;"><iframe id="addmarx_empty" scrolling="no" frameborder="0"></iframe></span><p class="addmarx_spacer"></p><!-- Please place the above code into your site where you want to have a bookmark/share/publicize link. Please do not change any of the code aside from the link text or image, or else the code may not work properly.  -->]]></content:encoded>
			<wfw:commentRss>http://seethroughweb.com/blog/?feed=rss2&#038;p=352</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Taking credit card payments through your website</title>
		<link>http://seethroughweb.com/blog/?p=319</link>
		<comments>http://seethroughweb.com/blog/?p=319#comments</comments>
		<pubDate>Wed, 29 Jun 2011 16:10:15 +0000</pubDate>
		<dc:creator>Simon Browning</dc:creator>
				<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[online payment]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://seethroughweb.com/blog/?p=319</guid>
		<description><![CDATA[It&#8217;s about a year and a half since I first posted this entry, but in light of the recent postal service disruption I think its well worth revisiting the topic. UPDATE September 2011:  Now we can offer Interac Online payments through your website as well, allowing clients to pay online directly from their bank account! [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://seethroughweb.com/blog/wp-content/uploads/2011/06/iStock_000016351927XSmall.jpg"><img class="alignright size-medium wp-image-333" title="Online payments" src="http://seethroughweb.com/blog/wp-content/uploads/2011/06/iStock_000016351927XSmall-300x249.jpg" alt="Making a payment securely online." width="300" height="249" /></a><em>It&#8217;s about a year and a half since I first posted this entry, but in light of the recent postal service disruption I think its well worth revisiting the topic.</em></p>
<p><em><strong>UPDATE September 2011:  Now we can offer Interac Online payments through your website as well, allowing clients to pay online directly from their bank account!</strong><br />
</em></p>
<p>We are frequently asked by our clients  &#8211; “<em>How can we allow customers to make payments through our web site?</em>”</p>
<p><strong>Secure online payments</strong> can be set up with <strong>minimal effort and budget</strong>, and offers great benefits that include:</p>
<ul>
<li>Clients have an additional method to make payment, which is <strong>secure, convenient, and fast</strong>;</li>
<li> The service is available <strong>24/7</strong>,  allowing customers to make payment by credit card whether someone is in the office or not (it’s always nice to check your email in the morning to find several payment receipts!);</li>
<li> Just like offline credit card transactions, once the payment has been made online, it is final (it&#8217;s not “in the mail” and won&#8217;t bounce).</li>
</ul>
<p><strong>To discuss how we can easily get this up and running on your web site, please <a title="Contact SeeThrough Web about accepting online payments" href="http://www.seethroughweb.com/contact-seethrough-web.html">contact us</a>.</strong></p>
<p>Here’s a <a title="Video demonstration of accepting online payments." href="#video">video</a> that demonstrates the process in action.</p>
<h4><strong>How does it work?</strong></h4>
<p>We have online payments on our own web site at <a title="Accept online payments with SeeThrough Web in Toronto" href="http://www.seethroughweb.com" target="_blank">seethroughweb.com</a>, providing a page where a client enters an invoice number and amount, confirms, and then is transferred to the “hosted payment page” of <a title="Accept online payments with InternetSecure and SeeThrough Web" href="https://www.internetsecure.com/prices.asp?ReferID=532" target="_blank">InternetSecure</a> (our “payment gateway”).  Once on this <strong>secure</strong> page, the client then enters their full credit details and makes the actual transaction (see demonstration video below).</p>
<p>Most payment gateways offer the &#8220;hosted payment page&#8221; service; the advantage of using this service is that the gateway handles the technical and security requirements to perform the transaction, greatly reducing the cost and effort that might otherwise be required to set up online payments.</p>
<p>When the payment is complete, the customer receives a receipt by email, and we receive a “successful transaction” email that is very similar to their receipt. They are then transferred back to a “thank you” page on our website (or a “there was a problem” page if the transaction didn’t go through).</p>
<p>Payment processors we’ve worked with include: <a title="Accept credit or debit card payments through your website" href="https://www.internetsecure.com/prices.asp?ReferID=532" target="_blank">InternetSecure</a>, <a title="Acept online payments with Moneris" href="http://www.moneris.com/" target="_blank">Moneris</a>, <a title="Accept online payments with Beanstream" href="http://www.beanstream.com/public/index.asp" target="_blank">Beanstream</a>, <a title="Accept online payments with PSigate" href="http://www.psigate.com/" target="_blank">PSiGate</a>, and Desjardins; and we can likely connect with most others as well.  <a title="Accept online payments with Paypal" href="https://www.paypal.com/row/mrb/pal=4ARFBT3Y9GNQC" target="_blank">Paypal</a> can also be used and is actually quite flexible, allowing customers the option of paying with their credit card or with their Paypal account if they have one.</p>
<p><strong>Demonstration</strong><br />
<a name="video"></a><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/7cMkG3PchX0&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;hd=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube.com/v/7cMkG3PchX0&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;hd=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<script type="text/javascript">  linkscolor = "000000";  highlightscolor = "888888";  backgroundcolor = "FFFFFF";  channel = "none";   </script><script type="text/javascript" src="http://www.addmarx.com/dynamicbookmark_compressed.php"></script><span><a onClick="clickDynamic1(this); return false;" href="http://www.addmarx.com"><img style="padding:0px; margin:0px" src="http://seethroughweb.com/blog/wp-content/plugins/addmarx/sharebookmarx.png" border="0"></a></span><span style="position:absolute; z-index:1000001; margin-top:24px; margin-left:-127px; visibility:hidden;"><iframe id="addmarx_empty" scrolling="no" frameborder="0"></iframe></span><p class="addmarx_spacer"></p><!-- Please place the above code into your site where you want to have a bookmark/share/publicize link. Please do not change any of the code aside from the link text or image, or else the code may not work properly.  -->]]></content:encoded>
			<wfw:commentRss>http://seethroughweb.com/blog/?feed=rss2&#038;p=319</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why we chose the TYPO3 content management system</title>
		<link>http://seethroughweb.com/blog/?p=47</link>
		<comments>http://seethroughweb.com/blog/?p=47#comments</comments>
		<pubDate>Wed, 29 Sep 2010 15:53:48 +0000</pubDate>
		<dc:creator>Simon Browning</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://seethroughweb.com/blog/?p=47</guid>
		<description><![CDATA[A client asked me recently why it was that we selected TYPO3 as the content management system to focus on, and it got me thinking about the decision process that led up to our selection of it. In 2004 &#38; 2005  it became clear to us that clients wanted websites that they could edit themselves [...]]]></description>
			<content:encoded><![CDATA[<p>A client asked me recently why it was that we selected TYPO3 as the content management system to focus on, and it got me thinking about the decision process that led up to our selection of it.</p>
<p>In 2004 &amp; 2005  it became clear to us that clients wanted websites that they could edit themselves and we were interested in providing a solution that would allow us to quickly and easily allow them to do this.  Expanding on this need, the criteria we were specifically interested in included:</p>
<ul>
<li>the ability for clients to edit their own pages</li>
<li>flexibility of design &#8211; we didn&#8217;t want to have to bend our sites to fit the cms, or for visitors to be able to look at the design of our sites and be able to tell in what cms they had been developed</li>
<li>user friendliness</li>
<li>scalability &#8211; we wanted a platform that could grow and be enhanced as our clients business grew and changed</li>
<li>search-engine optimization-ability</li>
<li>multilingual capable</li>
<li>track record/history</li>
<li>support</li>
<li>workflow capability</li>
<li>audit log</li>
<li>open source</li>
</ul>
<p>We evaluated a number of different cms systems, setting up test versions in our office and working with each of them.  The system we selected and have been using and offering ever since is TYPO3.</p>
<p><strong>Why TYPO3</strong></p>
<p>While every system we looked at had its own particular strengths, we found that TYPO3 offered the most complete level of services and functionality.  Here are some of the highlights:<strong><br />
</strong></p>
<p><strong>Ability for clients to edit their own pages: </strong><br />
For clients, updating the website is done through through the web browser by “logging in” through an administrative interface, after which the user need only click on pencils that appear on every web page to update the relevant portion of the page.  Through the browser administrators can also add, remove, or modify pages and site sections.  If a page is added or removed the menus &amp; buttons on the website instantly update to reflect the change.</p>
<p><strong>Flexibility of Design:</strong><br />
With many of the content management systems we looked at, we found that the designs need to fit into a certain theme or mold.  Thus one could look at various websites and be able to tell just by looking at them what content management system was used to create them.  With TYPO3 we found that any design could be applied, and there is no easily visible way for a site visitor to determine that a website has been developed in TYPO3.</p>
<p><strong>Security options/access controls:</strong><br />
Detailed security options are available so that site administrators can be given access to update all pages, some pages, or even only certain elements on certain pages.</p>
<p><strong>Scalability:</strong><br />
Hundreds of modules exist to meet functional requirements (such as RSS feeds, blogs, maps, and message boards), and  due to the opensource nature of the application we have full access to the source code and can modify these modules to suit if required.  This provides great benefit and cost savings in that developing the site is more an effort in customizing existing and proven functionality then it is in creating code from scratch.</p>
<p><strong>Track Record/History:</strong><br />
All changes made through the cms are logged, so it is possible to determine who has made changes and reverse them if required.<br />
With the workflow functionality, the system can be set up so that one group of users has access to update pages on the site, but the changes don&#8217;t go live until another user(s) has approved the changes.  Several levels of approval authority are possible.</p>
<p><strong>Support:</strong><br />
One aspect of in particular that really stood out to us is the fact that TYPO3 has had a consolidated development effort since 1998.  Where many of the open source content management system have split, devided, died, or had other issues, TYPO3 has always had a single direction and is very actively developed.  Currently in version 4.4.2; 4.5 is in alpha testing; and version 5, a “next-generation” rewrite, is in heavy development.  All of these efforts are guided and directed through the TYPO3 association.</p>
<p>There are 1000s of developers working with the TYPO3 system, 1000s or pre-existing modules that can be implemented, each one of which is created by one or more developers who are often times accessible.</p>
<p><strong>Open Source:</strong></p>
<p>We were specifically interested in an open source product because it gives us the ability to modify the code if required, and provides a degree of portability.  We&#8217;ve seen many sites that have been built with proprietary management systems that effectively lock clients into their particular vendor.  While we love our clients, we had no interest in locking them into doing business with us.  TYPO3 is supported by many hosting platforms and many other agencies.</p>
<p><strong>In Conclusion:</strong></p>
<p>In the end, we selected TYPO3 because it was a content management system that allowed us to:</p>
<ul>
<li> implement any design,</li>
<li>offer a user friendly way for clients to update their own websites</li>
<li>serve as a platform on which additional functionality can be added in a cost and time effective way.</li>
</ul>
<p>If you&#8217;d like to learn more about TYPO3, please visit:</p>
<ul>
<li><a title="TYPO3 on SeeThrough Web" href="http://www.seethroughweb.com/content-management-typo3.html">the TYPO3 page on our site</a></li>
<li><a title="TYPO3 demonstration and tutorial videos" href="http://www.thedemo.ca/">our demonstration site, thedemo.ca</a></li>
<li><a title="TYPO3" href="http://www.typo3.com">typo3.com</a></li>
</ul>
<script type="text/javascript">  linkscolor = "000000";  highlightscolor = "888888";  backgroundcolor = "FFFFFF";  channel = "none";   </script><script type="text/javascript" src="http://www.addmarx.com/dynamicbookmark_compressed.php"></script><span><a onClick="clickDynamic1(this); return false;" href="http://www.addmarx.com"><img style="padding:0px; margin:0px" src="http://seethroughweb.com/blog/wp-content/plugins/addmarx/sharebookmarx.png" border="0"></a></span><span style="position:absolute; z-index:1000001; margin-top:24px; margin-left:-127px; visibility:hidden;"><iframe id="addmarx_empty" scrolling="no" frameborder="0"></iframe></span><p class="addmarx_spacer"></p><!-- Please place the above code into your site where you want to have a bookmark/share/publicize link. Please do not change any of the code aside from the link text or image, or else the code may not work properly.  -->]]></content:encoded>
			<wfw:commentRss>http://seethroughweb.com/blog/?feed=rss2&#038;p=47</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boost traffic to your web site and increase business with social bookmarking/sharing links</title>
		<link>http://seethroughweb.com/blog/?p=301</link>
		<comments>http://seethroughweb.com/blog/?p=301#comments</comments>
		<pubDate>Thu, 08 Jul 2010 17:05:09 +0000</pubDate>
		<dc:creator>Simon Browning</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[Social Internet]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[website features]]></category>

		<guid isPermaLink="false">http://seethroughweb.com/blog/?p=301</guid>
		<description><![CDATA[You see them on web sites all over the place, from news sites to online retailers. They are usually a cluster of small icons (called sharing links or social bookmarks) found at the bottom of an article or web page that the web site’s proprietor will be happy to share. Clicking anyone of these links [...]]]></description>
			<content:encoded><![CDATA[<p>You see them on web sites all over the place, from news sites to online retailers.</p>
<p>They are usually a cluster of small icons (called sharing links or social bookmarks) found at the bottom of an article or web page that the web site’s proprietor will be happy to share.</p>
<p>Clicking anyone of these links allows visitors to the site to easily share a link to a web site, web page or blog article with their friends and associates, whether it is via direct email or cross-posting to Facebook, Twitter, Linked-In, Google, Windows Live, MySpace or any other networking sites. (See example below)</p>
<p>These days, with so many online community and sharing services being used by so many people, you have to seriously wonder about the potential business opportunities you could be missing out on by not including several of these links on your site.<br />
 <br />
There are a number of public sharing services available that make the addition of these links to a web site a pretty straightforward task. Plus these links can be programmed to link back to your site’s home page, a specific interior page, blog article, or even product promotion, which could prove to be a good revenue stream.<br />
 <br />
Most of these services also provide stats, will allow you to see and assess the activity the Sharing Links are generating.</p>
<p>If you are interested in discussing a link program for your web site, please feel free to contact me at any time to discuss. (<a href="mailto:simon@stwdesign.com">simon@stwdesign.com</a>)</p>
<p style="text-align: center;"><a title="Social Bookmarks" href="http://seethroughweb.com/blog/wp-content/uploads/2010/07/bookmarks.jpg"><img class="aligncenter size-medium wp-image-303" title="bookmarks" src="http://seethroughweb.com/blog/wp-content/uploads/2010/07/bookmarks-300x126.jpg" alt="" width="300" height="126" /></a></p>
<script type="text/javascript">  linkscolor = "000000";  highlightscolor = "888888";  backgroundcolor = "FFFFFF";  channel = "none";   </script><script type="text/javascript" src="http://www.addmarx.com/dynamicbookmark_compressed.php"></script><span><a onClick="clickDynamic1(this); return false;" href="http://www.addmarx.com"><img style="padding:0px; margin:0px" src="http://seethroughweb.com/blog/wp-content/plugins/addmarx/sharebookmarx.png" border="0"></a></span><span style="position:absolute; z-index:1000001; margin-top:24px; margin-left:-127px; visibility:hidden;"><iframe id="addmarx_empty" scrolling="no" frameborder="0"></iframe></span><p class="addmarx_spacer"></p><!-- Please place the above code into your site where you want to have a bookmark/share/publicize link. Please do not change any of the code aside from the link text or image, or else the code may not work properly.  -->]]></content:encoded>
			<wfw:commentRss>http://seethroughweb.com/blog/?feed=rss2&#038;p=301</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Access level control for Administrators in TYPO3</title>
		<link>http://seethroughweb.com/blog/?p=277</link>
		<comments>http://seethroughweb.com/blog/?p=277#comments</comments>
		<pubDate>Sat, 13 Feb 2010 23:02:40 +0000</pubDate>
		<dc:creator>Simon Browning</dc:creator>
				<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[TYPO3 Editing]]></category>
		<category><![CDATA[TYPO3 video]]></category>
		<category><![CDATA[website features]]></category>

		<guid isPermaLink="false">http://seethroughweb.com/blog/?p=277</guid>
		<description><![CDATA[I&#8217;ve just posted a new video tutorial on www.thedemo.ca, which demonstrates some of the possibilities available with the access controls available for TYPO3 administrators and site editors. Administrators can be given access to everything, access to only certain pages or sections, access to only certain functionality; even the left menu can be trimmed down to [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just posted a new video tutorial on <a title="TYPO3 demonstrations and tutorial videos" href="http://www.thedemo.ca/" target="_blank">www.thedemo.ca</a>, which demonstrates some of the possibilities available with the access controls available for TYPO3 administrators and site editors.</p>
<p>Administrators can be given access to everything, access to only certain pages or sections, access to only certain functionality; even the left menu can be trimmed down to display only the controls that they require.</p>
<p>The site used in the demonstration is that of <a title="Wellspring - a network of cancer support centres." href="http://www.wellspring.ca" target="_blank">wellspring.ca</a>.  This is quite a large site, with 3000+ pages and multiple administrators.  Each site administrator has access to only their particular portion of the website: for example the Toronto administrators can only see and update the Toronto pages, calendars, events, etc; the London administrators can only see and update their section of the site, etc.</p>
<p>The tutorial is at:  <a title="Demonstration of different administrator access levels in TYPO3" href="http://www.thedemo.ca/demonstrations/different-administrator-access-levels.html" target="_blank">http://www.thedemo.ca/demonstrations/different-administrator-access-levels.html</a></p>
<script type="text/javascript">  linkscolor = "000000";  highlightscolor = "888888";  backgroundcolor = "FFFFFF";  channel = "none";   </script><script type="text/javascript" src="http://www.addmarx.com/dynamicbookmark_compressed.php"></script><span><a onClick="clickDynamic1(this); return false;" href="http://www.addmarx.com"><img style="padding:0px; margin:0px" src="http://seethroughweb.com/blog/wp-content/plugins/addmarx/sharebookmarx.png" border="0"></a></span><span style="position:absolute; z-index:1000001; margin-top:24px; margin-left:-127px; visibility:hidden;"><iframe id="addmarx_empty" scrolling="no" frameborder="0"></iframe></span><p class="addmarx_spacer"></p><!-- Please place the above code into your site where you want to have a bookmark/share/publicize link. Please do not change any of the code aside from the link text or image, or else the code may not work properly.  -->]]></content:encoded>
			<wfw:commentRss>http://seethroughweb.com/blog/?feed=rss2&#038;p=277</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to upload and link to pdf or other types of files with TYPO3</title>
		<link>http://seethroughweb.com/blog/?p=274</link>
		<comments>http://seethroughweb.com/blog/?p=274#comments</comments>
		<pubDate>Thu, 04 Feb 2010 17:30:30 +0000</pubDate>
		<dc:creator>Simon Browning</dc:creator>
				<category><![CDATA[demonstration/tutorial]]></category>
		<category><![CDATA[TYPO3]]></category>
		<category><![CDATA[TYPO3 Editing]]></category>
		<category><![CDATA[TYPO3 video]]></category>

		<guid isPermaLink="false">http://seethroughweb.com/blog/?p=274</guid>
		<description><![CDATA[I&#8217;ve just posted a new video tutorial on www.thedemo.ca, which demonstrates how to upload a pdf file and link to it from a page or pages.  The same instructions would apply for any other type of file, for example word files, powerpoint files, etc. The tutorial is at:  http://www.thedemo.ca/tutorials/how-to-link-upload-and-link-to-pdf-files.html.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just posted a new video tutorial on <a title="TYPO3 demonstrations and tutorial videos" href="http://www.thedemo.ca" target="_blank">www.thedemo.ca</a>, which demonstrates how to upload a pdf file and link to it from a page or pages.  The same instructions would apply for any other type of file, for example word files, powerpoint files, etc.</p>
<p>The tutorial is at:  <a title="How to upload and link to pdf or other type os files with TYPO3" href="http://www.thedemo.ca/tutorials/how-to-link-upload-and-link-to-pdf-files.html" target="_blank">http://www.thedemo.ca/tutorials/how-to-link-upload-and-link-to-pdf-files.html</a>.</p>
<script type="text/javascript">  linkscolor = "000000";  highlightscolor = "888888";  backgroundcolor = "FFFFFF";  channel = "none";   </script><script type="text/javascript" src="http://www.addmarx.com/dynamicbookmark_compressed.php"></script><span><a onClick="clickDynamic1(this); return false;" href="http://www.addmarx.com"><img style="padding:0px; margin:0px" src="http://seethroughweb.com/blog/wp-content/plugins/addmarx/sharebookmarx.png" border="0"></a></span><span style="position:absolute; z-index:1000001; margin-top:24px; margin-left:-127px; visibility:hidden;"><iframe id="addmarx_empty" scrolling="no" frameborder="0"></iframe></span><p class="addmarx_spacer"></p><!-- Please place the above code into your site where you want to have a bookmark/share/publicize link. Please do not change any of the code aside from the link text or image, or else the code may not work properly.  -->]]></content:encoded>
			<wfw:commentRss>http://seethroughweb.com/blog/?feed=rss2&#038;p=274</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Things to Consider when creating an online subscription/members area website</title>
		<link>http://seethroughweb.com/blog/?p=269</link>
		<comments>http://seethroughweb.com/blog/?p=269#comments</comments>
		<pubDate>Wed, 13 Jan 2010 02:52:39 +0000</pubDate>
		<dc:creator>Simon Browning</dc:creator>
				<category><![CDATA[Membership Website]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://seethroughweb.com/blog/?p=269</guid>
		<description><![CDATA[The road to a successful membership site implementation begins with detailed planning.  Here&#8217;s 10 things that should be considered before embarking on such a project. How many different types of membership will be available (ie bronze, silver, gold; annual, monthly, etc.)? Are multi-accounts possible?  For instance, can a corporation sign up and have X number [...]]]></description>
			<content:encoded><![CDATA[<p>The road to a successful membership site implementation begins with detailed planning.  Here&#8217;s 10 things that should be considered before embarking on such a project.</p>
<ol>
<li>How many different types of membership will be available (ie bronze, silver, gold; annual, monthly, etc.)?</li>
<li>Are multi-accounts possible?  For instance, can a corporation sign up and have X number of users.  If so, how is this managed?</li>
<li>Is different content available to different types of members?</li>
<li>How frequently will pricing change?</li>
<li>Are there discounts available?</li>
<li>How is the payment being processed (ie. live on the site as a member signs up, or manually in the office)?</li>
<li>Can members upgrade, downgrade, or terminate their own accounts on the site?  If so, how is site access and billing information updated?</li>
<li>Can members change their billing information on the site?</li>
<li>Do accounts expire?  If so, are expiry notification emails required?</li>
<li>Can accounts be renewed?  If so how (automatic, manual, link through email, etc.)?</li>
</ol>
<p>These 10 questions will get you headed in the right direction.  If you&#8217;re looking for a partner in your site development who has done it before, please <a title="Contact SeeThrough Web about your membership site project" href="http://www.seethroughweb.com/contact-seethrough-web.html" target="_blank">contact us</a> to discuss the details in confidence.</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">
<ol>
<li>How frequently will pricing change?</li>
<li>Are there discounts available?</li>
</ol>
</div>
<script type="text/javascript">  linkscolor = "000000";  highlightscolor = "888888";  backgroundcolor = "FFFFFF";  channel = "none";   </script><script type="text/javascript" src="http://www.addmarx.com/dynamicbookmark_compressed.php"></script><span><a onClick="clickDynamic1(this); return false;" href="http://www.addmarx.com"><img style="padding:0px; margin:0px" src="http://seethroughweb.com/blog/wp-content/plugins/addmarx/sharebookmarx.png" border="0"></a></span><span style="position:absolute; z-index:1000001; margin-top:24px; margin-left:-127px; visibility:hidden;"><iframe id="addmarx_empty" scrolling="no" frameborder="0"></iframe></span><p class="addmarx_spacer"></p><!-- Please place the above code into your site where you want to have a bookmark/share/publicize link. Please do not change any of the code aside from the link text or image, or else the code may not work properly.  -->]]></content:encoded>
			<wfw:commentRss>http://seethroughweb.com/blog/?feed=rss2&#038;p=269</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Considerations before beginning an e commerce project.</title>
		<link>http://seethroughweb.com/blog/?p=243</link>
		<comments>http://seethroughweb.com/blog/?p=243#comments</comments>
		<pubDate>Thu, 10 Dec 2009 02:30:39 +0000</pubDate>
		<dc:creator>Simon Browning</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[online payment]]></category>

		<guid isPermaLink="false">http://seethroughweb.com/blog/?p=243</guid>
		<description><![CDATA[The best way to ensure the success of an e commerce project is to make sure to be as thorough as possible with the up-front planning and thought.  Here we have some of the criteria that must be considered before embarking on an e commerce project. ]]></description>
			<content:encoded><![CDATA[<p>The best way to ensure the success of an e commerce project is to make sure to be as thorough as possible with the up-front planning and thought.  Here we have some of the criteria that must be considered before embarking on an e commerce project.  Many of the items below can be marked as Yes, No, or Nice To Have.</p>
<p><strong>Design</strong></p>
<ul>
<li> Will your current web design be used for the ecommerce site?</li>
<li> Will the ecommerce site be integrated with your current website &#8211; will the two be one, or will there be a separate “shop” site with a consistent look &amp; feel to your non-shop site?</li>
</ul>
<p><strong>Products</strong></p>
<ul>
<li> Estimated number of products</li>
<li>Are products separated by category?
<ul>
<li> estimated 	number of categories</li>
<li>can 	a product exist in multiple categories</li>
<li>Do 	you have images to be assigned to the categories?</li>
</ul>
</li>
<li> Will products have images?</li>
<li>Will products have multiple images?</li>
<li>How will the images for products be displayed/organized?</li>
<li>Will products have options (colour, size, etc.)?
<ul>
<li> Will options be selectable within a product (ie the “widget” product will have a dropdown for colour), or will each option exist as a separate product (ie one product that is red widgets, one product that is blue widgets
<ul>
<li> This 			can have inventory implications if inventory tracking is being 			done within the ecommerce system. See below.</li>
</ul>
</li>
<li>If a visitor changes a product option from a dropdown, does anything about the page change (ie looking at widgets, select blue from the dropdown, and the picture of the product updates)</li>
</ul>
</li>
<li> Will product inventory be tracked?
<ul>
<li> will products cease to display if their inventory level reaches 0</li>
<li> can products with 0 inventory be ordered (back orders)?</li>
<li> Does inventory for each product option need to be tracked individually (ie different inventory tracking for each of  10 red widgets and 10 blue widgets)</li>
</ul>
</li>
<li> Are all products physical items, or are some electronic/downloadable items?</li>
</ul>
<p><strong>Pricing</strong></p>
<ul>
<li> Same pricing for all shoppers?
<ul>
<li> Different 	pricing for different groups of shoppers?</li>
<li> If 	yes, please describe those differences.</li>
</ul>
</li>
<li> Is “special” pricing required (ie Christmas special pricing) per product?</li>
<li> Are special discounts or coupons to be offered?</li>
</ul>
<p><strong>Shipping</strong></p>
<ul>
<li> What couriers do you use?
<ul>
<li> Canada 	Post, UPS, FedEx, Purolator, others?</li>
<li> Are 	there certain couriers used for different types of orders?
<ul>
<li> If 		yes, please explain how the courier used is decided.</li>
</ul>
</li>
<li> What 	is the weight range of the products to be sold?</li>
</ul>
</li>
<li> How will shipping rates be determined?
<ul>
<li> Live rates lookup</li>
<li>table of rates</li>
<li>rate per $ value</li>
<li>other</li>
</ul>
</li>
</ul>
<p><strong>Payment</strong></p>
<ul>
<li> what forms of payment will be accepted
<ul>
<li> credit card</li>
<li> paypal</li>
<li> cheque</li>
<li> bill me</li>
<li> other</li>
</ul>
</li>
<li> are credit card transactions to be performed at the time of checkout</li>
<li> Are credit card transaction only put through once the order are shipped?</li>
<li> Do you already have a Internet Merchant Account?
<ul>
<li> If 	yes, who is it with?</li>
</ul>
</li>
<li> Do you already have a Payment Gateway account?
<ul>
<li> If yes, who is it with?</li>
</ul>
</li>
</ul>
<p><strong>Taxes</strong></p>
<ul>
<li> will taxes be charged?</li>
<li> Will taxes be: Ontario GST &amp; PST, Canada GST, outside Canada none?</li>
<li> Can some products be tax exempt?</li>
<li> Are there any other tax implications that will have to be dealt with?</li>
</ul>
<p><strong>Currencies</strong></p>
<ul>
<li> In what currency will the store operate?
<ul>
<li> If 	more than one is to be used, how is that determination determined?</li>
</ul>
</li>
<li> will the option to see rates in alternate currencies be offered?</li>
</ul>
<p><strong>Integration</strong></p>
<ul>
<li> do products/inventory need to be imported into the ecommerce site from another system?</li>
<li> do orders need to be exported from the ecommerce site to another system?
<ul>
<li> Customer 	contact info?</li>
<li> Shipments?</li>
<li> Other?</li>
</ul>
</li>
<li> is the site to be integrated with a shipping company (ie Purolator, UPS) for live shipping rates lookups?
<ul>
<li> If 	your current courier does not provide a viable online integration 	solution would you consider using a different courier for your web 	site shipments?</li>
</ul>
</li>
<li>is the site to be integrated with a payment processor for live credit card transactions?
<ul>
<li> if so, which one?</li>
<li> Do you already have an account with a credit card processor?</li>
</ul>
</li>
<li> Will the ecommerce site be integrated with your current website?
<ul>
<li> Will the two be one, or will there be a separate “shop” site with a consistent look &amp; feel to your non-shop site?</li>
</ul>
</li>
</ul>
<p><strong>Functionality for shoppers</strong></p>
<ul>
<li> wish lists?</li>
<li> tell a friend?</li>
<li> recently viewed product?</li>
<li> recently order products?</li>
<li> Re-order?</li>
<li> review previous orders?</li>
<li> Check status/look up shipping?</li>
<li> Others?</li>
</ul>
<p><strong>Attracting Shoppers </strong></p>
<ul>
<li>how will shoppers come to the site?</li>
<li>is the online store a compliment to a bricks and mortar store?</li>
<li>will you be doing a search engine campaign (seo/sem) in conjunction with the launch of the store?</li>
<li>Will code be required on the site to track goals tied to web analytics?</li>
</ul>
<p><strong>Other</strong></p>
<ul>
<li>are there other requirements that you have that we haven&#8217;t considered here?</li>
</ul>
<script type="text/javascript">  linkscolor = "000000";  highlightscolor = "888888";  backgroundcolor = "FFFFFF";  channel = "none";   </script><script type="text/javascript" src="http://www.addmarx.com/dynamicbookmark_compressed.php"></script><span><a onClick="clickDynamic1(this); return false;" href="http://www.addmarx.com"><img style="padding:0px; margin:0px" src="http://seethroughweb.com/blog/wp-content/plugins/addmarx/sharebookmarx.png" border="0"></a></span><span style="position:absolute; z-index:1000001; margin-top:24px; margin-left:-127px; visibility:hidden;"><iframe id="addmarx_empty" scrolling="no" frameborder="0"></iframe></span><p class="addmarx_spacer"></p><!-- Please place the above code into your site where you want to have a bookmark/share/publicize link. Please do not change any of the code aside from the link text or image, or else the code may not work properly.  -->]]></content:encoded>
			<wfw:commentRss>http://seethroughweb.com/blog/?feed=rss2&#038;p=243</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

