<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Asia Connect Group&#039;s Blog</title>
	<atom:link href="http://asiaconnect.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://asiaconnect.wordpress.com</link>
	<description>Premium Magento Themes, Extensions &#38; Services</description>
	<lastBuildDate>Sat, 18 Jul 2009 16:55:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='asiaconnect.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/a0e27776a8532071995412e20e934f7c?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Asia Connect Group&#039;s Blog</title>
		<link>http://asiaconnect.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://asiaconnect.wordpress.com/osd.xml" title="Asia Connect Group&#039;s Blog" />
	<atom:link rel='hub' href='http://asiaconnect.wordpress.com/?pushpress=hub'/>
		<item>
		<title>After installing magento can&#8217;t log in to admin panel</title>
		<link>http://asiaconnect.wordpress.com/2009/04/23/after-installing-magento-cant-log-in-to-admin-panel/</link>
		<comments>http://asiaconnect.wordpress.com/2009/04/23/after-installing-magento-cant-log-in-to-admin-panel/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 08:46:27 +0000</pubDate>
		<dc:creator>asiaconnect</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Guide Line]]></category>
		<category><![CDATA[Instruction]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://asia-connect.com.vn/demo/wordpress/?p=97</guid>
		<description><![CDATA[Problem Description While installing magento on xampp version 2.5 you have provided admin username and password. After installation finished you no longer login with your admin account. In fact in the &#8220;Log in to Admin Panel&#8221; window whenever you provide wrong password/username combination it displays &#8220;Invalid Username or Password.&#8221; But whenever you provide correct password [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asiaconnect.wordpress.com&amp;blog=7485118&amp;post=97&amp;subd=asiaconnect&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="font-weight:bold;"><span style="text-decoration:underline;">Problem Description</span></span><br />
While installing magento on xampp version 2.5 you have provided admin username and password. After installation finished you no longer login with your admin account. In fact in the &#8220;Log in to Admin Panel&#8221; window whenever you provide wrong password/username combination it displays &#8220;Invalid Username or Password.&#8221; But whenever you provide correct password it does not show anything. Though a new url like<br />
http://127.0.0.1/magento/index.php/admin/index/index/key/d135be4de664ab83db829120740e058a/<br />
is displayed on the address bar.<br />
Everytime you do this you can&#8217;t log in to admin panel.</p>
<p><span style="font-weight:bold;"><span style="text-decoration:underline;">Cause of the problem</span></span><br />
The problem occurs because magneto could not store cookies. We run it as localhost and localhost is not true domain but to store cookies we need a domain. That&#8217;s why login stops without saying any word.</p>
<p><span style="font-weight:bold;"><span style="text-decoration:underline;">Solution of the problem</span></span><br />
<span style="text-decoration:underline;"><span style="font-weight:bold;">Way 1:</span></span><br />
In different forums I saw they mentioned connecting as http://localhost/magento/index.php/admin will fail but if you connect as http://127.0.0.1/magento/index.php/admin it will work. But in my case IP address in the URL did not work too.<br />
I made it work into whenever I changed my browser. Suppose I installed magento using google chrome browser and I open admin url into my firefox window and it worked. Though in the firefox the url http://localhost/magento/index.php/admin did not work, but url http://127.0.0.1/magento/index.php/admin worked fine.</p>
<p><span style="text-decoration:underline;"><span style="font-weight:bold;">Way 2:</span></span><br />
-Go to app/code/core/Mage/Core/Model/Session/Abstract/Varien.php file within your magento directory.</p>
<p>-Find the code,</p>
<pre style="font-size:12px;color:black;">session_set_cookie_params(
           $this-&gt;getCookie()-&gt;getLifetime(),
           $this-&gt;getCookie()-&gt;getPath(),
           $this-&gt;getCookie()-&gt;getDomain(),
           $this-&gt;getCookie()-&gt;isSecure(),
           $this-&gt;getCookie()-&gt;getHttponly()
       );</pre>
<p>-Replace above code by,</p>
<pre style="font-size:12px;color:black;">session_set_cookie_params(
           $this-&gt;getCookie()-&gt;getLifetime(),
           $this-&gt;getCookie()-&gt;getPath()
           //$this-&gt;getCookie()-&gt;getDomain(),
           //$this-&gt;getCookie()-&gt;isSecure(),
           //$this-&gt;getCookie()-&gt;getHttponly()
       );</pre>
<p>-Save it and try to login to your magento admin panel.<br />
It would work. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asiaconnect.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asiaconnect.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asiaconnect.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asiaconnect.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/asiaconnect.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/asiaconnect.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/asiaconnect.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/asiaconnect.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asiaconnect.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asiaconnect.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asiaconnect.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asiaconnect.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asiaconnect.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asiaconnect.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asiaconnect.wordpress.com&amp;blog=7485118&amp;post=97&amp;subd=asiaconnect&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://asiaconnect.wordpress.com/2009/04/23/after-installing-magento-cant-log-in-to-admin-panel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0d1ee7df9c3091b175a3bab0444e888d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asiaconnect</media:title>
		</media:content>
	</item>
		<item>
		<title>Magento Featured Products</title>
		<link>http://asiaconnect.wordpress.com/2009/04/22/magento-featured-products/</link>
		<comments>http://asiaconnect.wordpress.com/2009/04/22/magento-featured-products/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 08:21:16 +0000</pubDate>
		<dc:creator>asiaconnect</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Guide Line]]></category>
		<category><![CDATA[Instruction]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://asia-connect.com.vn/demo/wordpress/?p=92</guid>
		<description><![CDATA[I’ve been working with Magento version 0.8.16100 for a couple days now trying to implement a Featured Product feature.  The Featured Product is a product with an attribute I added from the admin.  When the administrator selects “Yes” in the “Featured” attribute, that product will be displayed in a content block. I’ll explain each step [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asiaconnect.wordpress.com&amp;blog=7485118&amp;post=92&amp;subd=asiaconnect&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I’ve been working with Magento version 0.8.16100 for a couple days now trying to implement a Featured Product feature.  The Featured Product is a product with an attribute I added from the admin.  When the administrator selects “Yes” in the “Featured” attribute, that product will be displayed in a content block.</p>
<p>I’ll explain each step I took to make this custom feature.  Please forgive me if I left anything out.  The PHP itself I would like to rewrite to be more… professional, but I couldn’t figure out how to query a product by its attribute.  Maybe you can help?</p>
<p><strong>Step 1) Create new “Featured” attribute</strong></p>
<p>Create a new attribute by going to Catalog -&gt; Attributes -&gt; Manage Attributes -&gt; Add New Attribute.</p>
<p><span style="text-decoration:underline;">Attribute Properties</span><br />
Attribute Identifier: <strong>featured</strong><br />
Catalog Input Type for Store Owner: <strong>Yes/No</strong><br />
Unique Value (not shared with other products): <strong>No</strong><br />
Values Required: <strong>No</strong><br />
Input Validation for Store Owner: <strong>None</strong><br />
Apply To Configurable/Grouped Product: <strong>Yes</strong></p>
<p><span style="text-decoration:underline;">Front End Properties</span><br />
Use in quick search: <strong>No</strong><br />
Use in advanced search: <strong>Yes</strong><br />
Comparable on Front-end: <strong>No</strong><br />
Use In Layered Navigation (Can be used only with catalog input type ‘Dropdown’): <strong>No</strong></p>
<p><span style="text-decoration:underline;">System Properties</span><br />
Data Type for Saving in Database: <strong>String</strong><br />
Globally Editable: <strong>No</strong><br />
Visible on Catalog Pages on Front-end: <strong>Yes</strong></p>
<p><span style="text-decoration:underline;">Manage Label/Options</span><br />
Default: <strong>Featured Product</strong><br />
English: <strong>Featured Product</strong></p>
<p>Save the new attribute and go to Catalog -&gt; Attributes -&gt; Manage Attributes Sets to add the attribute to the default feature set.</p>
<p>Step 2) Add Block configuration to catalog.xml</p>
<p>Open MyCompany/app/design/frontend/default/default/layout/catalog.xml.  We want to add a new &lt;block&gt; right above the product list block in the default category layout.<br />
Insert the block configuration on line 73 (default catalog.xml).</p>
<div class="codeblock"><code> <span style="color:#007700;">&lt;</span><span style="color:#0000bb;">block type</span><span style="color:#007700;">=</span><span style="color:#dd0000;">"catalog/product_featured" </span><span style="color:#0000bb;">name</span><span style="color:#007700;">=</span><span style="color:#dd0000;">"product_featured" </span><span style="color:#007700;">as=</span><span style="color:#dd0000;">"product_featured" </span><span style="color:#0000bb;">template</span><span style="color:#007700;">=</span><span style="color:#dd0000;">"catalog/product/featured.phtml"</span><span style="color:#007700;">&gt;&lt;/</span><span style="color:#0000bb;">block</span><span style="color:#007700;">&gt;</span> </code></div>
<p><strong>Step 3) Create new block class that will instantiate the featured product</strong></p>
<p>Create a new file, and directories: app/code/local/MyCompany/Catalog/Block/Product/Featured.php</p>
<div class="codeblock"><code> <span style="color:#007700;">class </span><span style="color:#0000bb;">MyCompany_Catalog_Block_Product_Featured </span><span style="color:#007700;">extends </span><span style="color:#0000bb;">Mage_Catalog_Block_Product_Abstract<br />
{<br />
</span><span style="color:#007700;">public function </span><span style="color:#0000bb;">getFeaturedProduct</span><span style="color:#007700;">()<br />
</span><span style="color:#0000bb;">{<br />
</span><span style="color:#ff8000;">// instantiate database connection object<br />
</span><span style="color:#0000bb;">$storeId </span><span style="color:#007700;">= </span><span style="color:#0000bb;">0</span><span style="color:#007700;">;<br />
</span><span style="color:#0000bb;">$categoryId </span><span style="color:#007700;">= </span><span style="color:#0000bb;">$this</span><span style="color:#007700;">-&gt;</span><span style="color:#0000bb;">getRequest</span><span style="color:#007700;">()-&gt;</span><span style="color:#0000bb;">getParam</span><span style="color:#007700;">(</span><span style="color:#dd0000;">'id'</span><span style="color:#007700;">, </span><span style="color:#0000bb;">false</span><span style="color:#007700;">);<br />
</span><span style="color:#0000bb;">$resource </span><span style="color:#007700;">= </span><span style="color:#0000bb;">Mage</span><span style="color:#007700;">::</span><span style="color:#0000bb;">getSingleton</span><span style="color:#007700;">(</span><span style="color:#dd0000;">'core/resource'</span><span style="color:#007700;">);<br />
</span><span style="color:#0000bb;">$read </span><span style="color:#007700;">= </span><span style="color:#0000bb;">$resource</span><span style="color:#007700;">-&gt;</span><span style="color:#0000bb;">getConnection</span><span style="color:#007700;">(</span><span style="color:#dd0000;">'catalog_read'</span><span style="color:#007700;">);<br />
</span><span style="color:#0000bb;">$productStoreTable </span><span style="color:#007700;">= </span><span style="color:#0000bb;">$resource</span><span style="color:#007700;">-&gt;</span><span style="color:#0000bb;">getTableName</span><span style="color:#007700;">(</span><span style="color:#dd0000;">'catalog/product_store'</span><span style="color:#007700;">);<br />
</span><span style="color:#0000bb;">$categoryProductTable </span><span style="color:#007700;">= </span><span style="color:#0000bb;">$resource</span><span style="color:#007700;">-&gt;</span><span style="color:#0000bb;">getTableName</span><span style="color:#007700;">(</span><span style="color:#dd0000;">'catalog/category_product'</span><span style="color:#007700;">);</p>
<p></span><span style="color:#ff8000;">// Query database for all products in this category because I don't know how to query by attribute<br />
// this logic bothers me because I'm selecting and instantiating each product in the whole category<br />
// just to get the first featured product.  The query should include the 'featured' attribute in the WHERE<br />
// clause.  If you know how to do that, please share :)<br />
</span><span style="color:#0000bb;">$select </span><span style="color:#007700;">= </span><span style="color:#0000bb;">$read</span><span style="color:#007700;">-&gt;</span><span style="color:#0000bb;">select</span><span style="color:#007700;">()<br />
-&gt;</span><span style="color:#0000bb;">from</span><span style="color:#007700;">(array(</span><span style="color:#dd0000;">'cp'</span><span style="color:#007700;">=&gt;</span><span style="color:#0000bb;">$categoryProductTable</span><span style="color:#007700;">))<br />
-&gt;</span><span style="color:#0000bb;">join</span><span style="color:#007700;">(array(</span><span style="color:#dd0000;">'ps'</span><span style="color:#007700;">=&gt;</span><span style="color:#0000bb;">$productStoreTable</span><span style="color:#007700;">), </span><span style="color:#dd0000;">'ps.product_id=cp.product_id'</span><span style="color:#007700;">, array())<br />
-&gt;</span><span style="color:#0000bb;">where</span><span style="color:#007700;">(</span><span style="color:#dd0000;">'ps.store_id=?'</span><span style="color:#007700;">, </span><span style="color:#0000bb;">$storeId</span><span style="color:#007700;">)<br />
-&gt;</span><span style="color:#0000bb;">where</span><span style="color:#007700;">(</span><span style="color:#dd0000;">'cp.category_id=?'</span><span style="color:#007700;">, </span><span style="color:#0000bb;">$categoryId</span><span style="color:#007700;">);<br />
</span><span style="color:#0000bb;">$featuredProductData </span><span style="color:#007700;">= </span><span style="color:#0000bb;">$read</span><span style="color:#007700;">-&gt;</span><span style="color:#0000bb;">fetchAll</span><span style="color:#007700;">(</span><span style="color:#0000bb;">$select</span><span style="color:#007700;">);</p>
<p></span><span style="color:#ff8000;">// iterate over result set from database<br />
</span><span style="color:#007700;">foreach (</span><span style="color:#0000bb;">$featuredProductData </span><span style="color:#007700;">as </span><span style="color:#0000bb;">$row</span><span style="color:#007700;">) </span><span style="color:#0000bb;">{</p>
<p></span><span style="color:#ff8000;">// instantiate the product object<br />
</span><span style="color:#0000bb;">$product </span><span style="color:#007700;">= </span><span style="color:#0000bb;">Mage</span><span style="color:#007700;">::</span><span style="color:#0000bb;">getModel</span><span style="color:#007700;">(</span><span style="color:#dd0000;">'catalog/product'</span><span style="color:#007700;">)-&gt;</span><span style="color:#0000bb;">load</span><span style="color:#007700;">(</span><span style="color:#0000bb;">$row[</span><span style="color:#dd0000;">'product_id'</span><span style="color:#0000bb;">]</span><span style="color:#007700;">);</p>
<p></span><span style="color:#ff8000;">// if the product is a featured product, return the object<br />
</span><span style="color:#007700;">if (</span><span style="color:#0000bb;">$product</span><span style="color:#007700;">-&gt;</span><span style="color:#0000bb;">getData</span><span style="color:#007700;">(</span><span style="color:#dd0000;">'featured'</span><span style="color:#007700;">)) </span><span style="color:#0000bb;">{<br />
</span><span style="color:#007700;">return </span><span style="color:#0000bb;">$product</span><span style="color:#007700;">;<br />
</span><span style="color:#0000bb;">}<br />
}</p>
<p></span><span style="color:#007700;">return;<br />
</span><span style="color:#0000bb;">}<br />
}</span> </code></div>
<p>We’re almost there!</p>
<p><strong>Step 4) Extend Mage_Catalog_Block_Category_View</strong></p>
<p>Create a new file, and directories, called app/code/local/MyCompany/Catalog/Block/Category/View.php.  We’re extending the core class here so our module will be separate from the core code base.  When upgrading, we won’t have to worry about our code not working or having to patch files.</p>
<div class="codeblock"><code> <span style="color:#007700;">class </span><span style="color:#0000bb;">MyCompany_Catalog_Block_Category_View </span><span style="color:#007700;">extends </span><span style="color:#0000bb;">Mage_Catalog_Block_Category_View<br />
{<br />
</span><span style="color:#007700;">public function </span><span style="color:#0000bb;">getFeaturedProductHtml</span><span style="color:#007700;">()<br />
</span><span style="color:#0000bb;">{<br />
</span><span style="color:#007700;">return </span><span style="color:#0000bb;">$this</span><span style="color:#007700;">-&gt;</span><span style="color:#0000bb;">getBlockHtml</span><span style="color:#007700;">(</span><span style="color:#dd0000;">'product_featured'</span><span style="color:#007700;">);<br />
</span><span style="color:#0000bb;">}<br />
}</span> </code></div>
<p><strong>Step 5) Modify the templates</strong></p>
<p>I haven’t really integrated any real HTML changes, so I will simply point out the files to create and where to edit the HTML.</p>
<p>Edit app/design/frontend/default/default/template/catalog/category/view.phtml and add the following code:</p>
<div class="codeblock"><code> <span style="color:#0000bb;">&lt;?</span><span style="color:#007700;">=</span><span style="color:#0000bb;">$this</span><span style="color:#007700;">-&gt;</span><span style="color:#0000bb;">getFeaturedProductHtml</span><span style="color:#007700;">()</span><span style="color:#0000bb;">?&gt;</span> </code></div>
<p>right above this line:</p>
<div class="codeblock"><code> <span style="color:#0000bb;">&lt;?</span><span style="color:#007700;">=</span><span style="color:#0000bb;">$this</span><span style="color:#007700;">-&gt;</span><span style="color:#0000bb;">getProductListHtml</span><span style="color:#007700;">()</span><span style="color:#0000bb;">?&gt;</span> </code></div>
<p>Edit app/design/frontend/default/default/template/catalog/product/featured.phtml and customize your HTML here (see any of the product templates for Product object member variables).</p>
<p><strong>Step 6) Add new blocks to the app/etc/local.xml</strong></p>
<p>Add</p>
<div class="codeblock"><code> <span style="color:#007700;">&lt;</span><span style="color:#0000bb;">blocks</span><span style="color:#007700;">&gt;<br />
&lt;</span><span style="color:#0000bb;">catalog</span><span style="color:#007700;">&gt;<br />
&lt;</span><span style="color:#0000bb;">rewrite</span><span style="color:#007700;">&gt;<br />
&lt;</span><span style="color:#0000bb;">product_featured</span><span style="color:#007700;">&gt;</span><span style="color:#0000bb;">MyCompany_Catalog_Block_Product_Featured</span><span style="color:#007700;">&lt;/</span><span style="color:#0000bb;">product_featured</span><span style="color:#007700;">&gt;<br />
&lt;/</span><span style="color:#0000bb;">rewrite</span><span style="color:#007700;">&gt;<br />
&lt;</span><span style="color:#0000bb;">rewrite</span><span style="color:#007700;">&gt;<br />
&lt;</span><span style="color:#0000bb;">category_view</span><span style="color:#007700;">&gt;</span><span style="color:#0000bb;">MyCompany_Catalog_Block_Category_View</span><span style="color:#007700;">&lt;/</span><span style="color:#0000bb;">category_view</span><span style="color:#007700;">&gt;<br />
&lt;/</span><span style="color:#0000bb;">rewrite</span><span style="color:#007700;">&gt;<br />
&lt;/</span><span style="color:#0000bb;">catalog</span><span style="color:#007700;">&gt;<br />
&lt;/</span><span style="color:#0000bb;">blocks</span><span style="color:#007700;">&gt;</span> </code></div>
<p>I hope this helps you add a “Featured Product” feature.  It certainly feels thorough, but if I left anything out, please let me know and I’ll be happy to help.  If you know how to query by a specific product attribute, please let me know.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asiaconnect.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asiaconnect.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asiaconnect.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asiaconnect.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/asiaconnect.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/asiaconnect.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/asiaconnect.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/asiaconnect.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asiaconnect.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asiaconnect.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asiaconnect.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asiaconnect.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asiaconnect.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asiaconnect.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asiaconnect.wordpress.com&amp;blog=7485118&amp;post=92&amp;subd=asiaconnect&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://asiaconnect.wordpress.com/2009/04/22/magento-featured-products/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0d1ee7df9c3091b175a3bab0444e888d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asiaconnect</media:title>
		</media:content>
	</item>
		<item>
		<title>Using jQuery in Magento</title>
		<link>http://asiaconnect.wordpress.com/2009/04/20/using-jquery-in-magento/</link>
		<comments>http://asiaconnect.wordpress.com/2009/04/20/using-jquery-in-magento/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 08:39:18 +0000</pubDate>
		<dc:creator>asiaconnect</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Guide Line]]></category>
		<category><![CDATA[Instruction]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://asia-connect.com.vn/demo/wordpress/?p=85</guid>
		<description><![CDATA[At work we are developing a site for a client using the Magento eCommerce software. This is my first time using it and I’m finding it fairly badass (and it’s free!). There is a lot to like about it, which we’ll probably talk about another time, but it uses Prototype for a JavaScript library. Now [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asiaconnect.wordpress.com&amp;blog=7485118&amp;post=85&amp;subd=asiaconnect&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>At work we are developing a site for a client using the <a href="http://www.magentocommerce.com/">Magento</a> eCommerce software. This is my first time using it and I’m finding it fairly badass (and it’s free!). There is a lot to like about it, which we’ll probably talk about another time, but it uses Prototype for a JavaScript library. Now I’m sure Prototype is wonderful and all that, but I don’t know a lick of it. I’d rather just use the library I’ve known to come and love, jQuery. But Prototype and jQuery notoriously don’t get along. This is how to deal with that.</p>
<ol>
<li>The latest version of Magento comes with a somewhat outdated version of the script.aculo.us <strong>effects</strong> file, which is part of the problem. Go get the latest version (1.8.2 right now). You may want to rename it with the version number at the end, like <tt>effects-1.8.1.js</tt></li>
<li>Upload the file to [Magento]/js/scriptaculous</li>
<li>Open the file <tt>page.xml</tt> at [Magento]/app/design/frontend/default/default/layout/page.xml</li>
<li>On about line 41, there will be a line like this:
<pre><code>&lt;action method="addJs"&gt;&lt;script&gt;scriptaculous/effects.js&lt;/script&gt;&lt;/action&gt;</code></pre>
<p>Change the file name to your new file</li>
<li>The layout files are normally cached, so you’ll need to clear that cache to see the effect take place. Log into the backend and go to System &gt; Cache Management</li>
<li>Select “refresh” from the All Cache menu and save (which should clear your cache)</li>
<li>Reload a store page and view source to make sure your new file is the one that is loading</li>
<li>Now you need to include jQuery on your page. You could add a new line to the page.xml file, or you could open the common head.phtml file at [Magneto]/app/design/frontend/default/default/template/page/html/head.phtml &#8211; and add your &lt;script&gt; for jQuery there</li>
<li>The final step is making sure that jQuery is in .noConflict(); mode. This is the final step to making sure it plays nice with Prototype</li>
<li>Now you need to set noConflict and write code in that mode. Basically you replace the normal “$” with a new shorthand ($j, in this case).
<pre><code>var $j = jQuery.noConflict();

$j(document).ready(function(){
    $j("#test").css("padding","10px");
});</code></pre>
</li>
</ol>
<p>Note, I didn’t invent this fix, I just wanted to consolidate information I found while researching this. Mostly came from the wiki and this thread, which you can reference for more information.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asiaconnect.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asiaconnect.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asiaconnect.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asiaconnect.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/asiaconnect.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/asiaconnect.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/asiaconnect.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/asiaconnect.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asiaconnect.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asiaconnect.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asiaconnect.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asiaconnect.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asiaconnect.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asiaconnect.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asiaconnect.wordpress.com&amp;blog=7485118&amp;post=85&amp;subd=asiaconnect&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://asiaconnect.wordpress.com/2009/04/20/using-jquery-in-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0d1ee7df9c3091b175a3bab0444e888d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asiaconnect</media:title>
		</media:content>
	</item>
		<item>
		<title>How To Setup Multiple Magento Stores</title>
		<link>http://asiaconnect.wordpress.com/2009/04/20/how-to-setup-multiple-magento-stores/</link>
		<comments>http://asiaconnect.wordpress.com/2009/04/20/how-to-setup-multiple-magento-stores/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 04:31:52 +0000</pubDate>
		<dc:creator>asiaconnect</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Guide Line]]></category>
		<category><![CDATA[Instruction]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://asia-connect.com.vn/demo/wordpress/?p=82</guid>
		<description><![CDATA[There are numerous ways to setup multiple Magento stores that all share the same codebase and backend, but what method you use depends on your needs. This article is written with cPanel in mind, though the methodologies listed below apply no matter what control panel you’re using. Jump To Section URL Structure Shared Hosting Caveat [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asiaconnect.wordpress.com&amp;blog=7485118&amp;post=82&amp;subd=asiaconnect&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are numerous ways to setup multiple Magento stores that all share the same codebase and backend, but what method you use depends on your needs.</p>
<p>This article is written with cPanel in mind, though the methodologies listed below apply no matter what control panel you’re using.</p>
<h3>Jump To Section</h3>
<ol>
<li><a href="http://www.crucialwebhost.com/blog/how-to-setup-multiple-magento-stores/#url-structure">URL Structure</a></li>
<li><a href="http://www.crucialwebhost.com/blog/how-to-setup-multiple-magento-stores/#shared-hosting-caveat">Shared Hosting Caveat</a></li>
<li><a href="http://www.crucialwebhost.com/blog/how-to-setup-multiple-magento-stores/#adding-another-store-in-magento">Adding Another Store In Magento</a></li>
<li><a href="http://www.crucialwebhost.com/blog/how-to-setup-multiple-magento-stores/#parked-domain-method">Parked Domain Method</a></li>
<li><a href="http://www.crucialwebhost.com/blog/how-to-setup-multiple-magento-stores/#addon-domain-method">Addon Domain Method</a></li>
<li><a href="http://www.crucialwebhost.com/blog/how-to-setup-multiple-magento-stores/#subdomain-method">Subdomain Method</a></li>
<li><a href="http://www.crucialwebhost.com/blog/how-to-setup-multiple-magento-stores/#subdirectory-method">Subdirectory Method</a></li>
<li><a href="http://www.crucialwebhost.com/blog/how-to-setup-multiple-magento-stores/#managing-multiple-stores">Managing Multiple Stores</a></li>
<li><a href="http://www.crucialwebhost.com/blog/how-to-setup-multiple-magento-stores/#secure-checkout-for-each-store">Secure Checkout For Each Domain</a></li>
</ol>
<h2><a name="url-structure"></a>URL Structure</h2>
<p>The actual URL structure of your stores is a matter of personal preference. You can, for example, have two entirely different stores running on the same domain that share the same instance of Magento:</p>
<ul>
<li><strong>mall.com/shoes</strong></li>
<li><strong>mall.com/shirts</strong></li>
</ul>
<p>These stores could also be setup on their own domain and still share the same instance of Magento:</p>
<ul>
<li><strong>shoes.com</strong></li>
<li><strong>shirts.com</strong></li>
</ul>
<p>Another example would be a mall type setup, where your primary domain is the portal to access various stores:</p>
<ul>
<li><strong>mall.com</strong></li>
<li><strong>shoes.mall.com</strong></li>
<li><strong>shirts.mall.com</strong></li>
</ul>
<p>Regardless of the URL structure, the method for setting this up will pretty much be the same, and the result is what we’re really after, which is to have <strong>one codebase</strong> for all of your stores, and <strong>one backend</strong> to manage all of these stores from.</p>
<h2><a name="shared-hosting-caveat"></a>Shared Hosting Caveat</h2>
<p>If you want each store to have it’s own SSL certificate and don’t want to share a single checkout, e.g. you don’t want visitors leaving <strong>domainA.com</strong> to checkout on <strong>domainB.com</strong>, then you will <strong>not be able to do this</strong> in a shared hosting environment.</p>
<p>The reason why you cannot do this is simple. In order for a website to have an SSL certificate, it requires a dedicated IP address.</p>
<p>There’s <strong>no way to allow</strong> an addon or parked domain in cPanel to have its own IP address. Instead, it <strong>shares</strong> the IP address of the primary domain.</p>
<p>You probably think you could sign up for <strong>two</strong> shared hosting accounts, so each one has its own dedicated IP address, but that won’t work either.</p>
<p>Since it’s shared hosting, there are security measures in place to prevent one user from reading the files of another user.</p>
<p>So for shared hosting clients, you’re limited to the following scenarios:</p>
<ol>
<li>All of your stores <strong>do not have</strong> a secure checkout, which is fine if you’re using PayPal, Google Checkout, or a similar third-party service that handles the processing of card data on their website. For example, visitors to any of your stores are redirected to a third-party website for card processing.</li>
<li>All of your stores <strong>share</strong> a secure checkout point. For example, you own three domains: <strong>mall.com</strong>, <strong>shoes.com</strong>, and <strong>shirts.com</strong> You use <strong>mall.com</strong> as your primary domain and have an SSL certificate associated with it. The other two domains would be either <strong>addon</strong> or <strong>parked</strong> domains, and visitors to those sites would be redirected to <strong>mall.com</strong> to checkout.</li>
<li>All of your stores are setup as <strong>subdomains</strong>, and you’ve purchased a <strong>wildcard</strong> SSL certificate, which is roughly <strong>$1000/year</strong> and is for legally registered businesses.</li>
</ol>
<p>If you <strong>do need</strong> an SSL certificate for all of your domains, you will need to be in a dedicated hosting environment, such as our <a href="http://www.crucialwebhost.com/containers/dedicated/">Dedicated Container</a>, which comes with 5 IP addresses. In this type of environment, all five domains will be able to access the same set of files.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asiaconnect.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asiaconnect.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asiaconnect.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asiaconnect.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/asiaconnect.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/asiaconnect.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/asiaconnect.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/asiaconnect.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asiaconnect.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asiaconnect.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asiaconnect.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asiaconnect.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asiaconnect.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asiaconnect.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asiaconnect.wordpress.com&amp;blog=7485118&amp;post=82&amp;subd=asiaconnect&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://asiaconnect.wordpress.com/2009/04/20/how-to-setup-multiple-magento-stores/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0d1ee7df9c3091b175a3bab0444e888d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asiaconnect</media:title>
		</media:content>
	</item>
		<item>
		<title>Low cost professional custom website design and development</title>
		<link>http://asiaconnect.wordpress.com/2009/04/17/low-cost-professional-custom-website-design-and-development/</link>
		<comments>http://asiaconnect.wordpress.com/2009/04/17/low-cost-professional-custom-website-design-and-development/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 04:24:43 +0000</pubDate>
		<dc:creator>asiaconnect</dc:creator>
				<category><![CDATA[Our Services]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://asia-connect.com.vn/demo/wordpress/?p=76</guid>
		<description><![CDATA[Professional Affordable Website Design With extensive experience in Website Design, Website Development, and Web Programming, indianelite is all about delivering high quality web-based solutions and IT enabled services at low and reasonable costs. Our expertise and skill-set include the design and development of websites and applications specializing in Ecommerce, Real Estate, Mortgage, Portals, Corporate, Online [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asiaconnect.wordpress.com&amp;blog=7485118&amp;post=76&amp;subd=asiaconnect&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="moduletable">
<div style="padding:0;"></div>
</div>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td><strong>Professional Affordable Website Design</strong></p>
<div>With extensive experience in Website Design, Website Development, and Web Programming, indianelite is all about delivering high quality web-based solutions and IT enabled services at low and reasonable costs. Our expertise and skill-set include the design and development of websites and applications specializing in Ecommerce, Real Estate, Mortgage, Portals, Corporate, Online Store, Travel &amp; Tourism, Online Reservation, Ebooks etc. As a company we always aim to deliver our customers with high quality products and services at a very low cost. Our global operating model allows us to provide cheap and low budget website design and web base application solutions in a very efficient and quality manner, enabling businesses to go online fast and at reduced costs.</div>
<table id="table1" border="0" cellspacing="2" cellpadding="2" width="95%" align="justify">
<tbody>
<tr>
<td width="30%" align="left" valign="top"><strong>Complete  		Web Site Design</strong></td>
<td width="67%" align="left" valign="top">We specialize in crafting customized website design solutions that help our customers create an outstanding web presence that complements their company&#8217;s identity.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top"><strong>Ecommerce Development </strong></td>
<td width="67%" align="left" valign="top">Over the last few years Indianelite.com has established itself as a leading service provider for developing custom web based applications. Our team members are highly skilled and are capable of developing any kind of application that an organization might need.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top"><strong>Templates</strong></td>
<td width="67%" align="left" valign="top">Indianelite.com provides you with creative and unique web templates of the highest quality. The unparallel look and very low cost assures you to remain right ahead of your competitors.</td>
</tr>
<tr>
<td width="30%" height="35" align="left" valign="top"><strong>Logos</strong></td>
<td width="67%" align="left" valign="top">Logo  Design is one of our professional strength. indianelite specializes in logo creation and business stationery design, and assists you in creating a positive first impression.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top"><strong>Flash</strong></td>
<td width="67%" align="left" valign="top">Our design team has all the necessary skills and experience to produce very high quality and professional flash. Our rates are very reasonable and our turn around time is quick.</td>
</tr>
<tr>
<td width="30%" align="left" valign="top"><strong>Banners</strong></td>
<td width="67%" align="left" valign="top">Our graphics team is very experienced and very skilled to convert any kind of theme or concept that you might have into your company?s banners.</td>
</tr>
<tr>
<td align="left" valign="top"><strong> Portals</strong></td>
<td align="left" valign="top">The team of highly-skilled developers at indianelite are well equipped to deliver unique web portals with multiple features. Using time tested technologies and innovative tools, we strive to add more value to your online venture, taking into account your needs, budget and timeframe.</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td width="100%"></td>
</tr>
</tbody>
</table>
<p><strong>Eye Catching Web Design </strong></p>
<div>Indianelite.com offers high-quality custom web site design and development at the most affordable prices. Check out our popular value-packed deals along with the recent most live sites we&#8217;ve designed. The quality combined with the price make these deals unbeatable. Further more, upholding our company&#8217;s transparency policy our prices are fully published on our site and we make sure that Direct Clients get the best deals!</div>
<div><strong>We develop eye catching website for our outsourcing clients with low cost. </strong></div>
<p><strong>Static / Html Website Design</strong></p>
<table id="table50" border="0" cellspacing="0" cellpadding="6" width="100%">
<tbody>
<tr>
<td>
<p align="justify"><strong> You</strong> can rely on our web development team of designers, programmers and project managers. Whether you need a completely custom company solution with 12 offices and over 800 agents, private intranet, customized multiple listing data feed, or content management system, our staff has the experience and know-how to build simple to enterprise-level applications of any breadth.</p>
</td>
</tr>
<tr>
<td>
<table id="table81" border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td><strong>Experience Counts</strong></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td>
<p align="justify">We&#8217;ve worked with thousands of brokers, agents and corporate executives to build almost any system imaginable. Here?s a glimpse of how we work with you:</p>
</td>
</tr>
<tr>
<td><strong>1</strong><strong>. 										Site Definition</strong></td>
</tr>
<tr>
<td>
<p align="justify">It starts with a Free Consultation wherein we assess the scope of the project. We listen to you and help to define clear-cut goals and provide a formal proposal, specifications guideline if necessary as well as a time and cost estimate.</p>
</td>
</tr>
<tr>
<td><strong>2.  										Design Conception</strong></td>
</tr>
<tr>
<td>
<p align="justify">After sitting down with you and discussing the requirements of the new site and the image it needs to convey, we create the art direction. Once approved, design samples representing how the main and inner pages of the site will navigate are created and production begins.</p>
</td>
</tr>
<tr>
<td><strong>3.  										Technical Engineering</strong></td>
</tr>
<tr>
<td>
<p align="justify">This work is divided among a core team of designers and programmers. Images and ideas are converted to html and site structure and diagrams become code. Any additional features such as database development, Flash animation and other functionality will be integrated at this stage. In cases where a site may require frequent updating, content management systems are implemented that allow administrators to input fresh content without prior knowledge of HTML.</p>
</td>
</tr>
<tr>
<td><strong>4.  										Publishing</strong></td>
</tr>
<tr>
<td>
<p align="justify">The last phase involves testing all applications for cross-platform and browser compatibility. In simple terms, we make sure your website works on both Mac?s and PC?s as well as all of the latest browsers. Once testing is complete, we launch the website and submit it to all major search engines. From here, advance search engine consulting and management is available.</p>
</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asiaconnect.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asiaconnect.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asiaconnect.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asiaconnect.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/asiaconnect.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/asiaconnect.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/asiaconnect.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/asiaconnect.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asiaconnect.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asiaconnect.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asiaconnect.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asiaconnect.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asiaconnect.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asiaconnect.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asiaconnect.wordpress.com&amp;blog=7485118&amp;post=76&amp;subd=asiaconnect&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://asiaconnect.wordpress.com/2009/04/17/low-cost-professional-custom-website-design-and-development/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0d1ee7df9c3091b175a3bab0444e888d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asiaconnect</media:title>
		</media:content>
	</item>
		<item>
		<title>Custom PHP MYSQL Dynamic Website Design and development</title>
		<link>http://asiaconnect.wordpress.com/2009/04/17/custom-php-mysql-dynamic-website-design-and-development/</link>
		<comments>http://asiaconnect.wordpress.com/2009/04/17/custom-php-mysql-dynamic-website-design-and-development/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 04:20:07 +0000</pubDate>
		<dc:creator>asiaconnect</dc:creator>
				<category><![CDATA[Our Services]]></category>

		<guid isPermaLink="false">http://asia-connect.com.vn/demo/wordpress/?p=73</guid>
		<description><![CDATA[&#60;!&#8211; function Social_Load() { var d=document; if(d.images){ if(!d.Social) d.Social=new Array(); var i,j=d.Social.length,a=Social_Load.arguments; for(i=0; i&#60;a.length; i++) if (a[i].indexOf(&#8220;#&#8221;)!=0){ d.Social[j]=new Image; d.Social[j++].src=a[i];}} } Social_Load(&#8216;http://www.indianelite.com/modules/mod_social_bookmark/icio_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/bookmarkscc_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/digg_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/reddit_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/stumbleupon_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/furl_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/yahoo_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/spurl_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/google_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/blinklist_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/technorati_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/load.gif&#8217;) function schnipp() { var i,x,a=document.MM_sr; for(i=0;a&#38;&#38;i&#60;a.length&#38;&#38;(x=a[i])&#38;&#38;x.oSrc;i++) x.src=x.oSrc; } function schnupp(n, d) { var p,i,x; if(!d) d=document; if((p=n.indexOf(&#8220;?&#8221;))&#62;0&#38;&#38;parent.frames.length) { d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);} if(!(x=d[n])&#38;&#38;d.all) x=d.all[n]; for (i=0;!x&#38;&#38;i&#60;d.forms.length;i++) x=d.forms[i][n]; for(i=0;!x&#38;&#38;d.layers&#38;&#38;i&#60;d.layers.length;i++) x=schnupp(n,d.layers[i].document); if(!x &#38;&#38; d.getElementById) x=d.getElementById(n); return x; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asiaconnect.wordpress.com&amp;blog=7485118&amp;post=73&amp;subd=asiaconnect&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="moduletable">
<div style="padding:0;">
<p>&lt;!&#8211;</p>
<p>function Social_Load() {</p>
<p>var d=document; if(d.images){ if(!d.Social) d.Social=new Array();</p>
<p>var i,j=d.Social.length,a=Social_Load.arguments; for(i=0; i&lt;a.length; i++)</p>
<p>if (a[i].indexOf(&#8220;#&#8221;)!=0){ d.Social[j]=new Image; d.Social[j++].src=a[i];}}</p>
<p>}</p>
<p>Social_Load(&#8216;http://www.indianelite.com/modules/mod_social_bookmark/icio_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/bookmarkscc_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/digg_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/reddit_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/stumbleupon_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/furl_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/yahoo_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/spurl_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/google_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/blinklist_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/technorati_trans_ani.gif&#8217;,'http://www.indianelite.com/modules/mod_social_bookmark/load.gif&#8217;)</p>
<p>function schnipp() {</p>
<p>var i,x,a=document.MM_sr; for(i=0;a&amp;&amp;i&lt;a.length&amp;&amp;(x=a[i])&amp;&amp;x.oSrc;i++) x.src=x.oSrc;</p>
<p>}</p>
<p>function schnupp(n, d) {</p>
<p>  var p,i,x; if(!d) d=document; if((p=n.indexOf(&#8220;?&#8221;))&gt;0&amp;&amp;parent.frames.length) {</p>
<p>  d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}</p>
<p>  if(!(x=d[n])&amp;&amp;d.all) x=d.all[n]; for (i=0;!x&amp;&amp;i&lt;d.forms.length;i++) x=d.forms[i][n];</p>
<p>  for(i=0;!x&amp;&amp;d.layers&amp;&amp;i&lt;d.layers.length;i++) x=schnupp(n,d.layers[i].document);</p>
<p>  if(!x &amp;&amp; d.getElementById) x=d.getElementById(n); return x;</p>
<p>  }</p>
<p>function schnapp() {</p>
<p>  var i,j=0,x,a=schnapp.arguments; document.MM_sr=new Array; for(i=0;i&lt;(a.length-2);i+=3)</p>
<p>  if ((x=schnupp(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}</p>
<p>  }</p>
<p>  //&#8211;&gt; </p></div>
</div>
<table border="0" width="100%">
<tbody>
<tr>
<td width="641"><strong>PHP &#8211; MySQL Database Solution and programming Services.</strong></p>
<div>PHP &#8211; MySQL Database Solution and programming Services. We have a vast portfolio of existing clients and examples of scripting projects such as job boards, cv builders, portfolio scripts with image uploading, email newsletters, travel sites, shopping sites, dating scripts, galleries, administration, statistics, wish lists, user management and much more.</div>
<div>Indianelite.com brings you the experience and dependability of larger agencies combined with the financial flexibility of the freelancer. With extensive experience of web-based software development, we offer effective solutions at rates your business can afford. We specialise in PHP and MySQL programming development. We build new sites with PHP/MySQL, delivering dynamic content and e-commerce solutions. We often get involved with existing projects, to complete them or to build new features.</div>
<ul>
<li>Job Boards</li>
<li>CV/Resume Builders</li>
<li>User Management</li>
<li>Email Newsletters</li>
<li>Wish Lists</li>
<li>Real Estate Listings</li>
<li>Reciprocal Link Checking</li>
<li>Product Databases</li>
<li>Shopping Carts</li>
<li>Client Management</li>
<li>Secure Account Areas</li>
<li>Credit Card Payment Gateways</li>
<li>Image Portfolios</li>
<li>Tours/Holiday Search</li>
<li>Airline Schedules</li>
<li>Forum Modifications</li>
<li>Site Statistics</li>
<li>Content Management</li>
<li>Dating Scripts</li>
<li>Global Positioning Scripts</li>
<li>Rotating Banner Adverts</li>
<li>Multi-Tier Membership Areas</li>
<li>Image Uploading</li>
<li>File Encryption</li>
<li>and many more ..</li>
</ul>
</td>
<td style="vertical-align:top;" width="188"><img src="http://www.indianelite.com/images/image-database.jpg" alt="dynamic database design and php mysql database programming" width="188" height="428" /></td>
</tr>
</tbody>
</table>
<div><strong>We specialise in interactive database driven websites and dynamic  website design.</strong> Whether you already have an established business, want to start an online business, or you need to put your business information or products online, Indianelite.com will develop an appropriate, exciting web presence for you, to your specification. Our in-house team based can also design and develop database driven bespoke web applications.</div>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<table id="table87" border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td><strong> Professional E-Commerce Web Site  												Design</strong></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td>
<p align="justify">Our custom ecommerce website design solutions will enable you to run an ecommerce website on the internet in a user friendly manner. Our affordable solutions will enable you to get your ecommerce web site up and running with the minimum amount of fuss, enabling your business to start selling online immediately.</p>
</td>
</tr>
<tr>
<td>
<p align="justify">eCommerce  web site design services ranging from the simplest to the most complex  is our primary strength.</p>
</td>
</tr>
<tr>
<td>
<p align="justify">indianelite, based in Vancouver, USA, is a provider of comprehensive eCommerce web site design solutions to clients throughout Canada and the United States. Incorporating eCommerce functionality into web site design is no longer prohibitively expensive or complex thanks to our unique modular based web site building methodology.</p>
</td>
</tr>
<tr>
<td>
<p align="justify">We create  											eCommerce enabled <span style="text-decoration:underline;"> web site design solutions</span> that grow as your business needs grow! Why pay for something today that you may or may not need tomorrow? Our web site design solutions are completely transportable, so it doesn?t matter if you are based in Canada, the United States, or anywhere else in the world!</p>
</td>
</tr>
<tr>
<td>
<p align="justify">There are 20 different eCommerce web site design modules that you can pick and choose for your web site. This means you get a customized eCommerce web site that is tailored to your objectives and budget.</p>
</td>
</tr>
<tr>
<td><strong>Ecommerce Website Design Module</strong></td>
</tr>
<tr>
<td>
<table id="table91" border="0" cellpadding="3" width="100%">
<tbody>
<tr>
<td width="20"><img src="http://www.indianelite.com/images/tick.gif" border="0" alt="" width="16" height="15" /></td>
<td width="275">Shopping Cart</td>
<td width="16"><img src="http://www.indianelite.com/images/tick.gif" border="0" alt="" width="16" height="15" /></td>
<td>Content Management</td>
</tr>
<tr>
<td width="20"><img src="http://www.indianelite.com/images/tick.gif" border="0" alt="" width="16" height="15" /></td>
<td width="275">Membership</td>
<td width="16"><img src="http://www.indianelite.com/images/tick.gif" border="0" alt="" width="16" height="15" /></td>
<td>File Management Utility</td>
</tr>
<tr>
<td width="20"><img src="http://www.indianelite.com/images/tick.gif" border="0" alt="" width="16" height="15" /></td>
<td width="275">Email &amp; Email  												Alerts</td>
<td width="16"><img src="http://www.indianelite.com/images/tick.gif" border="0" alt="" width="16" height="15" /></td>
<td>Web Site Reports</td>
</tr>
<tr>
<td width="20"><img src="http://www.indianelite.com/images/tick.gif" border="0" alt="" width="16" height="15" /></td>
<td width="275">Chat or Private  												Messenger</td>
<td width="16"><img src="http://www.indianelite.com/images/tick.gif" border="0" alt="" width="16" height="15" /></td>
<td>Online forms</td>
</tr>
<tr>
<td width="20"><img src="http://www.indianelite.com/images/tick.gif" border="0" alt="" width="16" height="15" /></td>
<td width="275">Catalogue</td>
<td width="16"><img src="http://www.indianelite.com/images/tick.gif" border="0" alt="" width="16" height="15" /></td>
<td>Reservations</td>
</tr>
<tr>
<td width="20"><img src="http://www.indianelite.com/images/tick.gif" border="0" alt="" width="16" height="15" /></td>
<td width="275">Web Site Polls</td>
<td width="16"><img src="http://www.indianelite.com/images/tick.gif" border="0" alt="" width="16" height="15" /></td>
<td>Contact Management</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td>
<p align="justify">From web site architecture and graphic design, to content development and search engine optimization, to web site hosting and administration, to finished product and Internet marketing in India and worldwide; we bring it all together in one package from one source!</p>
</td>
</tr>
<tr>
<td>
<p align="justify">indianelite offers quality e-commerce web site design and development services for businesses and individuals. Our services are designed to strengthen and grow your business through the vast customer base and resources of the internet.</p>
</td>
</tr>
<tr>
<td>
<p align="justify">Professional e-commerce development services are essential for success. Your web site must present a professional and attractive appearance. Your visitors must feel comfortable and secure, and your web site must function properly before they will purchase your products or services.</p>
</td>
</tr>
</tbody>
</table>
<p><strong>Dynamic web page designing</strong> requires thorough knowledge, creativity and our professionals are the master and mentor at their own who can design and develop dynamic website using different scripting language, preferably <strong>PHP/Mysq</strong>l and make your website good looking, traffic retaining, easy to navigate and flawless.</p>
<p>Some advantages of Dynamic websites are detailed below:</p>
<ul type="circle">
<li>One can add and  manage contents, stories, information, photos and videos anytime without  the help of webmaster.</li>
<li>One can add new pages and sections for site?s growth.</li>
<li>One can save site management time.</li>
<li>Site administrator can send customized emails to visitors.</li>
<li>Complex tasks like quoting, estimating and presenting customized sales information can be done by Dynamic Web Site.</li>
<li>Site administrator can manage visitors in a better way to retain them for long-term such as,</li>
<li>Create member only  section and allow member to manage their own pages.</li>
<li>Ask for newsletter subscription.</li>
<li>Ask for new  product notification.</li>
<li>Connect visitors with local salesperson or dealer.</li>
</ul>
<p>These are just the examples; we can do beyond what is explained above to make your website one of the must visiting one in this era of <strong>Internet Marketing</strong>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asiaconnect.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asiaconnect.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asiaconnect.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asiaconnect.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/asiaconnect.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/asiaconnect.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/asiaconnect.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/asiaconnect.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asiaconnect.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asiaconnect.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asiaconnect.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asiaconnect.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asiaconnect.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asiaconnect.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asiaconnect.wordpress.com&amp;blog=7485118&amp;post=73&amp;subd=asiaconnect&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://asiaconnect.wordpress.com/2009/04/17/custom-php-mysql-dynamic-website-design-and-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0d1ee7df9c3091b175a3bab0444e888d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asiaconnect</media:title>
		</media:content>

		<media:content url="http://www.indianelite.com/images/image-database.jpg" medium="image">
			<media:title type="html">dynamic database design and php mysql database programming</media:title>
		</media:content>

		<media:content url="http://www.indianelite.com/images/tick.gif" medium="image" />

		<media:content url="http://www.indianelite.com/images/tick.gif" medium="image" />

		<media:content url="http://www.indianelite.com/images/tick.gif" medium="image" />

		<media:content url="http://www.indianelite.com/images/tick.gif" medium="image" />

		<media:content url="http://www.indianelite.com/images/tick.gif" medium="image" />

		<media:content url="http://www.indianelite.com/images/tick.gif" medium="image" />

		<media:content url="http://www.indianelite.com/images/tick.gif" medium="image" />

		<media:content url="http://www.indianelite.com/images/tick.gif" medium="image" />

		<media:content url="http://www.indianelite.com/images/tick.gif" medium="image" />

		<media:content url="http://www.indianelite.com/images/tick.gif" medium="image" />

		<media:content url="http://www.indianelite.com/images/tick.gif" medium="image" />

		<media:content url="http://www.indianelite.com/images/tick.gif" medium="image" />
	</item>
		<item>
		<title>Magento Features</title>
		<link>http://asiaconnect.wordpress.com/2009/04/17/magento-features/</link>
		<comments>http://asiaconnect.wordpress.com/2009/04/17/magento-features/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 03:59:59 +0000</pubDate>
		<dc:creator>asiaconnect</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Best eCommerce]]></category>
		<category><![CDATA[Product Features]]></category>

		<guid isPermaLink="false">http://asia-connect.com.vn/demo/wordpress/?p=66</guid>
		<description><![CDATA[Site Management Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed Multilingual Support for Localisation Support for multiple currencies Administration Permission System Roles and Users Web Services API for easy integration between Magento and any third-party application Flexible tax rate management with support [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asiaconnect.wordpress.com&amp;blog=7485118&amp;post=66&amp;subd=asiaconnect&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3 class="light-grey-head">Site Management</h3>
<ul class="disc">
<li> <span class="highlight">Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</span></li>
<li>Multilingual</li>
<li>Support for Localisation</li>
<li>Support for multiple currencies</li>
<li> Administration Permission System Roles and Users</li>
<li> <span class="highlight">Web Services API for easy integration between Magento and any third-party application</span></li>
<li>Flexible tax rate management with support for US and International markets</li>
<li> Fully 100% customisable design using templates</li>
<li> Customer Groups</li>
<li><span class="highlight">One-Click Upgrades</span></li>
<li>Content Management System for Informational Pages</li>
</ul>
<h3 class="light-grey-head">Mobile Commerce</h3>
<ul class="disc">
<li><a href="http://www.magentocommerce.com/extension/303/iphone-theme" target="_blank">iPhone Optimised</a></li>
</ul>
<h3 class="light-grey-head">Marketing Promotions and Tools</h3>
<ul class="disc">
<li><span class="highlight">Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories. </span>For example: Percent Discount | Fixed Amount Discount | Free Shipping | Buy x, get y free. | Buy x, get y with percent or fixed amount discount | Buy x, get free shipping on order | Buy x, get percent discount | Buy x, get fixed amount discount.</li>
<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>
<li>Free Shipping Option</li>
<li>Multi-Tier Pricing for quantity discounts</li>
<li>Bundled Products</li>
<li>Customer Group-specific pricing and group-specific tier pricing</li>
<li>Landing Page Tool for Campaigns</li>
<li>Search Engine Friendly URL&#8217;s</li>
<li>URL Rewrites</li>
<li>Recently Viewed Products</li>
<li>Recently Compared Items</li>
<li>New Items Promotional Tool</li>
<li>Up-sells in Shopping Cart</li>
<li>Cross-sells on product pages</li>
<li>Send to a Friend for all visitors, or registered users only</li>
<li>Send Wishlist to a Friend by Email or RSS</li>
<li>RSS Feeds for New Products, New Specials and New Tags</li>
<li>Auto-generated Site Map</li>
<li>Google Site Map</li>
<li>Polls</li>
<li>Newsletter Management</li>
</ul>
<h3 class="light-grey-head">International Support</h3>
<ul class="disc">
<li><span class="highlight"> Multilingual</span></li>
<li><span class="highlight">Support for Multiple Currencies</span></li>
<li> Tax rate support</li>
<li> Localisation</li>
<li> Configurable List of Allowed Countries for:
<ul class="disc">
<li> Site Registration</li>
<li>Shipping Destination Addresses with ability to specify per shipping method</li>
<li> Billing Addresses with ability to specify per payment method</li>
</ul>
</li>
</ul>
<h3 class="light-grey-head">Search Engine Optimisation</h3>
<ul class="disc">
<li> 100% Search Engine Friendly</li>
<li> Google Site Map</li>
<li> URL Rewrites give full control of URL&#8217;s</li>
<li> Meta-information for products and categories</li>
<li> Auto-generated Site Map for display on site</li>
<li> Auto-Generated Popular Search Terms Page</li>
</ul>
<h3 class="light-grey-head">Checkout</h3>
<ul class="disc">
<li> <span class="highlight">One-Page Checkout</span></li>
<li>SSL security support for orders on both front-end and back-end</li>
<li> Shipping to multiple addresses in one order</li>
<li> <span class="highlight">Checkout without account/Guest Checkout</span></li>
<li> Shopping Cart with tax and shipping estimates</li>
<li> Checkout with account to use address book</li>
<li> Option to create account at beginning of checkout</li>
<li> Accept gift messages per order and per item</li>
<li> Saved Shopping Carts with configurable expiration time</li>
</ul>
<h3 class="light-grey-head">Shipping</h3>
<ul class="disc">
<li>Integrated for real-time shipping rates from:
<ul class="disc">
<li> UPS, UPS XML (account rates), FedEx (account rates), USPS and DHL</li>
</ul>
</li>
<li><span class="highlight">Shipping to multiple addresses in one order</span></li>
<li>On-site order tracking from customer accounts</li>
<li>Multiple shipments per order</li>
<li>Ability to specify allowed destination countries per method</li>
<li>Flat rate shipping per order</li>
<li>Flat rate shipping per item</li>
<li>Free Shipping</li>
<li>Table rates for weight and destination</li>
<li>Table rates for product sub-totals and destination</li>
<li>Table rates for number of items and destination</li>
</ul>
<h3 class="light-grey-head">Payment</h3>
<ul class="disc">
<li> Configurable to authorise and charge, or authorise only and charge on creation of invoices</li>
<li>Integrated with multiple PayPal gateways:
<ul class="disc">
<li> Website Payments Standard, Website Payments Pro (Express and Direct), Website Payments Pro UK (Express and Direct), and PayPal PayFlow Pro</li>
</ul>
</li>
<li> Integrated with Authorize.net</li>
<li> Integrated with Google Checkout (Level 2)</li>
<li> Saved Credit Card method for offline payments</li>
<li> Accept Checks/Money Orders</li>
<li> Accept Purchase Orders</li>
<li>Payment Extensions Available through Magento Connect:
<ul class="disc">
<li><a href="http://www.magentocommerce.com/extension/141/magento-australia-extension/" target="_blank">Fontis Australia </a></li>
<li><a href="http://www.magentocommerce.com/extension/142/cybersource-extension/" target="_blank">Cybersource </a></li>
<li><a href="http://www.magentocommerce.com/extension/143/protx-extension/" target="_blank">Protx </a></li>
<li><a href="http://www.magentocommerce.com/extension/149/tweakmag-payment/" target="_blank">Tweakmag Payment</a></li>
<li><a href="http://www.magentocommerce.com/extension/151/spplus-extension/" target="_blank">SPPLUS </a></li>
<li><a href="http://www.magentocommerce.com/extension/154/magento-new-zealand-extension/" target="_blank">Fontis New Zealand </a></li>
<li><a href="http://www.magentocommerce.com/extension/155/eway-extension/" target="_blank">eWAY </a></li>
<li><a href="http://www.magentocommerce.com/extension/156/chronopay-extension/" target="_blank">ChronoPay </a></li>
<li><a href="http://www.magentocommerce.com/extension/157/epay/" target="_blank">ePay</a></li>
<li><a href="http://www.magentocommerce.com/extension/158/paybox-extension/" target="_blank">Paybox </a></li>
<li><a href="http://www.magentocommerce.com/extension/159/ideal-extension/" target="_blank">iDEAL </a></li>
<li><a href="http://www.magentocommerce.com/extension/160/flo2cash-web-service-extension/" target="_blank">Flo2Cash Web Service </a></li>
<li><a href="http://www.magentocommerce.com/extension/163/protx-direct-payment-module/" target="_blank">Protx Direct Payment Module</a></li>
<li><a href="http://www.magentocommerce.com/extension/170/pagseguro-payment-module/" target="_blank">PagSeguro Payment Module</a></li>
<li><a href="http://www.magentocommerce.com/extension/190/cybermut-extension/" target="_blank">CyberMUT Paiement / Paiement CIC</a></li>
<li><a href="http://www.magentocommerce.com/extension/233/lento_platnosci/" target="_blank">Modul platnosci.pl dla Lento</a></li>
<li><a href="http://www.magentocommerce.com/extension/235/payone-extension/" target="_blank">Payone </a></li>
<li><a href="http://www.magentocommerce.com/extension/277/paysimple/" target="_blank">PaySimple</a></li>
<li><a href="http://www.magentocommerce.com/extension/279/uos-paymentmodule/" target="_blank">UOS Paymentmodule</a></li>
<li><a href="http://www.magentocommerce.com/extension/280/fontis-paymate/" target="_blank">Fontis Paymate</a></li>
<li><a href="http://www.magentocommerce.com/extension/281/fontis-payment-express/" target="_blank">Fontis Payment Express</a></li>
<li><a href="http://www.magentocommerce.com/extension/299/dibs-payment/" target="_blank">Dibs Payment</a></li>
<li><a href="http://www.magentocommerce.com/extension/302/worldpay-extension/" target="_blank">WorldPay </a></li>
<li><a href="http://www.magentocommerce.com/extension/304/bank-prepayment-vorkasse-/" target="_blank">Bank Prepayment</a></li>
<li><a href="http://www.magentocommerce.com/extension/418/vcs/" target="_blank">VCS</a></li>
<li><a href="http://www.magentocommerce.com/extension/419/saferpay/" target="_blank">Saferpay</a></li>
<li><a href="http://www.magentocommerce.com/extension/422/datarans-paymentgateway/" target="_blank">Datatrans Paymentgateway</a></li>
<li><a href="http://www.magentocommerce.com/extension/427/securetrading-xpay-module/" target="_blank">SecureTrading XPay Module</a></li>
<li><a href="http://www.magentocommerce.com/extension/428/ogone-payment/" target="_blank">Ogone Payment</a></li>
<li><a href="http://www.magentocommerce.com/extension/435/payment-module-ecs-clearing-interface/" target="_blank">Payment Module: ECS Clearing Interface</a></li>
<li><a href="http://www.magentocommerce.com/extension/441/modulo-banca-sella/" target="_blank">Modulo Banca Sella 1.6</a></li>
<li><a href="http://www.magentocommerce.com/extension/449/magento-linkpoint-api-payment-module/" target="_blank">Magento LinkPoint API Payment Module</a></li>
<li><a href="http://www.magentocommerce.com/extension/450/linkpoint-api-payment-module-for-magento/" target="_blank">LinkPoint API Payment Module for Magento</a></li>
<li><a href="http://www.magentocommerce.com/extension/452/fontis-securepay/" target="_blank">Fontis SecurePay</a></li>
<li><a href="http://www.magentocommerce.com/extension/454/cash-on-delivery/" target="_blank">Cash On Delivery</a></li>
<li><a href="http://www.magentocommerce.com/extension/456/psigate-api-payment-module/" target="_blank">PSiGate API Payment Module</a></li>
<li><a href="http://www.magentocommerce.com/extension/461/nedbank-iveri-paygate/" target="_blank">Nedbank iVeri Paygate</a></li>
<li><a href="http://www.magentocommerce.com/extension/463/paypoint-secpay-professional-payment-module/" target="_blank">PayPoint.net (SECPay) Payment Gateway Module</a></li>
<li><a href="http://www.magentocommerce.com/extension/464/metodo-de-pago-servired/" target="_blank">Metodo de pago Servired</a></li>
<li><a href="http://www.magentocommerce.com/extension/467/servired/" target="_blank">Servired</a></li>
<li><a href="http://www.magentocommerce.com/extension/481/2checkout.com-payment-module/" target="_blank">2Checkout.com payment module</a></li>
<li><a href="http://www.magentocommerce.com/extension/486/fasttransact-integration-module/" target="_blank">Fast Transact Integration module</a></li>
<li><a href="http://www.magentocommerce.com/extension/491/bbs-payment-gateway/" target="_blank">BBS Payment Gateway</a></li>
<li><a href="http://www.magentocommerce.com/extension/506/westpac-payway/" target="_blank">Fontis Westpac PayWay</a></li>
<li><a href="http://www.magentocommerce.com/extension/512/fontis-nab-transact/" target="_blank">Fontis NAB Transact</a></li>
<li><a href="http://www.magentocommerce.com/extension/530/barclays-epdq/" target="_blank">Barclays ePDQ</a></li>
<li><a href="http://www.magentocommerce.com/extension/531/clickandbuy/" target="_blank">ClickandBuy</a></li>
<li><a href="http://www.magentocommerce.com/extension/542/optimal-payments-firepay/" target="_blank">Optimal Payments Firepay</a></li>
<li><a href="http://www.magentocommerce.com/extension/543/platnosci.pl-sto-/" target="_blank">Platnosci.pl (STO)</a></li>
<li><a href="http://www.magentocommerce.com/extension/555/fia-net-receiveandpay/" target="_blank">FIA-NET ReceiveAndPay</a></li>
<li><a href="http://www.magentocommerce.com/extension/561/multisafepay/" target="_blank">MultiSafepay Payment Module</a></li>
<li><a href="http://www.magentocommerce.com/extension/564/fontis-commonwealth-bank-commweb/" target="_blank">Fontis Commonwealth Bank CommWeb</a></li>
<li><a href="http://www.magentocommerce.com/extension/566/novalnet-payment-module/" target="_blank">Novalnet Payment Module</a></li>
<li><a href="http://www.magentocommerce.com/extension/569/1-1-ipayment/" target="_blank">1&amp;1 ipayment</a></li>
<li><a href="http://www.magentocommerce.com/extension/572/sofort-berweisung.de/" target="_blank">sofort�berweisung.de</a></li>
<li><a href="http://www.magentocommerce.com/extension/576/paypoint.net-metacharge-payment-gateway-module/" target="_blank">PayPoint.net (MetaCharge) Payment Gateway Module</a></li>
<li><a href="http://www.magentocommerce.com/extension/577/mokejimai.lt-payment-gateway/" target="_blank">Mokejimai.lt payment gateway</a></li>
<li><a href="http://www.magentocommerce.com/extension/593/magento-firstdata-api-payment-module-originally-linkpoint-/" target="_blank">Magento FirstData API Payment Module (Originally LinkPoint)</a></li>
<li><a href="http://www.magentocommerce.com/extension/599/shine-software-iwsmile/" target="_blank">Shine Software IWSmile</a></li>
</ul>
</li>
</ul>
<h3 class="light-grey-head">Order Management</h3>
<ul class="disc">
<li> <span class="highlight">View, edit, create and fulfill orders from admin panel.</span></li>
<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>
<li> Print invoices and packing slips</li>
<li> Call Center (phone) order creation
<ul class="disc">
<li>Includes ability to create new customer, or select existing customer and view shopping cart, wishlist, last ordered items, and compared products list, as well as select addresses, give discounts and assign custom prices</li>
</ul>
</li>
<li> Create re-orders for customers from administration panel.</li>
<li> Email Notifications of Orders</li>
<li> RSS feed of New Orders</li>
</ul>
<h3 class="light-grey-head">Customer Service</h3>
<ul class="disc">
<li> Contact Us form</li>
<li> <span class="highlight">Feature-rich Customer Accounts</span></li>
<li> Order History with Status Updates</li>
<li> Order Tracking from Account</li>
<li> Forgot Password Email from front-end and administration panel</li>
<li> Order and Account Update Emails</li>
<li>Customisable Order Emails</li>
<li> Create and Edit Orders from the Admin Panel</li>
</ul>
<h3 class="light-grey-head">Customer Accounts</h3>
<ul class="disc">
<li>Order status and history</li>
<li><span class="highlight">Re-orders from account</span></li>
<li>Recently ordered items</li>
<li>Address Book with unlimited addresses</li>
<li>Default Billing and Shipping addresses</li>
<li>Wishlist with ability to add comments</li>
<li>Email or Send RSS feed of Wishlist</li>
<li>Newsletter Subscription management</li>
<li>Product Reviews submitted</li>
<li>Product Tags submitted</li>
<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recently reviews and recent tags</li>
</ul>
<h3 class="light-grey-head">Catalog Management</h3>
<ul class="disc">
<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>
<li><span class="highlight">Batch Import and Export of catalog</span></li>
<li>Batch Updates to products in admin panel</li>
<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>
<li>Virtual Products</li>
<li>Customer Personalised Products &#8211; upload text for embroidery, monogramming, etc.</li>
<li>Tax Rates per location, customer group and product type</li>
<li>Attribute Sets for quick product creation of different item types</li>
<li>Create Store-specific attributes on the fly</li>
<li>Media Manager with automatic image resising and watermarking</li>
<li><span class="highlight">Advanced Pricing Rules and support for Special Prices (see marketing tools)</span></li>
<li> Search Results rewrites and redirects</li>
<li> Approve, Edit and Delete Product Tags</li>
<li>Approve, Edit and Delete Product Reviews</li>
<li>RSS feed for Low Inventory Alerts</li>
</ul>
<h3 class="light-grey-head">Catalog Browsing</h3>
<ul class="disc">
<li> <span class="highlight">Layered / Faceted Navigation for filtering of products</span></li>
<li> Static Block tool to create category landing pages</li>
<li> Ability to assign designs on category and product level (unique design per product/category)</li>
<li> Configurable search with auto-suggested terms</li>
<li> Recently viewed products</li>
<li><span class="highlight">Product comparisons</span></li>
<li> Recently compared products</li>
<li> Cross-sells, Up-sells and Related Items</li>
<li> Popular Search Terms Cloud</li>
<li> Filter by Product Tags</li>
<li> <span class="highlight">Product Reviews</span></li>
<li> Product listing in grid or list format</li>
<li> Breadcrumbs</li>
</ul>
<h3 class="light-grey-head">Product Browsing</h3>
<ul class="disc">
<li> <span class="highlight">Multiple Images Per Product</span></li>
<li><span class="highlight">Product Image Zoom-in Capability</span></li>
<li> Product Reviews</li>
<li> Related Products</li>
<li> Stock Availability</li>
<li> Multi-Tier Pricing Upsell</li>
<li> Product Option Selection</li>
<li> Grouped Products View</li>
<li> Add to Wishlist</li>
<li> Send to a Friend with Email</li>
</ul>
<h3 class="light-grey-head">Analytics and Reporting</h3>
<ul class="disc">
<li>Integrated with Google Analytics</li>
<li><span class="highlight">Admin Dashboard for Report Overview</span></li>
<li>Sales Report</li>
<li>RSS feed for New Orders</li>
<li>Tax Report</li>
<li>Abandoned Shopping Cart Report</li>
<li>Best Viewed Products Report</li>
<li>Best Purchased Products Report</li>
<li>Low Stock Report</li>
<li>Search Terms Report</li>
<li>Product Reviews Report</li>
<li>RSS feed for New Reviews</li>
<li>Tags Report</li>
<li>RSS feed for New Tags</li>
<li>Coupon Usage Report</li>
<li>Total Sales Invoiced</li>
<li>Total Sales Refunded</li>
<li>Best Customers Report by Total and Number of Orders</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asiaconnect.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asiaconnect.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asiaconnect.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asiaconnect.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/asiaconnect.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/asiaconnect.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/asiaconnect.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/asiaconnect.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asiaconnect.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asiaconnect.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asiaconnect.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asiaconnect.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asiaconnect.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asiaconnect.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asiaconnect.wordpress.com&amp;blog=7485118&amp;post=66&amp;subd=asiaconnect&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://asiaconnect.wordpress.com/2009/04/17/magento-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0d1ee7df9c3091b175a3bab0444e888d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asiaconnect</media:title>
		</media:content>
	</item>
		<item>
		<title>Why is everyone talking about Magento?</title>
		<link>http://asiaconnect.wordpress.com/2009/04/17/why-is-everyone-talking-about-magento/</link>
		<comments>http://asiaconnect.wordpress.com/2009/04/17/why-is-everyone-talking-about-magento/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 03:56:44 +0000</pubDate>
		<dc:creator>asiaconnect</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://asia-connect.com.vn/demo/wordpress/?p=64</guid>
		<description><![CDATA[Magento is the next generation of eCommerce platforms, designed to propell your online business forward by releasing the shackles often associated with eCommerce software. Magento is much more than simply another shopping cart, with a range of innovative features it can be seen much more of a platform upon which your eCommerce aspirations that flourish. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asiaconnect.wordpress.com&amp;blog=7485118&amp;post=64&amp;subd=asiaconnect&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Magento is the next generation of eCommerce platforms, designed to propell your online business forward by releasing the shackles often associated with eCommerce software.</strong></p>
<p>Magento is much more than simply another shopping cart, with a range of <a href="http://www.ontapcreative.com/magento_features.php">innovative features</a> it can be seen much more of a platform upon which your eCommerce aspirations that flourish. With powerful front-end, back-end and integration functionality, Magento manages to forge a mix of features that cater for the vast majority of requirements &#8216;out of the box&#8217;.</p>
<p>What&#8217;s more, Magento is open source. This means there are no costly licenses and no vendor lock-in to concern yourself with. It also provides an open framework upon which Magento can be extended and customised.</p>
<p><strong>On Tap are Platinum Magento Partners &#8211; showing our commitment to the platform. We offer a broad range of services and we invite you to <a href="http://www.ontapcreative.com/contact_us.php">contact us</a> to discuss your Magento needs.</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asiaconnect.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asiaconnect.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asiaconnect.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asiaconnect.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/asiaconnect.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/asiaconnect.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/asiaconnect.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/asiaconnect.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asiaconnect.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asiaconnect.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asiaconnect.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asiaconnect.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asiaconnect.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asiaconnect.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asiaconnect.wordpress.com&amp;blog=7485118&amp;post=64&amp;subd=asiaconnect&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://asiaconnect.wordpress.com/2009/04/17/why-is-everyone-talking-about-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0d1ee7df9c3091b175a3bab0444e888d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asiaconnect</media:title>
		</media:content>
	</item>
		<item>
		<title>Magento Live Demo</title>
		<link>http://asiaconnect.wordpress.com/2009/04/17/magento-live-demo/</link>
		<comments>http://asiaconnect.wordpress.com/2009/04/17/magento-live-demo/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 02:29:20 +0000</pubDate>
		<dc:creator>asiaconnect</dc:creator>
				<category><![CDATA[Live Demo]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Portfolios]]></category>

		<guid isPermaLink="false">http://asia-connect.com.vn/demo/wordpress/?p=43</guid>
		<description><![CDATA[Magento Frontend: http://asia-connect.com.vn/demo/magento Magento Backend: http://asia-connect.com.vn/demo/magento/admin Admin: admindemo/admindemo<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asiaconnect.wordpress.com&amp;blog=7485118&amp;post=43&amp;subd=asiaconnect&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Magento Frontend: <a href="http://asia-connect.com.vn/demo/magento" target="_blank">http://asia-connect.com.vn/demo/magento</a></p>
<p>Magento Backend: <a href="http://asia-connect.com.vn/demo/magento/admin" target="_blank">http://asia-connect.com.vn/demo/magento/admin</a></p>
<p>Admin: admindemo/admindemo</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/asiaconnect.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/asiaconnect.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/asiaconnect.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/asiaconnect.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/asiaconnect.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/asiaconnect.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/asiaconnect.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/asiaconnect.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/asiaconnect.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/asiaconnect.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/asiaconnect.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/asiaconnect.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/asiaconnect.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/asiaconnect.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=asiaconnect.wordpress.com&amp;blog=7485118&amp;post=43&amp;subd=asiaconnect&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://asiaconnect.wordpress.com/2009/04/17/magento-live-demo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0d1ee7df9c3091b175a3bab0444e888d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">asiaconnect</media:title>
		</media:content>
	</item>
	</channel>
</rss>
