<?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>Cue Blog</title>
	<atom:link href="http://www.cueblocks.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cueblocks.com/blog</link>
	<description>If it&#039;s Online, we go the distance with you!</description>
	<lastBuildDate>Wed, 09 May 2012 09:51:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Attack of the Brew Maniacs</title>
		<link>http://www.cueblocks.com/blog/attack-of-the-brew-maniacs/</link>
		<comments>http://www.cueblocks.com/blog/attack-of-the-brew-maniacs/#comments</comments>
		<pubDate>Wed, 02 May 2012 12:14:07 +0000</pubDate>
		<dc:creator>CueBlocks</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Cue Blocks]]></category>
		<category><![CDATA[Recommended]]></category>
		<category><![CDATA[Staff Favourites]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.cueblocks.com/blog/?p=1540</guid>
		<description><![CDATA[One fine day there stood a pack of Exotic brew brought in from a land far far away. Like everything Exotic, we figured it will be&#8230;. well, Exotique. So after all the blooop bloop blooop we brewed the brew and what came next was a mind-blowing aroma mixed with a daunting flavor topped by a savory texture! So moved we were by the brilliance of the Brew that we had &#8230; <a href="http://www.cueblocks.com/blog/attack-of-the-brew-maniacs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One fine day there stood a pack of Exotic brew brought in from a land far far away. Like everything Exotic, we figured it will be&#8230;. well, Exotique. So after all the blooop bloop blooop we brewed the brew and what came next was a mind-blowing aroma mixed with a daunting flavor topped by a savory texture! <span id="more-1540"></span></p>
<p>So moved we were by the brilliance of the Brew that we had to share it with the rest of the gang.</p>
<p><em> </em>For the maniacs it was music for the palette but for others it was more like hammering the piano&#8230;&#8221;</p>
<p></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cueblocks.com/blog/attack-of-the-brew-maniacs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento: SOLR indexation loops twice through product catalog</title>
		<link>http://www.cueblocks.com/blog/magento-solr-indexation/</link>
		<comments>http://www.cueblocks.com/blog/magento-solr-indexation/#comments</comments>
		<pubDate>Thu, 05 Apr 2012 12:02:02 +0000</pubDate>
		<dc:creator>CueBlocks</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Recommended]]></category>

		<guid isPermaLink="false">http://www.cueblocks.com/blog/?p=7</guid>
		<description><![CDATA[Our recent experience with SOLR setup with Magento EE put us through some interesting challenges and we hope that our experience sharing here helps those out there facing similar issues and saves valuable developer time We would welcome any suggestions on how to handle the issue below more elegantly if possible. On the face of it, the problem seemed to be too much time being taken by indexation. On further &#8230; <a href="http://www.cueblocks.com/blog/magento-solr-indexation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p >Our recent experience with <a target="_blank" href="http://lucene.apache.org/solr/">SOLR</a> setup with Magento EE put us through some interesting challenges and we hope that our experience sharing here helps those out there facing similar issues and saves valuable developer time <img class="wp-smiley" alt=":)" src="http://www.cueblocks.com/blog/wp-includes/images/smilies/icon_smile.gif">  We would welcome any suggestions on how to handle the issue below more elegantly if possible.<span id="more-7"></span></p>
<p >On the face of it, the problem seemed to be too much time being taken by indexation. On further investigation, we found out that SOLR indexation looped twice through product catalog.</p>
<p >This instance of Magento EE has one website, two stores and each has its own storeview. It also uses <a target="_blank" href="http://www.unirgy.com/products/urapidflow/">uRapidFlow</a> extension for importing products. uRapidFlow by default assigns imported products to all active stores views (if any store view is selected then this store view receives imported products).</p>
<p >During indexation (<tt>catalogsearch_fulltext</tt>) Magento pushes products associated with all the active storeviews in the system. Since we have two active storeviews, indexation took in 2 loops.</p>
<p ><strong>How to stop indexation from looping:</strong></p>
<p >When importing products using uRapidFlow don&#8217;t forget to select specific store view to which the products are being assigned to.&nbsp;If you accidentally already have products assigned to multiple store views:</p>
<ul >
<li>remove unused stores / store views (as a result all relations to assigned products will be removed too)</li>
<li>hardcode <tt>store_id</tt> in the script (preferably not the core file but overwrite with your &#8216;local&#8217; copy) to restrict Magento to store views within that specific store (<tt>code / core / Mage / CatalogSearch / Model / Indexer / Fulltext.php : reindexAll()</tt> &ndash; pass <tt>store_id</tt> to&nbsp;<tt>rebuildIndex()</tt>)</li>
</ul>
<p >Have you experienced similar problems? What was your solution?</p>
<p ><strong>Software used:</strong><br />
<em>MagentoEE-1.10.1.1</em><br />
<em> Solr-3.3.0</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cueblocks.com/blog/magento-solr-indexation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>There&#8217;s Something About CueBlocks!</title>
		<link>http://www.cueblocks.com/blog/something-about-cueblocks/</link>
		<comments>http://www.cueblocks.com/blog/something-about-cueblocks/#comments</comments>
		<pubDate>Thu, 05 Apr 2012 11:35:12 +0000</pubDate>
		<dc:creator>Nosheen</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[CueBlocks]]></category>

		<guid isPermaLink="false">http://www.cueblocks.com/blog/?p=1290</guid>
		<description><![CDATA[When people ask us what is it about CueBlocks that makes it&#8230;well CueBlocks, we are either choked to a mouthful with words or become speechless. There&#8217;s definitely something which can&#8217;t be described that easily. So that something better be seen to be believed. Here&#8217;s a glimpse of CueBlocks and all the people and things that make it what it is! The Team &#160; Chatur &#38; Carlos – Our Dogs Their &#8230; <a href="http://www.cueblocks.com/blog/something-about-cueblocks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When people ask us what is it about CueBlocks that makes it&#8230;well CueBlocks, we are either choked to a mouthful with words or become speechless. There&#8217;s definitely something which can&#8217;t be described that easily. <span id="more-1290"></span></p>
<p>So that something better be seen to be believed.</p>
<p>Here&#8217;s a glimpse of CueBlocks and all the people and things that make it what it is!</p>
<p><strong>The Team</strong></p>
<p><a href="http://www.cueblocks.com"><img class=" wp-image-1291 " src="http://www.cueblocks.com/blog/wp-content/uploads/2012/04/Image1-1024x602.jpg" alt="" width="819" height="482" /></a></p>
<p>&nbsp;</p>
<p><strong>Chatur &amp; Carlos – Our Dogs <img src='http://www.cueblocks.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong><br />
<a title="Chatur &amp; Carlos" href="http://www.cueblocks.com/blog/2011/cueblocks-familys-newest-members-beagle-brothers/" target="_blank">Their Story</a></p>
<div id="attachment_1292" class="wp-caption aligncenter" style="width: 829px"><a href="http://www.cueblocks.com/blog/2011/cueblocks-familys-newest-members-beagle-brothers/"><img class=" wp-image-1292 " src="http://www.cueblocks.com/blog/wp-content/uploads/2012/04/Image2-1024x577.jpg" alt="" width="819" height="462" /></a><p class="wp-caption-text">Chatur &amp; Carlos</p></div>
<p>&nbsp;</p>
<p><strong>When not in action</strong></p>
<div id="attachment_1293" class="wp-caption aligncenter" style="width: 829px"><a href="http://www.cueblocks.com/blog/wp-content/uploads/2012/04/Image3.jpg"><img class=" wp-image-1293 " src="http://www.cueblocks.com/blog/wp-content/uploads/2012/04/Image3-1024x618.jpg" alt="" width="819" height="494" /></a><p class="wp-caption-text">Beagle Brothers While Sleeping</p></div>
<p>&nbsp;</p>
<p><strong>Our Den</strong>– Officially (and rightly) known as the Entertainment Area</p>
<div id="attachment_1305" class="wp-caption aligncenter" style="width: 830px"><a href="http://www.cueblocks.com/blog/wp-content/uploads/2012/04/Image-41.jpg"><img class=" wp-image-1305" src="http://www.cueblocks.com/blog/wp-content/uploads/2012/04/Image-41-768x1024.jpg" alt="" width="820" height="854" /></a><p class="wp-caption-text">Entertainment Area</p></div>
<p>&nbsp;</p>
<p><strong>One of those Moments for the Camera <img src='http://www.cueblocks.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </strong></p>
<div id="attachment_1302" class="wp-caption aligncenter" style="width: 829px"><a href="http://www.cueblocks.com/blog/wp-content/uploads/2012/04/P1039412.jpg"><img class=" wp-image-1302 " src="http://www.cueblocks.com/blog/wp-content/uploads/2012/04/P1039412-1024x684.jpg" alt="" width="819" height="510" /></a><p class="wp-caption-text">Just Posing for the Camera</p></div>
<p>&nbsp;</p>
<p>Know the Writing on the <a title="CueBlocks Wall" href="http://www.cueblocks.com/blog/2011/a-goddess-just-descended-on-cueblocks/" target="_blank">Wall </a></p>
<p>So this is what CueBlocks also is, among many other special things. <img src='http://www.cueblocks.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Keep coming back for more!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cueblocks.com/blog/something-about-cueblocks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Life at CueBlocks &#8211; The Fun Continues</title>
		<link>http://www.cueblocks.com/blog/lifeatcueblocks/</link>
		<comments>http://www.cueblocks.com/blog/lifeatcueblocks/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 07:02:24 +0000</pubDate>
		<dc:creator>Nosheen</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[CueBlocks]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Cue Blocks]]></category>
		<category><![CDATA[Life at CueBlocks]]></category>
		<category><![CDATA[work culture]]></category>
		<category><![CDATA[Workplace]]></category>

		<guid isPermaLink="false">http://www.cueblocks.com/blog/?p=1259</guid>
		<description><![CDATA[A day in our lives at CueBlocks is a lot more than the usual &#8211; here&#8217;s another peak into what happens at our not-so-regular office place on any regular day More from our fun archive: http://bit.ly/eJckLp]]></description>
			<content:encoded><![CDATA[<p>A day in our lives at CueBlocks is a lot more than the usual &#8211; here&#8217;s another peak into what happens at our not-so-regular office place on any regular day <img src='http://www.cueblocks.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <span id="more-1259"></span></p>
<p style="text-align: center"><object type="application/x-shockwave-flash" data="http://www.vimeo.com/moogaloop.swf?clip_id=###VID###" width="310" height="232"><param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=###VID###" /><param name="wmode" value="transparent" /></object><br /></p>
<p style="text-align: center">More from our fun archive:<br />
<a href="http://bit.ly/eJckLp" target="_blank">http://bit.ly/eJckLp</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cueblocks.com/blog/lifeatcueblocks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Goddess just descended on CueBlocks</title>
		<link>http://www.cueblocks.com/blog/a-goddess-just-descended-on-cueblocks/</link>
		<comments>http://www.cueblocks.com/blog/a-goddess-just-descended-on-cueblocks/#comments</comments>
		<pubDate>Fri, 02 Mar 2012 06:09:19 +0000</pubDate>
		<dc:creator>CueBlocks</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Cue Blocks]]></category>
		<category><![CDATA[Recommended]]></category>
		<category><![CDATA[Staff Favourites]]></category>

		<guid isPermaLink="false">http://www.cueblocks.com/blog/?p=371</guid>
		<description><![CDATA[There is no dearth of work in our office, especially when it comes to being creative. It was just one of those regular days when the idea of Thesis came in to being. In-fact, calling it an &#8216;idea&#8217; is an understatement because it was actually a stroke of sheer brilliance which came from our very own creative designer, Mandy. From Left to Right &#8211; Thesis(in the making) and Mandy For &#8230; <a href="http://www.cueblocks.com/blog/a-goddess-just-descended-on-cueblocks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There is no dearth of work in our office, especially when it comes to being creative. It was just one of those regular days when the idea of Thesis came in to being. In-fact, calling it an &#8216;idea&#8217; is an understatement because it was actually a stroke of sheer brilliance which came from our very own creative designer, Mandy.<span id="more-371"></span></p>
<p><img class="aligncenter size-full wp-image-1160" src="http://www.cueblocks.com/blog/wp-content/uploads/2011/12/1.jpg" alt="1" width="653" height="394" /></p>
<p ><strong>From Left to Right &#8211; Thesis(in the making) and Mandy</strong></p>
<p ><strong> </strong></p>
<p >
<p >
<p >For about a span of 5 Days, co-workers passed by looking at Mandy as if he was painting the wall with ambiguous figures. From the first day, to the next day and the next the excitement kept building up, until their came a day, when we saw her, in full form.</p>
<p  ><img class="aligncenter size-full wp-image-1161" src="http://www.cueblocks.com/blog/wp-content/uploads/2011/12/2.jpg" alt="2" width="630" height="355" /></p>
<p ><strong> </strong></p>
<p >
<p >
<p >
<p >And now, it is hard to pass by without a glance. In fact we know of some who come to hall under the garb of getting some coffee or playing pool, but what they really want to do is take a glance at her, in the hope that she may open her beautiful eyes and say those magical words-</p>
<p  ><img class="aligncenter size-full wp-image-1162" src="http://www.cueblocks.com/blog/wp-content/uploads/2011/12/3.jpg" alt="3" width="630" height="355" /></p>
<p >Yep, the beauty of Thesis doesn&#8217;t lie in her voluptuous hair, or her eyes, or the way she seems to be gliding farther and farther away from you, but in her maker, her creator-</p>
<p ><strong>Thank you Mandy:)</strong></p>
<p  ><img class="aligncenter size-full wp-image-1163" src="http://www.cueblocks.com/blog/wp-content/uploads/2011/12/4.jpg" alt="4" width="729" height="465" /></p>
<p ><strong> Thesis</strong> (Greek θέσις <em>Thesis</em>) is a Primordial Goddess of Creation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cueblocks.com/blog/a-goddess-just-descended-on-cueblocks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento: SOLR indexation loops twice through product catalog</title>
		<link>http://www.cueblocks.com/blog/magento-solr-indexation-2/</link>
		<comments>http://www.cueblocks.com/blog/magento-solr-indexation-2/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 12:16:29 +0000</pubDate>
		<dc:creator>Nosheen</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Magento development]]></category>
		<category><![CDATA[Magento Extensions]]></category>

		<guid isPermaLink="false">http://www.cueblocks.com/blog/?p=1203</guid>
		<description><![CDATA[Our recent experience with SOLR setup with Magento EE put us through some interesting challenges and we hope that our experience sharing here helps those out there facing similar issues and saves valuable developer time We would welcome any suggestions on how to handle the issue below more elegantly if possible. On the face of it, the problem seemed to be too much time being taken by indexation. On further &#8230; <a href="http://www.cueblocks.com/blog/magento-solr-indexation-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify">Our recent experience with <a href="http://lucene.apache.org/solr/" target="_blank">SOLR</a> setup with Magento EE put us through some interesting challenges and we hope that our experience sharing here helps those out there facing similar issues and saves valuable developer time <img src='http://www.cueblocks.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  We would welcome any suggestions on how to handle the issue below more elegantly if possible. <span id="more-1203"></span> </p>
<p style="text-align: justify">On the face of it, the problem seemed to be too much time being taken by indexation. On further investigation, we found out that SOLR indexation looped twice through product catalog.</p>
<p style="text-align: justify">This instance of Magento EE has one website, two stores and each has its own storeview. It also uses <a href="http://www.unirgy.com/products/urapidflow/" target="_blank">uRapidFlow</a> extension for importing products. uRapidFlow by default assigns imported products to all active stores views (if any store view is selected then this store view receives imported products).</p>
<p style="text-align: justify">During indexation (<tt>catalogsearch_fulltext</tt>) Magento pushes products associated with all the active storeviews in the system. Since we have two active storeviews, indexation took in 2 loops.</p>
<p style="text-align: justify"><strong>How to stop indexation from looping:</strong></p>
<p style="text-align: justify">When importing products using uRapidFlow don&#8217;t forget to select specific store view to which the products are being assigned to. If you accidentally already have products assigned to multiple store views:</p>
<ul style="text-align: justify">
<li>remove unused stores / store views (as a result all relations to assigned products will be removed too)</li>
<li>hardcode <tt>store_id</tt> in the script (preferably not the core file but overwrite with your &#8216;local&#8217; copy) to restrict Magento to store views within that specific store (<tt>code / core / Mage / CatalogSearch / Model / Indexer / Fulltext.php : reindexAll()</tt> &#8211; pass <tt>store_id</tt> to <tt>rebuildIndex()</tt>)</li>
</ul>
<p style="text-align: justify">Have you experienced similar problems? What was your solution?</p>
<p style="text-align: justify"><strong>Software used:</strong><br />
<em>MagentoEE-1.10.1.1</em><br />
<em> Solr-3.3.0</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cueblocks.com/blog/magento-solr-indexation-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CueBlocks’ Magento Product Zoom Extension Finds Mention at..</title>
		<link>http://www.cueblocks.com/blog/magento-product-zoom-extension/</link>
		<comments>http://www.cueblocks.com/blog/magento-product-zoom-extension/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 11:27:17 +0000</pubDate>
		<dc:creator>Nosheen</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[CueBlocks]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[CPC Strategy Blog]]></category>
		<category><![CDATA[Magento Extensions]]></category>
		<category><![CDATA[Magento Product Zoom Extension]]></category>

		<guid isPermaLink="false">http://www.cueblocks.com/blog/?p=1193</guid>
		<description><![CDATA[CueBocks&#8217; Magento Product Zoom extension was recently listed by CPC Strategy Blog among the Magento extensions to look out for. The Blog entry can be viewed at: http://cpcstrategy.com/blog/2012/01/7-free-magento-extensions/ CueBlocks has developed other magento extensions to further facilitate the online shopping experience which can be viewed at: http://www.cueblocks.com/magento-ecommerce-development.php]]></description>
			<content:encoded><![CDATA[<p>CueBocks&#8217; <a title="Magento Product Zoom extension" href="http://www.magentocommerce.com/magento-connect/cueblocks-zoom.html" target="_blank">Magento Product Zoom extension</a> was recently listed by CPC Strategy Blog among the Magento extensions to look out for. The Blog entry can be viewed at: <a title="Magento Extensions" href="http://cpcstrategy.com/blog/2012/01/7-free-magento-extensions/" target="_blank">http://cpcstrategy.com/blog/2012/01/7-free-magento-extensions/</a> <span id="more-1193"></span></p>
<p>CueBlocks has developed other <a title="Magento Extensions" href="http://www.cueblocks.com/magento-ecommerce-development.php" target="_blank">magento extensions</a> to further facilitate the online shopping experience which can be viewed at: <a title="Magento eCommerce Development" href="http://www.cueblocks.com/magento-ecommerce-development.php" target="_blank">http://www.cueblocks.com/magento-ecommerce-development.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cueblocks.com/blog/magento-product-zoom-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Today is a great day!</title>
		<link>http://www.cueblocks.com/blog/today-is-a-great-day/</link>
		<comments>http://www.cueblocks.com/blog/today-is-a-great-day/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 11:00:10 +0000</pubDate>
		<dc:creator>Nosheen</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[CueBlocks]]></category>
		<category><![CDATA[internet marketing]]></category>
		<category><![CDATA[Web Analyst]]></category>

		<guid isPermaLink="false">http://www.cueblocks.com/blog/?p=1212</guid>
		<description><![CDATA[Tushar joined CueBlocks as a web analyst and became a vital part of the team of heady Internet Marketers at CueBlocks! However, time had to play its part and Tushar had to move on but not without sharing his CueBlocks’ experience. Here it goes: Today is great day. I got up a little late in the morning, but it’s okay because I have up-till 10 to make it office. I’ve &#8230; <a href="http://www.cueblocks.com/blog/today-is-a-great-day/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><em>Tushar joined CueBlocks as a web analyst and became a vital part of the team of heady Internet Marketers at CueBlocks!</em></p>
<p><em>However, time had to play its part and Tushar had to move on but not without sharing his CueBlocks’ experience. </em> <span id="more-1212"></span></p>
<p><em>Here it goes:</em></p>
<p>Today is great day. I got up a little late in the morning, but it’s okay because I have up-till 10 to make it office. I’ve been looking forward to it, since I slept while reading last night. I’ve been looking forward to reaching office while people are still coming in, so that I can also participate in the morning chatter than goes around, when everybody’s sharing updates and saying their greetings, not because they have to, but because they want to.</p>
<p>I’m looking forward to it, because where I work, I am encouraged to do what I love to do, and share space with a set of people, who are not only creative, intelligent, good natured (although these are important things), but more importantly they are grounded, value-driven and a hell of a lot of fun to be with.</p>
<p>I want to reach office as soon as possible, have my set of meetings, answer my emails, do some serious data analysis (happens to be one of my interests), and then enjoy some lunch, before I get into the a very serious battle of FIFA 2012 on the Xbox.</p>
<p>I’m looking forward to that time after lunch, when I come back from the entertainment area and start the second half of the day.</p>
<p>And as I get up, I play this song on my phone which was playing last evening in the office. I look forward to that time the most. It’s when the day is almost over; people are wrapping up their work and enjoying some light music.</p>
<p>I am also looking forward to have some great conversations over the loads caffeine that I consume. Just yesterday, I enjoyed a conversation about people and what motivates them with a dear friend.</p>
<p>And finally I’m looking forward to it, because it’s going to be different than yesterday. It will perhaps be more challenging with the new projects that have come in and most fun part will be to figure a way around them with the help of my creative and committed teammates.</p>
<p>Yep. I simply cannot wait. I jump from the bed and start getting ready.<br />
&#8211;<br />
Every working day of the last few months, I have gotten up in the morning and felt like that.</p>
<p>And as a consequence, I now share genuine personal and professional relationships with many in the office, I’ve grown and learnt beyond anything I had ever imagined and I am as proud as one can be, of being a CueBie.</p>
<p>That, is my story. What’s yours?</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cueblocks.com/blog/today-is-a-great-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento: Why SOLR indexation suddenly stopped working</title>
		<link>http://www.cueblocks.com/blog/solr-indexation-stopped-working/</link>
		<comments>http://www.cueblocks.com/blog/solr-indexation-stopped-working/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 08:21:44 +0000</pubDate>
		<dc:creator>Nosheen</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Magento development]]></category>
		<category><![CDATA[SOLR Indexation]]></category>

		<guid isPermaLink="false">http://www.cueblocks.com/blog/?p=1207</guid>
		<description><![CDATA[We welcome any suitable alternatives to the solution being discussed here. We are using Solr in our latest Magento EE project. While running the periodic index updates using Magento&#8217;s native CLI indexer (shell/indexer.php) we realized that there was suddenly no data being sent to Solr. Routine test on Solr&#8217;s side didn&#8217;t reveal any issues; the server was up and running and Magento (Admin &#62; System &#62; Catalog &#62; Catalog Search &#62; &#8230; <a href="http://www.cueblocks.com/blog/solr-indexation-stopped-working/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We welcome any suitable alternatives to the solution being discussed here.</p>
<p>We are using <a href="http://lucene.apache.org/solr/" target="_blank">Solr</a> in our latest Magento EE project. While running the periodic index updates using Magento&#8217;s native CLI indexer (<tt>shell/indexer.php</tt>) we realized that there was suddenly no data being sent to Solr. Routine test on Solr&#8217;s side didn&#8217;t reveal any issues; the server was up and running and Magento (<tt>Admin &gt; System &gt; Catalog &gt; Catalog Search &gt; Test connection</tt>) was showing successful connection. <span id="more-1207"></span></p>
<p>Analyzing Magento&#8217;s and Solr&#8217;s logs didn&#8217;t provide any clues on what might be happening except it turned out that the indexing process hung right after the index cleanup. Since there was no recent change in the code or server settings the logical conclusion was the database. Tracing Magento code starting from <tt>shell/indexer.php</tt> took us all the way down to <tt>lib/Zend/Db/Statement/Pdo.php</tt>:</p>
<pre class="brush: php; gutter: true">public function _execute(array $params = null)
{
    try {
        if ($params !== null) {
            return $this-&gt;_stmt-&gt;execute($params);
        } else {
            return $this-&gt;_stmt-&gt;execute();
        }
    } catch (PDOException $e) {
        #require_once &#039;Zend/Db/Statement/Exception.php&#039;;
        throw new Zend_Db_Statement_Exception($e-&gt;getMessage(), (int) $e-&gt;getCode(), $e);
    }
}</pre>
<p>The problem emerged at line 5 where <tt>PDO::execute()</tt> method is called from <tt>$this-&gt;_stmt</tt> PDO object. As per PHP documentation this function returns true/false but in this case it just did nothing. It turned out that there was a deadlock on one of the tables that prevented <tt>execute()</tt> from retrieving data and passing it to Solr.</p>
<p>Have you faced a similar issue? What was your solution for that?</p>
<p><strong>Software used:</strong><br />
<em>MagentoEE-1.10.1.1</em><br />
<em>Solr-3.3.0</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cueblocks.com/blog/solr-indexation-stopped-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CueBlocks at the 2012 DevFestX, Gurgaon!</title>
		<link>http://www.cueblocks.com/blog/cueblocks-at-2012-devfestx/</link>
		<comments>http://www.cueblocks.com/blog/cueblocks-at-2012-devfestx/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 12:35:56 +0000</pubDate>
		<dc:creator>Nosheen</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[CueBlocks]]></category>
		<category><![CDATA[DevFestX]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google India]]></category>

		<guid isPermaLink="false">http://www.cueblocks.com/blog/?p=1198</guid>
		<description><![CDATA[The GTUG (Google Technology User Group) Delhi is organizing the DevFestX, the X-tended version of the popular Google-inspired DevFest for developers from Feb 11th through Feb 12th 2012 at the Google office in Gurgaon, India and we’re going to be there! Want to know more? Visit: http://www.devfestx.com/gtug/delhi/2012/sandbox.php# CueBlocks along with other industry specialists will be taking on the stage to decipher and deliberate Google’s amazing applications and game-changing technology. So &#8230; <a href="http://www.cueblocks.com/blog/cueblocks-at-2012-devfestx/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The GTUG (Google Technology User Group) Delhi is organizing the DevFestX, the X-tended version of the popular Google-inspired DevFest for developers from Feb 11th through Feb 12th 2012 at the Google office in Gurgaon, India and we’re going to be there! Want to know more? Visit: <a title="DevFestX Delhi 2012" href="http://www.devfestx.com/gtug/delhi/2012/sandbox.php#" target="_blank">http://www.devfestx.com/gtug/delhi/2012/sandbox.php#</a> <span id="more-1198"></span></p>
<p><a title="CueBlocks" href="http://www.cueblocks.com/" target="_blank">CueBlocks</a> along with other industry specialists will be taking on the stage to decipher and deliberate Google’s amazing applications and game-changing technology. So we along with the folks from GTUG Noida, Marketado, Google, Mahindra Satyam, Hashtash Studios, Booz&amp;Co., the Saltlist, will be enjoying some real development fun at the DevFestX.</p>
<p><strong>Is being there enough?</strong></p>
<p>Not for Aman Alam, our very own Android-struck developer who will be giving a talk on ‘Understanding OAuth and implementing ‘Sign-in with Twitter’ in your Android applications’. Way to go Aman, make all of us proud!</p>
<p>Other speakers at the DevFestX are: Michael Van Ripper, Program Manager, Developer relations at Google, Rajdeep Dua, Lead Developer Advocate at Google India, Badrinath Kulkarni, Android Developer, Bangalore, Ashish Sharma, Principal, Booz&amp;Co.</p>
<p>DevFestX talks will be followed by what seems like an exciting hackathon session on the last day where the developers will be brainstorming to create a viable code. Which, by the way is nothing less than out-in-the-park fun for the development community.</p>
<p><a title="CueBlocks" href="http://www.cueblocks.com/" target="_blank">CueBlocks</a> is looking forward to being part of DevFestX and thanks DevFestX for giving us the opportunity to contribute.</p>
<p>We wish the organizers a successful venture and all the very best!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cueblocks.com/blog/cueblocks-at-2012-devfestx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

