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

<channel>
	<title>Blog eCommerce Software Solutions Online</title>
	<atom:link href="http://blog.ecommercesoftwaresolutionsonline.com/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.ecommercesoftwaresolutionsonline.com</link>
	<description>Blog eCommerce Software Solutions Online</description>
	<lastBuildDate>Sat, 17 Dec 2011 07:47:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>Error Magento Invalid model for shipping method</title>
		<link>http://blog.ecommercesoftwaresolutionsonline.com/archives/1101/error-magento-invalid-model-for-shipping-method.html</link>
		<comments>http://blog.ecommercesoftwaresolutionsonline.com/archives/1101/error-magento-invalid-model-for-shipping-method.html#comments</comments>
		<pubDate>Sat, 17 Dec 2011 07:46:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento Developer Notes]]></category>

		<guid isPermaLink="false">http://blog.ecommercesoftwaresolutionsonline.com/?p=1101</guid>
		<description><![CDATA[After trials with install and &#38; uninstall of shipping modules, the backend results in the error message &#8220;Invalid model for shipping method:&#8221; when attempt to ship an order. Solution : In the database, the table &#8216;core_config_data&#8217; should have the entries for the modules showing error messages. Delete all those rows carefully, clear Magento cache and [...]]]></description>
			<content:encoded><![CDATA[<p>After trials with install and &amp; uninstall of shipping modules, the backend results in the error message &#8220;Invalid model for shipping method:&#8221; when attempt to ship an order.<br />
<br/><br />
Solution : In the database, the table &#8216;core_config_data&#8217; should have the entries for the modules showing error messages. Delete all those rows carefully, clear Magento cache and try again.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ecommercesoftwaresolutionsonline.com/archives/1101/error-magento-invalid-model-for-shipping-method.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add table prefix to database setup queries in Magento?</title>
		<link>http://blog.ecommercesoftwaresolutionsonline.com/archives/1096/how-to-add-table-prefix-to-database-setup-queries-in-magento-2.html</link>
		<comments>http://blog.ecommercesoftwaresolutionsonline.com/archives/1096/how-to-add-table-prefix-to-database-setup-queries-in-magento-2.html#comments</comments>
		<pubDate>Sat, 13 Aug 2011 04:11:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento Developer Notes]]></category>

		<guid isPermaLink="false">http://blog.ecommercesoftwaresolutionsonline.com/?p=1096</guid>
		<description><![CDATA[If you already setup a table prefix for Magento tables, you have to use ‘{$this-&#62;getTable(yourtablename)}’ instead of specifying the table name as ‘yourtablename’ in sql queries. This will automatically add table-prefix to newly added tables, if set any. For Eg: Use this one $installer-&#62;run("CREATE TABLE `{$this-&#62;getTable('test_table')}` ( `id` int(10) unsigned NOT NULL, `event` varchar(255) NOT [...]]]></description>
			<content:encoded><![CDATA[<p>If you already setup a table prefix for Magento tables, you have to use ‘{$this-&gt;getTable(yourtablename)}’ instead of specifying the table name as ‘yourtablename’ in sql queries. This will automatically add table-prefix to newly added tables, if set any.</p>
<p>For Eg:<br />
Use this one</p>
<p><code>$installer-&gt;run("CREATE TABLE `{$this-&gt;getTable('test_table')}` (<br />
`id` int(10) unsigned NOT NULL,<br />
`event` varchar(255) NOT NULL default ''<br />
) ENGINE=InnoDB DEFAULT CHARSET=utf8;");</code></p>
<p>Instead of</p>
<p><code>$installer-&gt;run("CREATE TABLE `test_table` (<br />
`id` int(10) unsigned NOT NULL,<br />
`event` varchar(255) NOT NULL default ''<br />
) ENGINE=InnoDB DEFAULT CHARSET=utf8;");</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ecommercesoftwaresolutionsonline.com/archives/1096/how-to-add-table-prefix-to-database-setup-queries-in-magento-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading MySQL setup of your Magento custom module</title>
		<link>http://blog.ecommercesoftwaresolutionsonline.com/archives/1090/upgrading-mysql-setup-of-your-magento-custom-module.html</link>
		<comments>http://blog.ecommercesoftwaresolutionsonline.com/archives/1090/upgrading-mysql-setup-of-your-magento-custom-module.html#comments</comments>
		<pubDate>Sat, 13 Aug 2011 04:03:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento Developer Notes]]></category>

		<guid isPermaLink="false">http://blog.ecommercesoftwaresolutionsonline.com/?p=1090</guid>
		<description><![CDATA[When we develop a custom module for Magento, it is common requirement to have additional database tables.We achieve database changes for custom modules with the MySQL installer scripts (named like mysql4-install-0.1.0.php). If you want to alter the structure of an existing module, Magento support a simple versioning scheme that will let you automatically run scripts [...]]]></description>
			<content:encoded><![CDATA[<p>When we develop a custom module for Magento, it is common requirement to have additional database tables.We achieve database changes for custom modules with the MySQL installer scripts (named like mysql4-install-0.1.0.php).</p>
<p>If you want to alter the structure of an existing module, Magento support a simple versioning scheme that will let you automatically run scripts to upgrade your modules.</p>
<p>Once Magento runs an installer script for a module, it will never run another installer for that module again (short of manually deleting the reference in the core_resource table). Instead, you&#8217;ll need to create an upgrade script. Upgrade scripts are very similar to installer scripts, with a few key differences.  To get started, do the following steps.</p>
<ol>
<li>Check the version of your module in yourcustommodule/etc/config.xml. You will have something like this there.<br />
<code><br />
&lt;modules&gt;<br />
          &lt;YourCompany_YourModule&gt;<br />
          &lt;version&gt;0.1.0&lt;/version&gt;<br />
           &lt;/YourCompany_YourModule&gt;<br />
&lt;/modules&gt;<br />
</code></p>
<p>Here the version of the module noted as 0.1.0.</li>
<li>We need to place the upgrade script in YourCustomModule/sql/yourcustommodule_setup folder.</li>
<li>Create the upgrade script with new sql statements like the same way we created the install script.</li>
<li>Name the script as mysql4-upgrade-0.1.0-0.1.1.php. The syntax should be like mysql-upgrade-old.version.number-new.version.number</li>
<li>Edit the version number in yourcustommodule/etc/config.xml.</li>
<li>Reload your site. It’s all set!!</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.ecommercesoftwaresolutionsonline.com/archives/1090/upgrading-mysql-setup-of-your-magento-custom-module.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It’s Great Working With eCommerce</title>
		<link>http://blog.ecommercesoftwaresolutionsonline.com/archives/1081/its_great_working_with_ecommerce.html</link>
		<comments>http://blog.ecommercesoftwaresolutionsonline.com/archives/1081/its_great_working_with_ecommerce.html#comments</comments>
		<pubDate>Tue, 12 Apr 2011 00:22:05 +0000</pubDate>
		<dc:creator>cyber</dc:creator>
				<category><![CDATA[General & Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.ecommercesoftwaresolutionsonline.com/?p=1081</guid>
		<description><![CDATA[I love working in the eCommerce industry because we are part of a growing industry that is defining the web and literally changing the way people live, work and play and especially shop!]]></description>
			<content:encoded><![CDATA[<p>Like most of us in the world who are fortunate to have a job, I woke up this morning and had to go to work. Though luckily for me, because I love what I do, going to work is a pleasure and I actually really enjoy it : ) Offocurse there are days and there are days…, it wouldn’t be called work otherwise I guess, it would be called something equivalent to golf or something similar! (Though I personally do not play golf)</p>
<p>The thing that I enjoy most about my work is undeniably the simple fact that I work in the space of eCommerce. It’s a fantastic field to be in as I am sure those who work in eCommerce would also agree. It’s more than a job; it is a type of lifestyle. I find one thing in common with all of us who are in this space, its something we almost live and breath and is often hard to switch off from. We are always looking and working on ways to advance our own or help people’s business ideas and dreams become a viable and successful online reality. </p>
<p>We deal with many types of clients, in all kinds of industries, both product and service based industries, all of which work with eCommerce at different levels and at varying capacity. Our clients consist of larger organizations, small to medium sized companies, partners or simply individuals who have an eCommerce idea that they desire to establish online and are seeking the help and support from someone who understands then in order to make it happen. The end result is a satisfied customer who is able to make it happen online embracing all of the possibilities that the Internet and particularly eCommerce has to offer.</p>
<p>I love working in the eCommerce industry because we are part of a growing industry that is defining the web and literally changing the way people live, work and play and especially shop! It has bought a new dimension to the world of commerce and has changed the world forever. Not only has it revolutionized the way we shop, it has even revolutionized the way we think, providing opportunities for people all over, even the less advantaged.</p>
<p>Just he other day I was watching the evening news when it showed a short story of a mainland Chinese town who is embracing eCommerce in their community. They were using eCommerce as a way to generate a livelihood for people within the town by involving them in the processes of selling and distributing products to the greater Chinese community. This is both encouraging and humbling considering that a few years ago many of these people would be relatively isolated and perhaps limited to their direct community. This is just basic example of how eCommerce is changing not only individuals and businesses but also entire communities. </p>
<p>Working with eCommerce involves helping people to grow and to change, encouraging them to think outside normal way of operating and perhaps the way that has been most comfortable and familiar to them for so many years.</p>
<p>Embracing eCommerce may even require people thinking outside the box as it were, embracing new ideas and concepts, some that others have already thought of and adopted, but often new, innovative ideas, which will impress and even, inspire people.</p>
<p>The greatest thing that I love about working with eCommerce is that we are in a field were we are creating something of financial, economical, social, creative and operational value. We are always involved in the processes of helping people realize their potential online, the potential that the Internet and its supporting technology has made possible as well as the people who embrace it.</p>
<p>There is more I could write but I don’t want to get to philosophical on this point! : ) I just want to encourage both those who work with eCommerce, who at times may feel a little tired or frustrated, as it is hard work. As well as those on the other side of the fence, the ‘end-user’s, who are essentially those the eCommerce solution is being for. Be encouraged as there many possibilities out there as well as many great ‘eCommerce people’ to help you along the way. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ecommercesoftwaresolutionsonline.com/archives/1081/its_great_working_with_ecommerce.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Magento Extensions – The Benefits and Value</title>
		<link>http://blog.ecommercesoftwaresolutionsonline.com/archives/1069/magento-extensions-the-benefits-and-value.html</link>
		<comments>http://blog.ecommercesoftwaresolutionsonline.com/archives/1069/magento-extensions-the-benefits-and-value.html#comments</comments>
		<pubDate>Mon, 11 Apr 2011 02:39:06 +0000</pubDate>
		<dc:creator>cyber</dc:creator>
				<category><![CDATA[Magento Extensions]]></category>

		<guid isPermaLink="false">http://blog.ecommercesoftwaresolutionsonline.com/?p=1069</guid>
		<description><![CDATA[Magento extensions play a large role in the set up and successful operation of Magento stores because they essentially do exactly what the name suggests; they help to extend Magento in various ways allowing Magento store owners to establish professional and customized stores that suit their individual eCommerce requirements as well as that of their customers.]]></description>
			<content:encoded><![CDATA[<p>Magento extensions play a large role in the set up and successful operation of Magento stores because they essentially do exactly what the name suggests; they help to extend Magento in various ways allowing Magento store owners to establish professional and customized stores that suit their individual eCommerce requirements as well as that of their customers.</p>
<p>Magento extensions are playing a large and vital role in the progress of Magento Commerce because they are helping to not only advance and enhance Magento, but also to literally shape its existence. Magento extensions help address the functional requirements of the store. Every eCommerce store has its own unique functional requirements that often cannot be addressed by the standard core system itself. This is fair enough. The core system is not and will not necessarily address every single element that the store requires.</p>
<p>This is especially true for unique and very context specific stores that have various requirements of their own. The good thing is that with Magento Commerce being such a flexible and robust Open Source eCommerce platform and framework, there is indeed the provision for additional extension development, were custom Magento extensions can be created and added to the store to accomplish the specific functional requirements of the store owner.</p>
<p>The great thing is that even if Magento can not address all of the functional requirements out of the box as it were, the flexibility exists to enable you accomplish this either by adding pre-developed extensions available through 3rd parties or having the Magento extension you require custom designed and developed so that it suits your exact needs.</p>
<p>The large and growing range of Magento extensions available help to address the various functional requirements stores have. Today store owners can benefit from other peoples development efforts as they offer a large number of functions and facilities that will either do the exact thing you require, having been developed for the same purpose, or even indirectly address your requirement. For example, at ECSSO we have a particular Magento extension for advanced attribute search called the Magento Advanced Search &#8211; Product Attribute Filter Extension, that was originally designed for a website that sells car tyres/tires. It  was developed to address a specific Magento global search requirement that couldn’t be attained using Magento’s default function. Later it was further enhanced to address a requirement for a Magento store requiring a Magento extension for searching and ordering loose diamonds. This particular Magento extension has since been used for various other stores and has helped them address various drill down search requirements that would not have otherwise been possible.</p>
<p>This is the beauty about Magento and Magento extensions. In this case other customers have benefited greatly through the collective development effort offered to others. For a fraction of the cost store owners can add greater value to their own website that may other wise not have been feasible. My utilizing Magento extensions it eliminates the requirement of having to bare the cost of designing and developing the Magento extension on your own and at your own direct cost.</p>
<p>In other cases, Magento extensions play a vital part in addressing areas of operation where Magento ‘fails’ to address the specific customer needs for functions or processes they require. The availability of various and diverse extensions make this possible and provide a cost effective solution. This is what makes Magento the best eCommerce solution on the market and this is what makes Magento great.</p>
<p>Though it would seem that Magento is indeed trying to meet each and every eCommerce functional need available, it is natural that it can not always do so at the pace that such requirements are needed. However Magento has provided the framework and basis for custom Magento extension so fill the void and address such needs, limited only by the height of peoples vision, requirements and needs.</p>
<p>Utilizing Magento extensions will not only help address specific eCommerce needs, but considering the diverse ange fo extensions that are available, will also give you some great ideas of ‘what else’ can be done with the Magento store to help enhance its functionality and customer value. At the time of writing this article there are over 3,000 Magento extensions available and the number is growing daily.</p>
<p>Magento extensions add great value to stores because the offer a way for store owners to add creative and functional facilities to benefit store and its users.  In some cases the Magento extensions themselves serve to address the entire fundamental purpose of the store. This is true in cases were the entire store concept is based on a function and facility made possible through the utilization of a particular custom developed Magento extension. An example of this is a pizza store using a custom post code delivery extension, filtering our all orders that fall outside the delivery zone. Or another one might be a music store offering downloadable music samples to customer prior to purchase. There are many such examples were specific Magento extensions make eCommerce possible.</p>
<p>If you would like to learn more about how custom Magento extensions can help you address your specific store requirements or would like to learn more about any of our own extensions, please contact us today. We would be glad to help.</p>
<p>Here is a link of some of the <a href="http://ecommercesoftwaresolutionsonline.com/services-pricing/magento-extensions.html">Magento Extensions available at ECSSO – Magento Extensions</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ecommercesoftwaresolutionsonline.com/archives/1069/magento-extensions-the-benefits-and-value.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Magento: How to place Facebook Like and Twitter Buttons in the products view page</title>
		<link>http://blog.ecommercesoftwaresolutionsonline.com/archives/1036/magento-how-to-place-facebook-like-and-twitter-buttons-in-the-products-view-page.html</link>
		<comments>http://blog.ecommercesoftwaresolutionsonline.com/archives/1036/magento-how-to-place-facebook-like-and-twitter-buttons-in-the-products-view-page.html#comments</comments>
		<pubDate>Sat, 26 Mar 2011 09:21:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento Developer Notes]]></category>

		<guid isPermaLink="false">http://blog.ecommercesoftwaresolutionsonline.com/?p=1036</guid>
		<description><![CDATA[Facebook and Twitter are powerful social networking sites which help a lot in the online promotion of a website and for an ecommerce store, they are inevitable This article explains how to integrate the ‘tweet button’ and ‘facebook like button’ of various styles for Magento. Instructions: Open file to \app\design\frontend\default\default\template\catalog\product\view.phtml Copy the codes of the [...]]]></description>
			<content:encoded><![CDATA[<p>Facebook and Twitter are powerful social networking sites which help a lot in the online promotion of a website and for an ecommerce store, they are inevitable</p>
<p>This article explains how to integrate the ‘tweet button’ and ‘facebook like button’ of various styles for Magento.</p>
<p>Instructions:</p>
<ol>
<li>Open file to \app\design\frontend\default\default\template\catalog\product\view.phtml</li>
<li>Copy the codes of the button that suite your magento store design and paste them exactly where you need to appear the button in the frontend</li>
<li>Save the file and refresh the page</li>
</ol>
<p><strong>Facebook Like Button:</strong><br />
Add the following codes to display the facebook like button in the products view page.</p>
<ol>
<li><strong>Standrad Button</strong><br />
<img class="alignnone size-full wp-image-1043" title="1" src="http://blog.ecommercesoftwaresolutionsonline.com/wp-content/uploads/2011/03/1.gif" alt="" width="328" height="41" /><br />
Using XFBML<br />
<code>&lt;?php $currentUrl = $this-&gt;helper('core/url')-&gt;getCurrentUrl(); ?&gt;<br />
&lt;script src="http://connect.facebook.net/en_US/all.js#xfbml=1"&gt;&lt;/script&gt;&lt;fb:like href="&lt;?php echo $currentUrl ?&gt;" show_faces="false" width="450" font=""&gt;&lt;/fb:like&gt;</code></p>
<p>Using iframe<br />
<code>&lt;?php $currentUrl = $this-&gt;helper('core/url')-&gt;getCurrentUrl(); ?&gt;<br />
&lt;iframe src="http://www.facebook.com/plugins/like.php?href=&lt;?php echo $currentUrl ?&gt;&amp;amp;layout=standard&amp;amp;show_faces=true&amp;amp;width=450&amp;amp;action=like&amp;amp;font&amp;amp;colorscheme=light&amp;amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"&gt;&lt;/iframe&gt;</code></li>
<li><strong>Minimal with count &#8211; Horizontal</strong><br />
<img class="alignnone size-full wp-image-1044" title="2" src="http://blog.ecommercesoftwaresolutionsonline.com/wp-content/uploads/2011/03/2.gif" alt="" width="89" height="32" /><br />
Using XFBML<br />
<code>&lt;?php $currentUrl = $this-&gt;helper('core/url')-&gt;getCurrentUrl();  ?&gt;<br />
&lt;script src="http://connect.facebook.net/en_US/all.js#xfbml=1"&gt;&lt;/script&gt;&lt;fb:like href="&lt;?php echo $currentUrl ?&gt;" layout="button_count" show_faces="true" width="450" font=""&gt;&lt;/fb:like&gt;</code></p>
<p>Using iframe<br />
<code>&lt;?php $currentUrl = $this-&gt;helper('core/url')-&gt;getCurrentUrl(); ?&gt;<br />
&lt;iframe src="http://www.facebook.com/plugins/like.php?href=&lt;?php echo $currentUrl ?&gt;&amp;amp;layout=button_count&amp;amp;show_faces=true&amp;amp;width=450&amp;amp;action=like&amp;amp;font&amp;amp;colorscheme=light&amp;amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:21px;" allowTransparency="true"&gt;&lt;/iframe&gt;</code></li>
<li><strong>Minimal with count – Vertical</strong><br />
<img class="alignnone size-full wp-image-1045" title="3" src="http://blog.ecommercesoftwaresolutionsonline.com/wp-content/uploads/2011/03/3.gif" alt="" width="64" height="95" /><br />
Using XFBML<br />
<code>&lt;?php $currentUrl = $this-&gt;helper('core/url')-&gt;getCurrentUrl();  ?&gt;<br />
&lt;script src="http://connect.facebook.net/en_US/all.js#xfbml=1"&gt;&lt;/script&gt;&lt;fb:like href="=&lt;?php echo $currentUrl ?&gt;" layout="box_count" show_faces="true" width="450" font=""&gt;&lt;/fb:like&gt;</code></p>
<p>Using iframe<br />
<code>&lt;?php $currentUrl = $this-&gt;helper('core/url')-&gt;getCurrentUrl(); ?&gt;<br />
&lt;iframe src="http://www.facebook.com/plugins/like.php?href=&lt;?php echo $currentUrl ?&gt;&amp;amp;layout=box_count&amp;amp;show_faces=true&amp;amp;width=450&amp;amp;action=like&amp;amp;font&amp;amp;colorscheme=light&amp;amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:65px;" allowTransparency="true"&gt;&lt;/iframe&gt;</code></li>
</ol>
<p><strong>Twitter Button:</strong><br />
The twitter buttons are very simple and takes the current pages url automatically. i.e. it doesnot need any php codes for its working. Placing the javascript codes at the correct location will make the button load in the next page refresh.</p>
<ol>
<li>
<strong>Vertical</strong><br />
<img src="http://blog.ecommercesoftwaresolutionsonline.com/wp-content/uploads/2011/03/4.gif" alt="" title="4" width="60" height="68" class="alignnone size-full wp-image-1048" /><br />
<code>&lt;a href="http://twitter.com/share" data-count="vertical"&gt;Tweet&lt;/a&gt;&lt;script type="text/javascript" src="http://platform.twitter.com/widgets.js"&gt;&lt;/script&gt;</code></li>
<li><strong>Horizontal</strong><br />
<img src="http://blog.ecommercesoftwaresolutionsonline.com/wp-content/uploads/2011/03/5.gif" alt="" title="5" width="118" height="31" class="alignnone size-full wp-image-1049" /><br />
<code>&lt;a href="http://twitter.com/share" data-count="horizontal"&gt;Tweet&lt;/a&gt;&lt;script type="text/javascript" src="http://platform.twitter.com/widgets.js"&gt;&lt;/script&gt;</code></li>
<li>
<p><strong>No Count</strong><br />
<img src="http://blog.ecommercesoftwaresolutionsonline.com/wp-content/uploads/2011/03/6.gif" alt="" title="6" width="60" height="27" class="alignnone size-full wp-image-1050" /><br />
<code>&lt;a href="http://twitter.com/share" data-count="none"&gt;Tweet&lt;/a&gt;&lt;script type="text/javascript" src="http://platform.twitter.com/widgets.js"&gt;&lt;/script&gt;</code></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.ecommercesoftwaresolutionsonline.com/archives/1036/magento-how-to-place-facebook-like-and-twitter-buttons-in-the-products-view-page.html/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Magento: Notification, Manage Categories and Manage Stores section error in Magento Backend</title>
		<link>http://blog.ecommercesoftwaresolutionsonline.com/archives/1024/magento-notification-and-manage-stores-section-error-in-magento-backend.html</link>
		<comments>http://blog.ecommercesoftwaresolutionsonline.com/archives/1024/magento-notification-and-manage-stores-section-error-in-magento-backend.html#comments</comments>
		<pubDate>Mon, 14 Mar 2011 11:55:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento Developer Notes]]></category>

		<guid isPermaLink="false">http://blog.ecommercesoftwaresolutionsonline.com/?p=1024</guid>
		<description><![CDATA[Magento can show the below error message when the notification / messages section, Manage Categories and Manage stores are taken. Fatal error: Call to undefined method Mage_Adminhtml_Block_Widget::getrowurl() in [yourpath]/app/code/core/Mage/Adminhtml/Block/Widget/Grid.php on line 1622 in v1.5.0.1 [yourpath]/app/code/core/Mage/Adminhtml/Block/Widget/Grid.php on line 1607 in v1.4.2.0 And for manage categories section, it may show a blank screen without any errors, just [...]]]></description>
			<content:encoded><![CDATA[<p>Magento can show the below error message when the notification / messages section, Manage Categories and Manage stores are taken.</p>
<p><strong>Fatal error</strong>: Call to undefined method Mage_Adminhtml_Block_Widget::getrowurl() in</p>
<p><strong>[yourpath]/app/code/core/Mage/Adminhtml/Block/Widget/Grid.php on line 1622</strong> in v1.5.0.1<br />
<strong>[yourpath]/app/code/core/Mage/Adminhtml/Block/Widget/Grid.php on line 1607</strong> in v1.4.2.0</p>
<p>And for manage categories section, it may show a blank screen without any errors, just like the screenshot below.</p>
<p><a href="http://blog.ecommercesoftwaresolutionsonline.com/wp-content/uploads/2011/03/manage_cat.gif"><img src="http://blog.ecommercesoftwaresolutionsonline.com/wp-content/uploads/2011/03/manage_cat.gif" alt="" title="manage_cat" width="600" height="139" class="alignnone size-full wp-image-1067" /></a></p>
<p>Solution:</p>
<ol>
<li>Open the file      app/code/core/Mage/Adminhtml/Block/Widget/Grid.php</li>
<li>Search and Find<br />
<code>$res = parent::getRowUrl($item);</code><br />
and replace with<br />
<code>$res = parent::getUrl($item);</code></li>
<li>Save the file and check again.</li>
</ol>
<p>Note: We found these issues in the Magento versions <strong>v1.5.0.1</strong> and <strong>v1.4.2.0</strong> while testing. Please let us know if you find this issue in other versions by commenting below this article, so that we can update our article</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ecommercesoftwaresolutionsonline.com/archives/1024/magento-notification-and-manage-stores-section-error-in-magento-backend.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Magento: Please enter a valid URL. Protocol is required (http://, https:// or ftp://) issue in Magento Installation</title>
		<link>http://blog.ecommercesoftwaresolutionsonline.com/archives/1014/magento-please-enter-a-valid-url-protocol-is-required-http-https-or-ftp-issue-in-magento-installation.html</link>
		<comments>http://blog.ecommercesoftwaresolutionsonline.com/archives/1014/magento-please-enter-a-valid-url-protocol-is-required-http-https-or-ftp-issue-in-magento-installation.html#comments</comments>
		<pubDate>Mon, 14 Mar 2011 11:48:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento Developer Notes]]></category>

		<guid isPermaLink="false">http://blog.ecommercesoftwaresolutionsonline.com/?p=1014</guid>
		<description><![CDATA[While installing Magento in the local server, in the configuration section, you may be asked to enter the base url. But the installation wizard will not accept the local server url. It is because Magento won’t consider the local server url as a valid url. Solution: For this you need to remove the validation for [...]]]></description>
			<content:encoded><![CDATA[<p>While installing Magento in the local server, in the configuration section, you may be asked to enter the base url. But the installation wizard will not accept the local server url. It is because Magento won’t consider the local server url as a valid url.</p>
<p><a href="http://blog.ecommercesoftwaresolutionsonline.com/wp-content/uploads/2011/03/validURLissue.gif"><img class="alignnone size-full wp-image-1016" title="validURLissue" src="http://blog.ecommercesoftwaresolutionsonline.com/wp-content/uploads/2011/03/validURLissue.gif" alt="" width="552" height="248" /></a></p>
<p><strong>Solution:</strong></p>
<p>For this you need to remove the validation for the particular section.</p>
<ol>
<li>Open \app\design\install\default\default\template\install\config.phtml</li>
<li>Find the textbox where the base url is entered. It will be around line no 85 with name &#8216;config[unsecure_base_url]&#8216;</li>
<li>Remove ‘validate-url’ from its class and save the file.<br />
<img src="http://blog.ecommercesoftwaresolutionsonline.com/wp-content/uploads/2011/03/validURLissue2.gif" alt="" title="validURLissue2" width="505" height="200" class="alignnone size-full wp-image-1032" />
</li>
<li>Now you can continue the installation.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.ecommercesoftwaresolutionsonline.com/archives/1014/magento-please-enter-a-valid-url-protocol-is-required-http-https-or-ftp-issue-in-magento-installation.html/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Magento Theme Integration – Reflect the Uniqueness of your Brand, Culture and Personality</title>
		<link>http://blog.ecommercesoftwaresolutionsonline.com/archives/1009/magento-theme-integration-%e2%80%93-reflect-the-uniqueness-of-your-brand-culture-and-personality.html</link>
		<comments>http://blog.ecommercesoftwaresolutionsonline.com/archives/1009/magento-theme-integration-%e2%80%93-reflect-the-uniqueness-of-your-brand-culture-and-personality.html#comments</comments>
		<pubDate>Tue, 30 Nov 2010 23:31:00 +0000</pubDate>
		<dc:creator>cyber</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.ecommercesoftwaresolutionsonline.com/?p=1009</guid>
		<description><![CDATA[Magento theme integration is the process of taking a custom designed Magento theme and integrating into your Magento eCommerce system to give your store an individual look and feel that meets your exact design requirements.]]></description>
			<content:encoded><![CDATA[<p>Magento theme integration is the process of taking a custom designed Magento theme and integrating into your Magento eCommerce system to give your store an individual look and feel that meets your exact design requirements.</p>
<p>
<br />
It is the best way to attain your very own website personality that reflects your brand, business, products and services you sell, culture and identity, or that of your customer if you are designing and developing a Magento store on their behalf.</p>
<p>
<br />
In essence there are no limitations to what you can accomplish when you take this approach to Magento eCommerce store design, development and implementation, as it opens up a limitless range of creative possibilities, demonstrated by the uniqueness of each and every theme that goes through integration to the end product. Every business has its own personality and culture and communicating this through the way you do eCommerce is exciting, challenging and rewarding. It is our goal as development consultants to ensure that we deliver this successfully either directly to our end client, or on behalf of our solution partners that rely one our Magento development services.</p>
<p>
<br />
People come to us with newly designed themes that they would like integrated onto the Magento Commerce platform. It is our role and responsibility to take the template and convert it into a functional eCommerce store, utilizing all of the systems capabilities, features and functions that have been accounted for and specified in the design.</p>
<p>
<br />
Magento theme integration is a very large and exciting part of our business and we love it. This is because it gives us the opportunity to work on developing new and exciting Magento stores that stretch the boundaries of creativity and help us to make other peoples vision a functional and practical reality. Integrating a Magento theme that is unique and different is very rewarding as we understand both the technical importance of our service that our clients rely on, as well as the satisfaction the end result brings to all related stakeholders including the online shopper, the end-client, and our solution partners. It is also very rewarding to take a design that is basically a ‘flat image’ and visual representation of the eCommerce store and turn it into a fully functional solution that people can interact with, use and ultimately benefit from.</p>
<p>
<br />
If you would like to learn more about our Magento Theme Integration services please <a href="http://ecommercesoftwaresolutionsonline.com/contact-us/">Contact Us</a>.</p>
<p>
<br />
<strong>Here are some helpful links;</strong><br />
- Learn more about <a href="http://ecommercesoftwaresolutionsonline.com/">eCommerce Software Solutions Online (ECSSO)</a><br />
- See our <a href="http://ecommercesoftwaresolutionsonline.com/services-pricing/magento-integration-services.html">Custom Magento Integration Services</a><br />
- See our <a href="http://ecommercesoftwaresolutionsonline.com/services-pricing/magento-hosting.html">Magento Hosting Services and Plans</a><br />
- See our <a href="http://ecommercesoftwaresolutionsonline.com/services-pricing/custom-magento-development-and-integration.html">Magento Development and Integration Packages</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ecommercesoftwaresolutionsonline.com/archives/1009/magento-theme-integration-%e2%80%93-reflect-the-uniqueness-of-your-brand-culture-and-personality.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Consultants – Finding the Right People is Critical to Success</title>
		<link>http://blog.ecommercesoftwaresolutionsonline.com/archives/992/magento-consultants-%e2%80%93-finding-the-right-people-is-critical-to-success.html</link>
		<comments>http://blog.ecommercesoftwaresolutionsonline.com/archives/992/magento-consultants-%e2%80%93-finding-the-right-people-is-critical-to-success.html#comments</comments>
		<pubDate>Mon, 29 Nov 2010 02:17:06 +0000</pubDate>
		<dc:creator>cyber</dc:creator>
				<category><![CDATA[General & Uncategorized]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.ecommercesoftwaresolutionsonline.com/?p=992</guid>
		<description><![CDATA[When planning to establish or extend your eCommerce presence using Magento Commerce, or are seeking to find the right Magento professionals to assist in the development work, it’s critical that you find and work with the right Magneto consultants to ensure that things are done properly and successfully. This will indeed determine both the short and long term success of your project.]]></description>
			<content:encoded><![CDATA[<p>When planning to establish or extend your eCommerce presence using Magento Commerce, or are seeking to find the right Magento professionals to assist in the development work, it’s critical that you find and work with the right Magneto consultants to ensure that things are done properly and successfully. This will indeed determine both the short and long term success of your project. If you have looked around to find suitable and reliable people to facilitate your needs, you will probably know by now that you do not need to seek long to learn how difficult and challenging it is to find the right people for the job. Finding the right Magento consultants to use in your project(s) can be a difficult task, though it is not impossible. Magento is a great system and it has attracted a fine range of Magento developers, however one does need to look out for those who posses the correct level of experience and skills that are required to attain nothing short of success.</p>
<p>
<br />
There are many reasons for this, but I think that essentially it comes back to this one major factor and that is the simple fact that Magento is a software program with a high degree of functional and operational complexity. Being a hosted eCommerce solution, it is required to run efficiently and with out error, on an online environment for the purpose of generating real value in reach, sales revenue and profit. There are many factors involved and the Magento consultants involved in the project need to understand what these factor are and address these accordingly.<br />
Bluntly but kindly put, not only does the implementation of Magento involve the attractive design and set up of a theme/template, input of products, and general configuration of the system and hosting, it requires technical knowledge, insight and experience. Magento while easy enough to install and get running for the purpose of setting up a basic eCommerce store is not that difficult, is both fast and cost effective, however there are a still certain intricacies and complexities that are inherent with this fantastic eCommerce system that make it complicated, requiring the attention of well versed professional Magento consultants. The smaller, simpler and newer the Magento store, the less these facts are obvious, however when dealing with larger, more complex and especially existing Magento stores it becomes apparent the importance of ensuring that the Magento developers and consultants used posses the required degree of skills and expertise with Magento, the Zend Platform as well as the related Internet applications and technologies.</p>
<p>
<br />
Before I continue, please allow me to explain, firstly, I am not saying that only the ‘elite’ can set up or should set up Magento stores. What I am saying is that if one is serious about the stability, success and immediate to long term success of the development, support and maintenance of their Magento eCommerce store front, then it is important to seek the right Magento professionals who have experience with Magento to ensure a successful and stable deployment.</p>
<p>
<br />
At <a href="http://ecommercesoftwaresolutionsonline.com/">eCommerce Software Solutions Online (ECSSO)</a> we are committed to the immediate and long term success of our clients and are dedicated towards helping them achieve the very best results from their Magento eCommerce stores and Magento related projects.</p>
<p>
<br />
We offer a wide range of <a href="http://ecommercesoftwaresolutionsonline.com/magento-solutions-services/">Magento Services and Solutions</a> for the individual needs of our clients.</p>
<p>
<br />
We also offer professional <a href="http://ecommercesoftwaresolutionsonline.com/services-pricing/magento/consulting-services.html">Dedicated Magento Consulting Services</a> for those clients who desire to establish a longer (3 month plus) working relationship and require us to facilitate them with their Magento project or projects for those clients that have multiple Magento projects that they require help with.</p>
<p>
<br />
If you require one of Magento Consulting Services you may want to consider our <a href="http://ecommercesoftwaresolutionsonline.com/services-pricing/custom-magento-development-and-integration.html">Magento Development and Integration Services</a>.</p>
<p>
<br />
ECSSO is ready to assist you at any level of your Magento eCommerce store or project. Please <a href="http://ecommercesoftwaresolutionsonline.com/contact-us/">Contact ECSSO</a> today; we would be more that delighted to discuss your needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ecommercesoftwaresolutionsonline.com/archives/992/magento-consultants-%e2%80%93-finding-the-right-people-is-critical-to-success.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

