<?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>InfoTales &#187; Uncategorized</title>
	<atom:link href="http://www.infotales.com/topic/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.infotales.com</link>
	<description>Web application performance, Web Server Performance, Data Mining, SEO, MySQL, Magento Performance and much more</description>
	<lastBuildDate>Sat, 21 Jan 2012 14:51:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
		<item>
		<title>Full Text Searching in Innodb Engine</title>
		<link>http://www.infotales.com/full-text-searching-in-innodb-engine/</link>
		<comments>http://www.infotales.com/full-text-searching-in-innodb-engine/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 14:56:48 +0000</pubDate>
		<dc:creator>boogieman</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fulltext search]]></category>
		<category><![CDATA[innodb]]></category>
		<category><![CDATA[myisam]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=1354</guid>
		<description><![CDATA[This is the time when we can start using full text searching in Innodb. InnoDB Fulltext Searching is greatly enhanced the transactional storage engine, which is completely different from MyISAM. So this is the new change in storage world which can be the revolution in storage. So lets have the little discussion on this new [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">This is the time when we can start using full text searching in Innodb. InnoDB Fulltext Searching is greatly enhanced the transactional storage engine, which is completely different from MyISAM. So this is the new change in storage world which can be the revolution in storage.</p>
<p style="text-align: justify;"><span id="more-1354"></span></p>
<p style="text-align: justify;">
<p style="text-align: justify;">So lets have the little discussion on this new InnoDB feature design concept. There are 4 important design concepts below</p>
<p style="text-align: justify;">
<ol style="text-align: justify;">
<li><strong>Inverted Index</strong></li>
<li>Full      Text Search <strong>Index Table</strong></li>
<li>Full      Text Search <strong>Index Cache</strong></li>
<li>Full      Text Search <strong>Document ID</strong></li>
</ol>
<p style="text-align: justify;"><strong> </strong></p>
<p style="text-align: justify;"><strong>Inverted Index</strong></p>
<p style="text-align: justify;">
<p style="text-align: justify;">Like all full text search engine InnoDB full text search engine have inverted index which separates the incoming text into words and store them in auxiliary tables. For every word the document ID list store which is called document ID position pair list. So there are two columns in inverted index tables are word and ilist. As we are storing the word position against of each word so Proximity Search is not possible which is the drawback of MyISAM.</p>
<p style="text-align: justify;">
<p style="text-align: justify;"><strong>Index Tables</strong></p>
<p style="text-align: justify;">
<p style="text-align: justify;">Index tables also called Auxiliary tables so the words in the inverted index tables stores in the auxiliary table and also called Full text search index tables. These tables are separated as partitioned so the words are partitioned into 6 tables against there document ID’s.  User also can define the partition scheme manually according to the charsets.</p>
<p style="text-align: justify;">
<p style="text-align: justify;"><strong>Index Cache</strong></p>
<p style="text-align: justify;">
<p style="text-align: justify;">Full text Index are referred by a set of index Auxiliary Tables on the hard disk. There also exist a full text searching index cache to execute the results before flush to the Index table. The Index Cache is the black tree that stores the word document ID/position ilist information in it. There is a difference between this cache and index tree which is only used to cache the word inserted. So not every time words in the queue called from the disk for cache. In innodb the index table updates regularly.</p>
<p style="text-align: justify;">
<p style="text-align: justify;"><strong>Document ID</strong></p>
<p style="text-align: justify;">
<p style="text-align: justify;">The most important concept which will change the Document ID management, every word have a unique Document ID represented by “FTS_DOC_ID” automatically added to the user table. Also there is the unique index on that column “FTS_DOC_ID_INDEX”.</p>
<p style="text-align: justify;">
<p style="text-align: justify;"><strong>How to Use INNODB Fulltext Index</strong></p>
<p style="text-align: justify;">
<p style="text-align: justify;">Example of creating a table and unique index</p>
<p style="text-align: justify;">
<p style="text-align: justify;"><strong>Create a table </strong></p>
<p style="text-align: justify;"><em>CREATE TABLE fts_test (</em></p>
<p style="text-align: justify;"><em>FTS_DOC_ID BIGINT UNSIGNED AUTO_INCREMENT NOT NULL,</em></p>
<p style="text-align: justify;"><em>title VARCHAR(200),</em></p>
<p style="text-align: justify;"><em>body TEXT</em></p>
<p style="text-align: justify;"><em>) ENGINE=InnoDB;</em></p>
<p style="text-align: justify;"><strong>Create a index </strong></p>
<p style="text-align: justify;">2) <em>CREATE UNIQUE INDEX FTS_DOC_ID_INDEX on fts_test(FTS_DOC_ID);</em></p>
<p style="text-align: justify;">3) Load data</p>
<p style="text-align: justify;">4) <em>CREATE FULLTEXT INDEX idx on fts_test (title, body);</em></p>
<p style="text-align: justify;">
<p style="text-align: justify;"><strong>Benchmarks Of Sorting Data</strong></p>
<p style="text-align: justify;"><strong> </strong></p>
<p style="text-align: justify;">There is new system for controlling the parallel sort degree “innodb_ft_sort_pll_degree” new variable range from (2 to 32 max). This is used to how many ways you want to parallelize sort operations. So this is an Experiment results using innodb_ft_sort_pll_degree different values</p>
<p style="text-align: justify;">
<p style="text-align: justify;">Following table shows a quick run on 2.7 G wikipedia data on a 8 core machine:</p>
<table style="text-align: justify;" border="1" cellspacing="0" cellpadding="0" width="100%">
<colgroup>
<col width="128*"></col>
<col width="128*"></col>
</colgroup>
<tbody>
<tr>
<td width="50%" valign="top">Server</td>
<td width="50%" valign="top">Time (min)</td>
</tr>
<tr>
<td width="50%" valign="top">MyISAM</td>
<td width="50%" valign="top">11 min 47.90</td>
</tr>
<tr>
<td width="50%" valign="top">InnoDB (default)</td>
<td width="50%" valign="top">7 min 25.21 sec</td>
</tr>
<tr>
<td width="50%" valign="top">InnoDB pll_degree</td>
<td width="50%" valign="top">5 min 34.98</td>
</tr>
<tr>
<td width="50%" valign="top">InnoDB pll_degree = 8</td>
<td width="50%" valign="top">4 min 9 sec</td>
</tr>
<tr>
<td width="50%" valign="top">InnoDB pll_degree = 16</td>
<td valign="top">3 min 39.51 sec</td>
</tr>
</tbody>
</table>
<p style="text-align: justify;">

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Ffull-text-searching-in-innodb-engine%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/full-text-searching-in-innodb-engine/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Nice analytical tools</title>
		<link>http://www.infotales.com/nice-analytical-tools/</link>
		<comments>http://www.infotales.com/nice-analytical-tools/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 13:55:29 +0000</pubDate>
		<dc:creator>shahpar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=1313</guid>
		<description><![CDATA[I just came around a nice post about tools to improve conversions. The post have introduction to different analytic tools to improve a website. Here the link to post http://www.conversion-rate-experts.com/articles/understanding-your-visitors/]]></description>
			<content:encoded><![CDATA[<p>I just came around a nice post about tools to improve conversions. The post have introduction to different analytic tools to improve a website. Here the link to post <a href="http://www.conversion-rate-experts.com/articles/understanding-your-visitors/" target="_blank" rel="external nofollow">http://www.conversion-rate-experts.com/articles/understanding-your-visitors/</a></p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Fnice-analytical-tools%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/nice-analytical-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>webpagetest.org looks really odd in IE7</title>
		<link>http://www.infotales.com/webpagetest-org-looks-really-odd-in-ie7/</link>
		<comments>http://www.infotales.com/webpagetest-org-looks-really-odd-in-ie7/#comments</comments>
		<pubDate>Wed, 18 May 2011 15:26:28 +0000</pubDate>
		<dc:creator>shahpar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=1303</guid>
		<description><![CDATA[Webpagetest.org a very good tool to test your website performance for free, is really looking odd in IE7. In IE7 the page only shows logos of partners and nothing else. The test (http://www.webpagetest.org/result/110518_8Y_c7e2adb4e09ebe56465372560230d115/) of web page test is showing that sprite of bottom logos is taking up all the page.]]></description>
			<content:encoded><![CDATA[<p>Webpagetest.org a very good tool to test your website performance for free, is really looking odd in IE7. In IE7 the page only shows logos of partners and nothing else. <img src='http://www.infotales.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <a href="http://www.infotales.com/wp-content/uploads/2011/05/webpagetest.jpg"><img class="size-medium wp-image-1304 alignnone" title="webpagetest" src="http://www.infotales.com/wp-content/uploads/2011/05/webpagetest-300x217.jpg" alt="" width="300" height="217" /></a></p>
<p>The test (http://www.webpagetest.org/result/110518_8Y_c7e2adb4e09ebe56465372560230d115/) of web page test is showing that sprite of bottom logos is taking up all the page.</p>
<hr />

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Fwebpagetest-org-looks-really-odd-in-ie7%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/webpagetest-org-looks-really-odd-in-ie7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My Experience so far with IE 9</title>
		<link>http://www.infotales.com/my-experience-so-far-with-ie-9/</link>
		<comments>http://www.infotales.com/my-experience-so-far-with-ie-9/#comments</comments>
		<pubDate>Thu, 05 May 2011 07:45:41 +0000</pubDate>
		<dc:creator>shahpar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=1288</guid>
		<description><![CDATA[Few days back I published a post &#8220;Pathetic experience of upgrading to IE9&#8220;, so I though to write my experience with IE 9 after first one. Over all using IE9 is good experience. Very clean design and a lot of area for actual web page (even better than chrome) are very attractive. Performance is also [...]]]></description>
			<content:encoded><![CDATA[<p>Few days back I published a post &#8220;<a href="http://www.infotales.com/pathetic-experience-of-upgrading-to-internet-explorer-9-ie9/">Pathetic experience of upgrading to IE9</a>&#8220;, so I though to write my experience with IE 9 after first one. Over all using IE9 is good experience. <span id="more-1288"></span>Very clean design and a lot of area for actual web page (even better than chrome) are very attractive. <strong>Performance </strong>is also good for downloading and rendering pages. Backward compatibility is also good, did not have to use compatibility view yet. </p>
<p>Best thing which I liked about IE 9 is the feature which tells which add-ons made IE to start slow. I only had few add-ons for IE as compared to FF. On start up IE showed following screen at bottom of screen, notifying about slow add-ons.<br />
<a href="http://www.infotales.com/wp-content/uploads/2011/05/ie9_addons.gif"><img src="http://www.infotales.com/wp-content/uploads/2011/05/ie9_addons.gif" alt="" title="ie9_addons" width="572" height="66" class="alignleft size-full wp-image-1289" /></a></p>
<p>Upon clicking &#8220;Choose Add-ons&#8221; showed up following screen.<br />
<a href="http://www.infotales.com/wp-content/uploads/2011/05/ie9_addons_time.gif"><img src="http://www.infotales.com/wp-content/uploads/2011/05/ie9_addons_time.gif" alt="" title="ie9_addons_time" width="564" height="550" class="alignleft size-full wp-image-1290" /></a></p>
<p>This showed the culprit add-on, responsible for slower startup. I immediately disabled &#8220;HTTP watch&#8221;, because I was not actively using it. Few other add-ons were shown, from which I disabled most of it as I was not using those.</p>
<p>I found this feature very helpful for better experience. This allowed me to get rid of many add-ons which I really not using and just paying cost in term of CPU and memory. FireFox should also introduce similar feature, as more and more add-ons are making FF slower to start.</p>
<p>To review add-ons performance in IE 9 you can also go to &#8220;Tools > Manage Add-ons&#8221;, where you can enable/disable any add-ons.</p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Fmy-experience-so-far-with-ie-9%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/my-experience-so-far-with-ie-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE 9 pushed in Windows Update</title>
		<link>http://www.infotales.com/ie-9-windows-update/</link>
		<comments>http://www.infotales.com/ie-9-windows-update/#comments</comments>
		<pubDate>Thu, 05 May 2011 07:19:01 +0000</pubDate>
		<dc:creator>shahpar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=1284</guid>
		<description><![CDATA[IE 9 recently pushed through Windows Update. I installed IE 9 on one of my laptops on 3rd May 2011. Initially IE 9 was only available through download. FireFox 4 already left IE 9 behind in usage stats, now its time for IE 9 to catchup with FireFox 4. For website owners it is recommended [...]]]></description>
			<content:encoded><![CDATA[<p>IE 9 recently pushed through Windows Update. I installed IE 9 on one of my laptops on 3rd May 2011.<br />
Initially IE 9 was only available through download. FireFox 4 already left IE 9 behind in usage stats, now its time for IE 9 to catchup with FireFox 4.</p>
<p>For website owners it is recommended that they install IE 9 and test their websites compatibility and performance with IE 9, because its usage is expected to get a spike as its being rolled out to different regions.</p>
<p>Stats already showing increasing usage of IE 9 in Europe, but still its way behind FF4. In Europe FF is still managing to be at top in usage.</p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Fie-9-windows-update%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/ie-9-windows-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FireFox is number one browser in Europe</title>
		<link>http://www.infotales.com/firefox-is-number-one-browser-in-europe/</link>
		<comments>http://www.infotales.com/firefox-is-number-one-browser-in-europe/#comments</comments>
		<pubDate>Sat, 02 Apr 2011 14:52:36 +0000</pubDate>
		<dc:creator>shahpar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=1257</guid>
		<description><![CDATA[FireFox is new number one browser in Europe now. This is very significant event marking end of Internet Explorer dominance in web browsers. If major audience of your web site is from Europe it is recommended that you test your site in FireFox for any errors in display. Source: StatCounter Global Stats]]></description>
			<content:encoded><![CDATA[<p>FireFox is new number one browser in Europe now. This is very significant event marking end of Internet Explorer dominance in web browsers. If major audience of your web site is from Europe it is recommended that you test your site in FireFox for any errors in display.<span id="more-1257"></span></p>
<p>Source: StatCounter Global Stats</p>
<p><script src="http://www.statcounter.com/js/FusionCharts.js" type="text/javascript"></script><script src="http://gs.statcounter.com/chart.php?browser-eu-monthly-201101-201103" type="text/javascript"></script></p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Ffirefox-is-number-one-browser-in-europe%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/firefox-is-number-one-browser-in-europe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pathetic experience of upgrading to Internet Explorer 9 (IE9)</title>
		<link>http://www.infotales.com/pathetic-experience-of-upgrading-to-internet-explorer-9-ie9/</link>
		<comments>http://www.infotales.com/pathetic-experience-of-upgrading-to-internet-explorer-9-ie9/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 15:08:29 +0000</pubDate>
		<dc:creator>shahpar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=1236</guid>
		<description><![CDATA[Today I tried to upgrade Internet Explorer (IE) version to latest IE9. The experience of upgrading was very bad, for the following reasons. First I tried to google for download link of IE9. If you see screen shot, first link (paid link) took me to Arabic version of download page, where every thing was in [...]]]></description>
			<content:encoded><![CDATA[<p>Today I tried to upgrade Internet Explorer (IE) version to latest IE9. The experience of upgrading was very bad, for the following reasons.<span id="more-1236"></span></p>
<p>First I tried to google for download link of IE9. If you see screen shot, first link (paid link) took me to Arabic version of download page, where every thing was in Arabic. If you note 2nd link is for beta version of IE9 so it is of no use.<br />
<a href="http://www.infotales.com/wp-content/uploads/2011/03/ie9_3.gif"><img class="size-full wp-image-1241 alignnone" title="ie9_3" src="http://www.infotales.com/wp-content/uploads/2011/03/ie9_3.gif" alt="" width="562" height="288" /></a></p>
<p>Finally on 3rd try i could find the download page. The download failed 3 times, before i was able to download. As this installer was online installer, I started searching for <a rel="nofollow external" href="http://www.microsoft.com/downloads/en/confirmation.aspx?FamilyID=a47f45cd-8160-4d0d-b6cf-a90996be7197&amp;displaylang=en">offline installer of IE 9</a>. The download completed in reasonable time.</p>
<p>Although i downloaded an offline installer but installation screen showed me &#8220;Downloading&#8221; screen. The &#8220;Download&#8221; bar stuck at same place for more than 10 minutes.</p>
<p><a href="http://www.infotales.com/wp-content/uploads/2011/03/ie9.gif"><img class="size-full wp-image-1239 alignnone" title="ie9" src="http://www.infotales.com/wp-content/uploads/2011/03/ie9.gif" alt="" width="506" height="206" /></a></p>
<p>Finally the installation completed and as per &#8220;Microsoft Policy of Annoying&#8221; it showed screen to restart my PC before I can use IE9.<br />
<a href="http://www.infotales.com/wp-content/uploads/2011/03/ie92.gif"><img class="size-full wp-image-1240 alignnone" title="ie9_2" src="http://www.infotales.com/wp-content/uploads/2011/03/ie92.gif" alt="" width="519" height="188" /></a></p>
<p>Over all my experience of upgrading to IE9 is very bad, and don&#8217;t have much hope of good experience of IE9 its self.</p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Fpathetic-experience-of-upgrading-to-internet-explorer-9-ie9%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/pathetic-experience-of-upgrading-to-internet-explorer-9-ie9/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Does is require &#8220;best code&#8221; to be a success?</title>
		<link>http://www.infotales.com/does-is-require-best-code-to-be-a-success/</link>
		<comments>http://www.infotales.com/does-is-require-best-code-to-be-a-success/#comments</comments>
		<pubDate>Sat, 26 Feb 2011 19:09:43 +0000</pubDate>
		<dc:creator>shahpar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=1222</guid>
		<description><![CDATA[To be a success &#8220;best code&#8221; is not always required. Specially PHP is a very different language, it enables us to get things done, by allowing free style programming, a huge bunch of useful functions, and a lot of open source libraries. Every developer can choose his way of doing things, which is most of [...]]]></description>
			<content:encoded><![CDATA[<p>To be a success &#8220;best code&#8221; is not always required. Specially PHP is a very different language, it enables us to get things done, by allowing free style programming, a huge bunch of useful functions, and a lot of open source libraries. Every developer can choose his way of doing things, which is most of the time is not the &#8220;best way&#8221;.<br />
<span id="more-1222"></span><br />
There are a huge number of open-source software written in php, which are highly popular and running on a huge number of websites, still they commonly missing the &#8220;best practices&#8221;. This happens because a script get started, start working, grows and become popular and no one has the time to sit back and change it altogether (to make it &#8220;best code&#8221;). Also the best practices keep changing over the time and if you look at code written 10 years back you realize that a lot of new practices and architectures has been introduced and become popular, which obviously missing in the old &#8220;popular&#8221; and &#8220;working great&#8221; code.</p>
<p>My point is to encourage developers who get too deep and think about the best practices, best architecture etc etc, to write something which is beneficial. If it is a success you can always have best people in design, architecture, scalability, bla and bla to help you. So start writing what you think is useful without concerning much about too many things at the moment.</p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Fdoes-is-require-best-code-to-be-a-success%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/does-is-require-best-code-to-be-a-success/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Most visited pages on Info Tales during Oct 2010</title>
		<link>http://www.infotales.com/most-visited-pages-on-info-tales-during-oct-2010/</link>
		<comments>http://www.infotales.com/most-visited-pages-on-info-tales-during-oct-2010/#comments</comments>
		<pubDate>Sun, 21 Nov 2010 06:42:47 +0000</pubDate>
		<dc:creator>shahpar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=1214</guid>
		<description><![CDATA[Based on Google Analytics (GA) visitor stats blow are the most visited pages on this blog during Oct, 2010. Serving images from cookie less domain Web Performance Optimization Magento getting timeout errors, even with max_execution_time set to zero, on WAMP]]></description>
			<content:encoded><![CDATA[<p>Based on Google Analytics (GA) visitor stats blow are the most visited pages on this blog during Oct, 2010.</p>
<ol>
<li><a href="http://www.infotales.com/serving-images-from-cookie-less-domain/">Serving images from cookie less domain</a></li>
<li><a href="http://www.infotales.com/topic/web-performance-optimization/">Web Performance Optimization</a></li>
<li><a href="http://www.infotales.com/magento-timeout-errors-unlimited-max-execution-time-on-wamp/">Magento getting timeout errors, even with max_execution_time set to zero, on WAMP</a></li>
</ol>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Fmost-visited-pages-on-info-tales-during-oct-2010%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/most-visited-pages-on-info-tales-during-oct-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTTPS cURL request on Windows certificate error</title>
		<link>http://www.infotales.com/https-curl-request-windows-certificate-error/</link>
		<comments>http://www.infotales.com/https-curl-request-windows-certificate-error/#comments</comments>
		<pubDate>Mon, 25 Oct 2010 09:00:02 +0000</pubDate>
		<dc:creator>shahpar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.infotales.com/?p=1179</guid>
		<description><![CDATA[If you are trying to do a cURL to a url on https on a windows server. You are likely to get curl error like CURL Error 60: SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines SSL3_GET_SERVER_CERTIFICATE:certificate verify failed To solve this issue you need to do following steps Download [...]]]></description>
			<content:encoded><![CDATA[<p>If you are trying to do a cURL to a url on https on a windows server. You are likely to get curl error like<br />
<code>CURL Error 60: SSL certificate problem, verify that the CA cert is OK.<br />
Details: error:14090086:SSL routines<br />
SSL3_GET_SERVER_CERTIFICATE:certificate verify failed</code></p>
<p>To solve this issue you need to do following steps <span id="more-1179"></span></p>
<ol>
<li><a href="http://curl.haxx.se/ca/cacert.pem" rel="nofollow external">Download this .pem file</a> from <a href="http://curl.haxx.se/docs/caextract.html" rel="nofollow external">http://curl.haxx.se/docs/caextract.html</a></li>
<li>Place this file on you web server, where you can refer it in code.</li>
<li>Now add following code where you are doing the actual cURL request curl_setopt($curl, CURLOPT_CAINFO, &#8220;c:/path_to/cacert.pem&#8221;);</li>
</ol>
<p>Please ensure that you provide correct physical path to cacert.pem file. A sample code will look like as given below<br />
<code>// the url to connect, note its HTTPS url<br />
$the_url = "https://www.google.com/";<br />
$certificate = "c:/path_to/cacert.pem";<br />
$curl = curl_init();<br />
curl_setopt($curl, CURLOPT_URL, $the_url);<br />
curl_setopt($curl, CURLOPT_CAINFO, $certificate);<br />
// adjust these as per your need<br />
curl_setopt($curl, CURLOPT_HEADER, 0);<br />
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);<br />
$response = curl_exec ($curl);<br />
curl_close($curl);<br />
echo "the cURL response is: ".$response;</code></p>
<p>This should resolve the error.</p>

<p class="FacebookLikeButton"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.infotales.com%2Fhttps-curl-request-windows-certificate-error%2F&amp;layout=standard&amp;show_faces=yes&amp;width=450&amp;action=like&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height: 25px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infotales.com/https-curl-request-windows-certificate-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

