<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>My mistakes</title>
	<atom:link href="http://pvibeesh.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pvibeesh.wordpress.com</link>
	<description>My comments</description>
	<lastBuildDate>Wed, 04 Jan 2012 07:28:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='pvibeesh.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>My mistakes</title>
		<link>http://pvibeesh.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://pvibeesh.wordpress.com/osd.xml" title="My mistakes" />
	<atom:link rel='hub' href='http://pvibeesh.wordpress.com/?pushpress=hub'/>
		<item>
		<title>MySQL GROUP_CONCAT headache</title>
		<link>http://pvibeesh.wordpress.com/2011/09/27/mysql-group_concat-headache/</link>
		<comments>http://pvibeesh.wordpress.com/2011/09/27/mysql-group_concat-headache/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 06:39:29 +0000</pubDate>
		<dc:creator>pvibeesh</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://pvibeesh.wordpress.com/?p=104</guid>
		<description><![CDATA[create table test_table(id integer unsigned,cName varchar(50)); insert into test_table values(1,&#8217;test1&#8242;); insert into test_table values(2,&#8217;test2&#8242;); insert into test_table values(3,&#8217;test3&#8242;); select group_concat(cName separator &#8216;,&#8217;) from test_table +&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+ &#124; group_concat(cName separator &#8216;,&#8217;) &#124; +&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+ &#124; test1,test2,test3 &#124; +&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+ But now,I want to limit the group_concat to the first two rows of the result: +&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+ &#124; group_concat(name separator &#8216;,&#8217;) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=104&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>create table test_table(id integer unsigned,cName varchar(50));</p>
<p>insert into test_table values(1,&#8217;test1&#8242;);<br />
insert into test_table values(2,&#8217;test2&#8242;);<br />
insert into test_table values(3,&#8217;test3&#8242;);</p>
<p>select group_concat(cName separator &#8216;,&#8217;)<br />
from test_table</p>
<p>+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+<br />
| group_concat(cName separator &#8216;,&#8217;) |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+<br />
| test1,test2,test3 |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+</p>
<p>But now,I want to limit the group_concat to the first two rows of the result:</p>
<p>+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+<br />
| group_concat(name separator &#8216;,&#8217;) |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+<br />
| test1,test2 |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+</p>
<p>Solution :<br />
We cannot use the limit with the group_concat so the better solution is to go for SUBSTRING_INDEX like</p>
<p>SELECT<br />
SUBSTRING_INDEX(group_CONCAT(cName) , &#8216;,&#8217;, 2) as cName from test_table</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pvibeesh.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pvibeesh.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pvibeesh.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pvibeesh.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pvibeesh.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pvibeesh.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pvibeesh.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pvibeesh.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pvibeesh.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pvibeesh.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pvibeesh.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pvibeesh.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pvibeesh.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pvibeesh.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=104&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pvibeesh.wordpress.com/2011/09/27/mysql-group_concat-headache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1656bc58282c433300628f92b2aeac0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pvibeesh</media:title>
		</media:content>
	</item>
		<item>
		<title>Eclipse &#8221; editor does not contain a main type&#8221;</title>
		<link>http://pvibeesh.wordpress.com/2011/02/16/eclipse-editor-does-not-contain-a-main-type/</link>
		<comments>http://pvibeesh.wordpress.com/2011/02/16/eclipse-editor-does-not-contain-a-main-type/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 10:03:53 +0000</pubDate>
		<dc:creator>pvibeesh</dc:creator>
				<category><![CDATA[LINUX]]></category>

		<guid isPermaLink="false">http://pvibeesh.wordpress.com/?p=102</guid>
		<description><![CDATA[This issue is mainly related to the source path setting . To solve this issue ensure the source path is setup correctly. For verifying the source path use Project(Menu) =&#62; Properties =&#62; Java Build Path =&#62; Source (select the appropriate src files) After setting up the src 1) While running select the type of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=102&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This issue is mainly related to the source path setting . To solve  this issue ensure the source path is setup correctly.  </p>
<p>For verifying the source path use<br />
Project(Menu)<br />
 =&gt; Properties<br />
    =&gt; Java Build Path<br />
        =&gt; Source (select the appropriate src files)</p>
<p>After setting up the src<br />
1) While running select the type of the application<br />
2) Select the appropriate file with the main function</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pvibeesh.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pvibeesh.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pvibeesh.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pvibeesh.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pvibeesh.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pvibeesh.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pvibeesh.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pvibeesh.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pvibeesh.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pvibeesh.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pvibeesh.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pvibeesh.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pvibeesh.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pvibeesh.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=102&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pvibeesh.wordpress.com/2011/02/16/eclipse-editor-does-not-contain-a-main-type/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1656bc58282c433300628f92b2aeac0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pvibeesh</media:title>
		</media:content>
	</item>
		<item>
		<title>Firefox DOM &#8211; whitespace and newline</title>
		<link>http://pvibeesh.wordpress.com/2010/03/22/firefox-dom-whitespace-and-newline/</link>
		<comments>http://pvibeesh.wordpress.com/2010/03/22/firefox-dom-whitespace-and-newline/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 05:33:09 +0000</pubDate>
		<dc:creator>pvibeesh</dc:creator>
				<category><![CDATA[LINUX]]></category>
		<category><![CDATA[javascript DOM]]></category>

		<guid isPermaLink="false">http://pvibeesh.wordpress.com/2010/03/22/firefox-dom-whitespace-and-newline/</guid>
		<description><![CDATA[Refer this post http://www.agavegroup.com/?p=32<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=94&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Refer this post</p>
<p>http://www.agavegroup.com/?p=32</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pvibeesh.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pvibeesh.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pvibeesh.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pvibeesh.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pvibeesh.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pvibeesh.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pvibeesh.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pvibeesh.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pvibeesh.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pvibeesh.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pvibeesh.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pvibeesh.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pvibeesh.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pvibeesh.wordpress.com/94/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=94&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pvibeesh.wordpress.com/2010/03/22/firefox-dom-whitespace-and-newline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1656bc58282c433300628f92b2aeac0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pvibeesh</media:title>
		</media:content>
	</item>
		<item>
		<title>php emil non-ascii subject encoding</title>
		<link>http://pvibeesh.wordpress.com/2010/03/12/php-emil-non-ascii-subject-encoding/</link>
		<comments>http://pvibeesh.wordpress.com/2010/03/12/php-emil-non-ascii-subject-encoding/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 06:19:42 +0000</pubDate>
		<dc:creator>pvibeesh</dc:creator>
				<category><![CDATA[LINUX]]></category>
		<category><![CDATA[php email]]></category>

		<guid isPermaLink="false">http://pvibeesh.wordpress.com/2010/03/12/php-emil-non-ascii-subject-encoding/</guid>
		<description><![CDATA[Quick fix $subject= mb_encode_mimeheader($subject,&#8221;UTF-8&#8243;, &#8220;B&#8221;, &#8220;\n&#8221;);<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=93&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Quick fix<br />
$subject= mb_encode_mimeheader($subject,&#8221;UTF-8&#8243;, &#8220;B&#8221;, &#8220;\n&#8221;);</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pvibeesh.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pvibeesh.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pvibeesh.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pvibeesh.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pvibeesh.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pvibeesh.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pvibeesh.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pvibeesh.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pvibeesh.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pvibeesh.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pvibeesh.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pvibeesh.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pvibeesh.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pvibeesh.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=93&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pvibeesh.wordpress.com/2010/03/12/php-emil-non-ascii-subject-encoding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1656bc58282c433300628f92b2aeac0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pvibeesh</media:title>
		</media:content>
	</item>
		<item>
		<title>ghostscript pdf to image conversion error</title>
		<link>http://pvibeesh.wordpress.com/2010/02/10/ghostscript-pdf-to-image-conversion-error/</link>
		<comments>http://pvibeesh.wordpress.com/2010/02/10/ghostscript-pdf-to-image-conversion-error/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 09:43:04 +0000</pubDate>
		<dc:creator>pvibeesh</dc:creator>
				<category><![CDATA[LINUX]]></category>
		<category><![CDATA[ghostscript]]></category>

		<guid isPermaLink="false">http://pvibeesh.wordpress.com/?p=91</guid>
		<description><![CDATA[When we convert a pdf to an image using ghostscript like convert mam.pdf document.png you may get an error like this : ERROR: /undefined in &#8211;get&#8211; Operand stack: &#8211;dict:6/6(L)&#8211;   F1   14   &#8211;dict:9/14(L)&#8211;   &#8211;dict:9/14(L)&#8211;   275   &#8211;dict:9/14(L)&#8211;   &#8211;dict:11/12(L)&#8211;   glyf Execution stack: %interp_exit   .runexec2   &#8211;nostringval&#8211;   &#8211;nostringval&#8211;   &#8211;nostringval&#8211;   2   %stopped_push   &#8211;nostringval&#8211;   &#8211;nostringval&#8211;   &#8211;nostringval&#8211;   false   1   %stopped_push   1   3   %oparray_pop   [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=91&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When we convert a <strong>pdf to an image</strong> using <strong>ghostscript like</strong></p>
<p><strong>convert mam.pdf document.png</strong></p>
<p>you may get an error like this :<br />
ERROR: /undefined in &#8211;get&#8211;<br />
Operand stack:<br />
&#8211;dict:6/6(L)&#8211;   F1   14   &#8211;dict:9/14(L)&#8211;   &#8211;dict:9/14(L)&#8211;   275   &#8211;dict:9/14(L)&#8211;   &#8211;dict:11/12(L)&#8211;   glyf<br />
Execution stack:<br />
%interp_exit   .runexec2   &#8211;nostringval&#8211;   &#8211;nostringval&#8211;   &#8211;nostringval&#8211;   2   %stopped_push   &#8211;nostringval&#8211;   &#8211;nostringval&#8211;   &#8211;nostringval&#8211;   false   1   %stopped_push   1   3   %oparray_pop   1   3   %oparray_pop   1   3   %oparray_pop   &#8211;nostringval&#8211;   &#8211;nostringval&#8211;   2   1   6   &#8211;nostringval&#8211;   %for_pos_int_continue   &#8211;nostringval&#8211;   &#8211;nostringval&#8211;   &#8211;nostringval&#8211;   &#8211;nostringval&#8211;   %array_continue   &#8211;nostringval&#8211;   false   1   %stopped_push   &#8211;nostringval&#8211;   %loop_continue   &#8211;nostringval&#8211;   &#8211;nostringval&#8211;   &#8211;nostringval&#8211;   &#8211;nostringval&#8211;   &#8211;nostringval&#8211;   &#8211;nostringval&#8211;   &#8211;nostringval&#8211;<br />
Dictionary stack:<br />
&#8211;dict:1127/1686(ro)(G)&#8211;   &#8211;dict:0/20(G)&#8211;   &#8211;dict:107/200(L)&#8211;   &#8211;dict:107/200(L)&#8211;   &#8211;dict:104/127(ro)(G)&#8211;   &#8211;dict:241/347(ro)(G)&#8211;   &#8211;dict:20/24(L)&#8211;   &#8211;dict:4/6(L)&#8211;   &#8211;dict:20/20(L)&#8211;   &#8211;dict:3/5(L)&#8211;   &#8211;dict:10/14(L)&#8211;   &#8211;dict:33/50(ro)(G)&#8211;   &#8211;dict:21/40(L)&#8211;<br />
Current allocation mode is local<br />
Last OS error: 2<br />
ESP Ghostscript 815.02: Unrecoverable error, exit code 1<br />
convert: Postscript delegate failed `mam.pdf&#8217;.<br />
convert: missing an image filename `document.png&#8217;.<br />
[manu@rc-170 imagemagic]$ /usr/lib/openoffice.org/program/soffice -invisible -headless -norestore -accept=&#8221;socket,host=127.0.0.1,port=8100;urp;&#8221; -nofirststartwizard &amp; &gt; /dev/null 2&gt;&amp;1<br />
[1] 29233</p>
<p><strong>Solution : </strong></p>
<p><strong> Upgrade the ghostscript to a newer version greater than 8.60</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pvibeesh.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pvibeesh.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pvibeesh.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pvibeesh.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pvibeesh.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pvibeesh.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pvibeesh.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pvibeesh.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pvibeesh.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pvibeesh.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pvibeesh.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pvibeesh.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pvibeesh.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pvibeesh.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=91&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pvibeesh.wordpress.com/2010/02/10/ghostscript-pdf-to-image-conversion-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1656bc58282c433300628f92b2aeac0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pvibeesh</media:title>
		</media:content>
	</item>
		<item>
		<title>cakephp Loops and save()</title>
		<link>http://pvibeesh.wordpress.com/2009/12/29/cakephp-loops-and-save/</link>
		<comments>http://pvibeesh.wordpress.com/2009/12/29/cakephp-loops-and-save/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 14:30:36 +0000</pubDate>
		<dc:creator>pvibeesh</dc:creator>
				<category><![CDATA[LINUX]]></category>
		<category><![CDATA[CakePHP]]></category>

		<guid isPermaLink="false">http://pvibeesh.wordpress.com/2009/12/29/cakephp-loops-and-save/</guid>
		<description><![CDATA[Loops and save() You must reset the Model on every loop iteration. $this-&#62;{ Model Name } -&#62;create(); Place the above line at the beginning of the loop for eg: foreach() { $this-&#62;{ Model Name } -&#62;create(); /* actual code */ } Replace the { Model Name } with the corresponding model name<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=90&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Loops and save()</p>
<p>You must reset the Model on every loop iteration.<br />
        $this-&gt;{ Model Name } -&gt;create();</p>
<p>Place the above line at the beginning of the loop for eg:</p>
<p>foreach() {<br />
        $this-&gt;{ Model Name } -&gt;create();<br />
        /* actual code */<br />
}</p>
<p>Replace the { Model Name } with the corresponding model name</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pvibeesh.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pvibeesh.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pvibeesh.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pvibeesh.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pvibeesh.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pvibeesh.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pvibeesh.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pvibeesh.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pvibeesh.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pvibeesh.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pvibeesh.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pvibeesh.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pvibeesh.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pvibeesh.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=90&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pvibeesh.wordpress.com/2009/12/29/cakephp-loops-and-save/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1656bc58282c433300628f92b2aeac0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pvibeesh</media:title>
		</media:content>
	</item>
		<item>
		<title>XML Error: XML declaration not finished at line 1</title>
		<link>http://pvibeesh.wordpress.com/2009/12/29/xml-error-xml-declaration-not-finished-at-line-1/</link>
		<comments>http://pvibeesh.wordpress.com/2009/12/29/xml-error-xml-declaration-not-finished-at-line-1/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 09:31:16 +0000</pubDate>
		<dc:creator>pvibeesh</dc:creator>
				<category><![CDATA[LINUX]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://pvibeesh.wordpress.com/2009/12/29/xml-error-xml-declaration-not-finished-at-line-1/</guid>
		<description><![CDATA[XML Error: XML declaration not finished at line 1 This error can occur in either one of these two situations&#8230; 1. Your server does not support UTF-8 encoding; OR 2. You have incorrect magic_quotes settings on your server. To check your server settings Create a php file and place the below lines in it For [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=89&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p> XML Error: XML declaration not finished at line 1</p>
<p>This error can occur in either one of these two situations&#8230;</p>
<p>1. Your server does not support UTF-8 encoding;<br />
               OR<br />
2. You have incorrect magic_quotes settings on your server.</p>
<p>To check your server settings<br />
Create a php file and place the below lines in it</p>
<p>For working with the second problem magic_quote settings should be:</p>
<p>magic_quotes_gpc ON<br />
magic_quotes_runtime OFF (same as the PHP default setting)<br />
magic_quotes_sybase OFF (same as the PHP default setting)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pvibeesh.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pvibeesh.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pvibeesh.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pvibeesh.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pvibeesh.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pvibeesh.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pvibeesh.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pvibeesh.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pvibeesh.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pvibeesh.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pvibeesh.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pvibeesh.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pvibeesh.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pvibeesh.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=89&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pvibeesh.wordpress.com/2009/12/29/xml-error-xml-declaration-not-finished-at-line-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1656bc58282c433300628f92b2aeac0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pvibeesh</media:title>
		</media:content>
	</item>
		<item>
		<title>Codeigniter Lost session on redirect</title>
		<link>http://pvibeesh.wordpress.com/2009/04/22/codeigniter-lost-session-on-redirect/</link>
		<comments>http://pvibeesh.wordpress.com/2009/04/22/codeigniter-lost-session-on-redirect/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 07:11:42 +0000</pubDate>
		<dc:creator>pvibeesh</dc:creator>
				<category><![CDATA[LINUX]]></category>

		<guid isPermaLink="false">http://pvibeesh.wordpress.com/?p=84</guid>
		<description><![CDATA[Please have a try Check the encoding of your ci_sessions database table field change it to utf8_general_ci<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=84&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Please have a try</p>
<p>Check the encoding of your ci_sessions database table field</p>
<p>change it to <strong>utf8_general_ci</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pvibeesh.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pvibeesh.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pvibeesh.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pvibeesh.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pvibeesh.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pvibeesh.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pvibeesh.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pvibeesh.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pvibeesh.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pvibeesh.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pvibeesh.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pvibeesh.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pvibeesh.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pvibeesh.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=84&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pvibeesh.wordpress.com/2009/04/22/codeigniter-lost-session-on-redirect/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1656bc58282c433300628f92b2aeac0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pvibeesh</media:title>
		</media:content>
	</item>
		<item>
		<title>TinyMCE Editor How to set the content Using javascript</title>
		<link>http://pvibeesh.wordpress.com/2009/03/18/tinymce-editor-how-to-set-the-content-using-javascript/</link>
		<comments>http://pvibeesh.wordpress.com/2009/03/18/tinymce-editor-how-to-set-the-content-using-javascript/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 16:11:11 +0000</pubDate>
		<dc:creator>pvibeesh</dc:creator>
				<category><![CDATA[LINUX]]></category>

		<guid isPermaLink="false">http://pvibeesh.wordpress.com/2009/03/18/tinymce-editor-how-to-set-the-content-using-javascript/</guid>
		<description><![CDATA[tinyMCE.activeEditor.setContent(content);<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=80&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>tinyMCE.activeEditor.setContent(content);</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pvibeesh.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pvibeesh.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pvibeesh.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pvibeesh.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pvibeesh.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pvibeesh.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pvibeesh.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pvibeesh.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pvibeesh.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pvibeesh.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pvibeesh.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pvibeesh.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pvibeesh.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pvibeesh.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=80&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pvibeesh.wordpress.com/2009/03/18/tinymce-editor-how-to-set-the-content-using-javascript/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1656bc58282c433300628f92b2aeac0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pvibeesh</media:title>
		</media:content>
	</item>
		<item>
		<title>Codeigniter Image resize library problem on multiple image resize</title>
		<link>http://pvibeesh.wordpress.com/2009/03/02/codeigniter-image-resize-library-problem-on-multiple-image-resize/</link>
		<comments>http://pvibeesh.wordpress.com/2009/03/02/codeigniter-image-resize-library-problem-on-multiple-image-resize/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 09:28:39 +0000</pubDate>
		<dc:creator>pvibeesh</dc:creator>
				<category><![CDATA[LINUX]]></category>

		<guid isPermaLink="false">http://pvibeesh.wordpress.com/?p=78</guid>
		<description><![CDATA[$this-&#62;load-&#62;library(&#8220;image_lib/&#8221;,$config); for loop: $this-&#62;image_lib-&#62;initialize($config); end for loop When using this library repeatedly it will initialize the image properties at once only. It uses the existing instance for the remaining calls To solve this problem call the initialize function manually.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=78&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>$this-&gt;load-&gt;library(&#8220;image_lib/&#8221;,$config);</p>
<p>for loop:</p>
<p><strong> $this-&gt;image_lib-&gt;initialize($config);</strong></p>
<p>end for loop</p>
<p>When using this library repeatedly it will initialize the image properties at once only.</p>
<p>It uses the existing instance for the remaining calls</p>
<p>To solve this problem call the initialize function manually.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pvibeesh.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pvibeesh.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pvibeesh.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pvibeesh.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pvibeesh.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pvibeesh.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pvibeesh.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pvibeesh.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pvibeesh.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pvibeesh.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pvibeesh.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pvibeesh.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pvibeesh.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pvibeesh.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pvibeesh.wordpress.com&amp;blog=1793826&amp;post=78&amp;subd=pvibeesh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pvibeesh.wordpress.com/2009/03/02/codeigniter-image-resize-library-problem-on-multiple-image-resize/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c1656bc58282c433300628f92b2aeac0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pvibeesh</media:title>
		</media:content>
	</item>
	</channel>
</rss>
