<?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>MyBlogPlanner</title>
	<atom:link href="http://www.myblogplanner.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.myblogplanner.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 15 Feb 2012 13:00:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>How to make username or email login in joomla 1.5</title>
		<link>http://www.myblogplanner.com/blog/email-username-login/</link>
		<comments>http://www.myblogplanner.com/blog/email-username-login/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 13:00:42 +0000</pubDate>
		<dc:creator>Subikar</dc:creator>
				<category><![CDATA[component]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[module]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[auto login]]></category>
		<category><![CDATA[content management system]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/?p=59</guid>
		<description><![CDATA[Last time I was having problem with email / username with Password login. There are several plugin but those all are paid but if you want a quick and easy method to do it. here is the code. For Email and Username login 1. components/com_user/models/reset.php Line Number 124 $db-&#62;setQuery('SELECT id, activation FROM #__users WHERE block…]]></description>
			<content:encoded><![CDATA[<p>Last time I was having problem with email / username with Password login. There are several plugin but those all are paid but if you want a quick and easy method to do it. here is the code.<br />
<code><br />
For Email and Username login<br />
1. components/com_user/models/reset.php<br />
Line Number 124<br />
$db-&gt;setQuery('SELECT id, activation FROM #__users WHERE block = 0 AND username = '.$db-&gt;Quote($username));<br />
Replace with<br />
$db-&gt;setQuery('SELECT id, activation FROM #__users WHERE block = 0 AND ( username = '.$db-&gt;Quote($username).' OR email='.$db-&gt;Quote($username).' ) ');</code></p>
<p>2. plugins/authentication/joomla.php<br />
LIne Number 73<br />
$query = &#8216;SELECT `id`, `password`, `gid`, `username`&#8217;<br />
. &#8216; FROM `#__users`&#8217;<br />
. &#8216; WHERE username=&#8217; . $db-&gt;Quote( $credentials['username'] )<br />
;</p>
<p>Replace with</p>
<p>$query = &#8216;SELECT `id`, `password`, `gid`, `username`&#8217;<br />
. &#8216; FROM `#__users`&#8217;<br />
. &#8216; WHERE ( username=&#8217; . $db-&gt;Quote( $credentials['username'] )<br />
. &#8216; OR email=&#8217; . $db-&gt;Quote( $credentials['username'] ).&#8217; ) &#8216;;<br />
;</p>
<p>Add A line after line number 79<br />
$credentials['username'] = $result-&gt;username;</p>
<p>Add A line after line number 103<br />
return $credentials;</p>
<p>3. libraries/joomla/user/authentication.php</p>
<p>Line Number 121<br />
Find $plugin-&gt;onAuthenticate($credentials, $options, $response);<br />
Replace<br />
$credentials = $plugin-&gt;onAuthenticate($credentials, $options, $response);</p>
<p>Save All the files and exit Now you can login with username or email and Password</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/email-username-login/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to get the blogname of tumblr as well as blogdetails like text, photo of every created blog of tumblr</title>
		<link>http://www.myblogplanner.com/blog/how-to-get-the-blogname-of-tumblr-as-well-as-blogdetails-like-text-photo-of-every-created-blog-of-tumblr/</link>
		<comments>http://www.myblogplanner.com/blog/how-to-get-the-blogname-of-tumblr-as-well-as-blogdetails-like-text-photo-of-every-created-blog-of-tumblr/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 14:04:01 +0000</pubDate>
		<dc:creator>Ankan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/?p=55</guid>
		<description><![CDATA[For that authentication is needed. To authenticate with tumblr we need consumer key and consumer secret key.We will have to register in developer portion of tumblr. And after then I will get consumer key and consumer secret key. And after then We get oauth_token and oauth_secret. After then by oauth_token, oauth_secret, consumer key and consumer…]]></description>
			<content:encoded><![CDATA[<p>For that authentication is needed. To authenticate with tumblr we need consumer key and consumer secret key.We will have to register in developer portion of tumblr. And after then I will get consumer key and consumer secret key.</p>
<p>And after then We get oauth_token and oauth_secret. After then by oauth_token, oauth_secret, consumer key and consumer secret, we get blogname and details of default blog and created blog.</p>
<p>To get blogname of tumblr</p>
<p>$connection = new TumblrOAuth(CONSUMER_KEY, CONSUMER_SECRET, $oauthtoken, $oauthtsecretoken);</p>
<p>$user = $connection-&gt;authenticate();<br />
$tumblruser = simplexml_load_string($user);<br />
$tumbuser = ClUtilityFunctions::SimpleXMlobjectToArray($tumblruser);<br />
//print_r($tumbuser);  exit;<br />
$name = (string)$user-&gt;tumblelog['name'];</p>
<p>$tumbusr=$tumbuser['tumblelog'];</p>
<p>&nbsp;</p>
<p>To get the details of every blog like text, picture and so on in tumblr</p>
<p>$request_url = &#8216;http://&#8217;.$tumblrblogname.&#8217;.tumblr.com/api/read?start=0&amp;num=2&#8242;;<br />
$xml = simplexml_load_file($request_url);<br />
$posts = $xml-&gt;xpath(&#8220;/tumblr/posts/post&#8221;);<br />
$tumbpost = ClUtilityFunctions::SimpleXMlobjectToArray($posts);</p>
<p>[Note: SimpleXMlobjectToArray is simpleXML object to Array function.]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/how-to-get-the-blogname-of-tumblr-as-well-as-blogdetails-like-text-photo-of-every-created-blog-of-tumblr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tumblr Blogpost from my site like</title>
		<link>http://www.myblogplanner.com/blog/tumblr-blogpost-from-my-site-like-mibubble-itcslive-com/</link>
		<comments>http://www.myblogplanner.com/blog/tumblr-blogpost-from-my-site-like-mibubble-itcslive-com/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 13:15:31 +0000</pubDate>
		<dc:creator>Ankan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/?p=53</guid>
		<description><![CDATA[We can post text as well as photo from my own site like mysite to Tumblr. For that I have got code by searching google. For blog post in Tumblr We need tumblr user name and password.After then We can post text as well photo using curl. The full code is given below: &#60;?php //…]]></description>
			<content:encoded><![CDATA[<p>We can post text as well as photo from my own site like mysite to Tumblr. For that I have got code by searching google. For blog post in Tumblr We need tumblr user name and password.After then We can post text as well photo using curl.</p>
<p>The full code is given below:</p>
<pre>&lt;?php

<strong>// Authorization info</strong>
$tumblr_email    = 'info@davidville.com';
$tumblr_password = 'secret';

<strong>// Data for new record</strong>
$post_type  = 'regular';
$post_title = 'The post title';
$post_body  = 'This is the body of the post.';

<strong>// Prepare POST request</strong>
$request_data = http_build_query(
    array(
        'email'     =&gt; $tumblr_email,
        'password'  =&gt; $tumblr_password,
        'type'      =&gt; $post_type,
        'title'     =&gt; $post_title,
        'body'      =&gt; $post_body,
        'generator' =&gt; 'API example'
    )
);

<strong>// Send the POST request (with cURL)</strong>
$c = curl_init('http://www.tumblr.com/api/write');
curl_setopt($c, CURLOPT_POST, true);
curl_setopt($c, CURLOPT_POSTFIELDS, $request_data);
curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($c);
$status = curl_getinfo($c, CURLINFO_HTTP_CODE);
curl_close($c);

<strong>// Check for success</strong>
if ($status == 201) {
    echo "Success! The new post ID is $result.\n";
} else if ($status == 403) {
    echo 'Bad email or password';
} else {
    echo "Error: $result\n";
}

?&gt;

Or we should see http://www.tumblr.com/docs/en/api#reblogging_posts how to post text as well as photo</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/tumblr-blogpost-from-my-site-like-mibubble-itcslive-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to grant privilege to database for particular user using unix</title>
		<link>http://www.myblogplanner.com/blog/how-to-grant-privilege-to-database-for-particular-user-using-unix/</link>
		<comments>http://www.myblogplanner.com/blog/how-to-grant-privilege-to-database-for-particular-user-using-unix/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 10:34:25 +0000</pubDate>
		<dc:creator>Subikar</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[subikar]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[user privilege]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/?p=46</guid>
		<description><![CDATA[Login to unix Croot@cyber-desktop:~# mysql mysql> GRANT ALL ON databasename.* TO username@&#8217;mysqlhost&#8217; IDENTIFIED BY &#8216;databasepassword&#8217;; Thats all]]></description>
			<content:encoded><![CDATA[<p>Login to unix<br />
Croot@cyber-desktop:~# mysql<br />
mysql>  GRANT ALL ON databasename.* TO username@&#8217;mysqlhost&#8217; IDENTIFIED BY &#8216;databasepassword&#8217;;<br />
Thats all </p>
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/how-to-grant-privilege-to-database-for-particular-user-using-unix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fatal error: Call to undefined method stdClass::onDisplay() in libraries/joomla/html/editor.php</title>
		<link>http://www.myblogplanner.com/blog/fatal-error-call-to-undefined-method-stdclassondisplay-in-librariesjoomlahtmleditor-php/</link>
		<comments>http://www.myblogplanner.com/blog/fatal-error-call-to-undefined-method-stdclassondisplay-in-librariesjoomlahtmleditor-php/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 13:40:30 +0000</pubDate>
		<dc:creator>Subikar</dc:creator>
				<category><![CDATA[cms]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[module]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[fatal error]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/?p=40</guid>
		<description><![CDATA[This kill my whole day so dev who ever have this problem you can do this quick fix from here. open this file in joomla libraries/joomla/html/editor.php find this line // Try to authenticate &#8212; only add to array if authentication is successful $resultTest = $plugin->onDisplay($editor); if ($resultTest) $result[] = $resultTest; And replace with this below…]]></description>
			<content:encoded><![CDATA[<p>This kill my whole day so dev who ever have this problem you can do this quick fix from here.<br />
open this file in joomla<br />
libraries/joomla/html/editor.php<br />
find this line<br />
// Try to authenticate &#8212; only add to array if authentication is successful<br />
$resultTest = $plugin->onDisplay($editor);<br />
if ($resultTest) $result[] =  $resultTest;</p>
<p>And replace with this below line and you fix this bug</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/fatal-error-call-to-undefined-method-stdclassondisplay-in-librariesjoomlahtmleditor-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Vote and Win Rs 1000/-</title>
		<link>http://www.myblogplanner.com/blog/vote-and-win-rs-1000/</link>
		<comments>http://www.myblogplanner.com/blog/vote-and-win-rs-1000/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 11:59:34 +0000</pubDate>
		<dc:creator>Subikar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/?p=41</guid>
		<description><![CDATA[We have started a new contest for HumTumLove Member. &#8220;Vote and Win Contest&#8221; Your one vote you could win Rs 1000/-]]></description>
			<content:encoded><![CDATA[<p>We have started a new contest for HumTumLove Member. &#8220;Vote and Win Contest&#8221;</p>
<p><a href="http://www.humtumlove.com/competition/2-who-are-they.html">Your one vote you could win Rs 1000/-</a></p>
<p><a href="http://www.humtumlove.com/competition/2-who-are-they.html"><img class="aligncenter" src="http://www.myblogplanner.com/blog/wp-content/uploads/2011/09/humtumlove-vote-page.jpg" alt="" align="center" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/vote-and-win-rs-1000/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to manage Big Website with n number of subdomain</title>
		<link>http://www.myblogplanner.com/blog/how-to-manage-big-website-with-n-number-of-subdomain/</link>
		<comments>http://www.myblogplanner.com/blog/how-to-manage-big-website-with-n-number-of-subdomain/#comments</comments>
		<pubDate>Tue, 15 Mar 2011 21:03:30 +0000</pubDate>
		<dc:creator>Subikar</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/?p=35</guid>
		<description><![CDATA[Hi all , After long time I came up with some new ideas. How to manage big website without using single database. I am sure you all know if a single database is using your big website with a lot of application someday it will crash and obviously it is very hard to manage everything.…]]></description>
			<content:encoded><![CDATA[<p>Hi all ,</p>
<p>After long time I came up with some new ideas. How to manage big website without using single database.</p>
<p>I am sure you all know if a single database is using your big website with a lot of application someday it will crash and obviously it is very hard to manage everything. So I decided not to manage single database for big website (i.e with lots of application).</p>
<p>My idea to have different application in different server or in same server and call those application through xml. As well cache the xml. In my next post I will come up with more elaborate idea of managing website with xml</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/how-to-manage-big-website-with-n-number-of-subdomain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Name Defination Subikar</title>
		<link>http://www.myblogplanner.com/blog/my-name-defination-subikar/</link>
		<comments>http://www.myblogplanner.com/blog/my-name-defination-subikar/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 21:34:49 +0000</pubDate>
		<dc:creator>Subikar</dc:creator>
				<category><![CDATA[name]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[myname]]></category>
		<category><![CDATA[subikar]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/my-name-defination-subikar/</guid>
		<description><![CDATA[When I meet new people They ask my name and as usual I am ready to give answer. They will come up with another question. &#8220;Subikar Your name is unique and what is the meaning of your name?&#8221;:) I smile and say subikar: Those who do good for all. I got this meaning from one…]]></description>
			<content:encoded><![CDATA[<p>When I meet new people They ask my name and as usual I am ready to give answer. They will come up with another question. &#8220;Subikar Your name is unique and what is the meaning of your name?&#8221;:)</p>
<p>I smile and say subikar: Those who do good for all.</p>
<p>I got this meaning from one of my college friend elder sister. One day I went to my firend home and they ask me my name and then the meaning  of my name. Till I was not aware of my name meaning and I always ask my father. What name you have given that don&#8217;t have any meaning. That day was my big day for me. Someone came out of room that is my friend sister.</p>
<p>ahh I know the meaning of this name &#8220;Those who do good for everyone&#8221;. I suddenly saw her and said thank you didi for finding my name meaning. And from then I started to say this meaning. Still I am not sure whether my name meaning is  correct or not.</p>
<p>But I am happy I got something&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/my-name-defination-subikar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Store which will sell your product a day.</title>
		<link>http://www.myblogplanner.com/blog/deals-of-the-day/</link>
		<comments>http://www.myblogplanner.com/blog/deals-of-the-day/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 08:48:22 +0000</pubDate>
		<dc:creator>Subikar</dc:creator>
				<category><![CDATA[branding]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/deals-of-the-day/</guid>
		<description><![CDATA[Do you want to sell your one product a day. Also your customer can bid on that product and can buy the product. Simply gain your product accessability much easier to customer and get best price for your product. I have built a new script like that If you are interested on it you can…]]></description>
			<content:encoded><![CDATA[<p>Do you want to sell your one product a day. Also your customer can bid on that product and can buy the product.</p>
<p>Simply gain your product accessability much easier to customer and get best price for your product.</p>
<p>I have built a new script like that If you are interested on it you can simply check out by <a href="http://projects.itcslive.com/dealsoftheday/" title="iTCSLIve - Deals Of The Day">clicking here</a></p>
<p>Feature Available for this script.</p>
<p>1. Add product according to the date available.</p>
<p>2. Add 5 different bid price.</p>
<p>3. Add shipping for each product/ Or you can use any shipping module you like.</p>
<p>3. Credit Card, Pay pal , Authorize.net, Bank Payment Facility.</p>
<p>4. If Highest bidder do not buy the product the product will just transfer to the second highest bidder. That wil help you to get sure shot customer to sell your product.</p>
<p>5. Deals will automatically close with auto program and choose bidder.</p>
<p>6. The product which are not sold will be shown in prvious work gallery.</p>
<p>7. If customer directly buy just clicking on highest bid the product wil be locked for sell.</p>
<p>There are more features are there. <a href="http://www.itcslive.com/contact.html">For more inquiries Contact </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/deals-of-the-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exclude Directory While zip file in unix platform</title>
		<link>http://www.myblogplanner.com/blog/exclude-directory-while-zip-file-in-unix-platform/</link>
		<comments>http://www.myblogplanner.com/blog/exclude-directory-while-zip-file-in-unix-platform/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 09:24:09 +0000</pubDate>
		<dc:creator>Subikar</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[uniz]]></category>
		<category><![CDATA[zip command]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/exclude-directory-while-zip-file-in-unix-platform/</guid>
		<description><![CDATA[If you want to zip file and exclude some directory while file zip in linux you can simply use the below command. zip -r filename.zip folder -x folder1 folder2 Where as folder is the going to zip in the name of filename.zip and folder1 and folder2 will be exclude from while zipping.]]></description>
			<content:encoded><![CDATA[<p>If you want to zip file and exclude some directory while file zip in linux you can simply use the below command.</p>
<p>zip -r filename.zip folder -x folder1 folder2</p>
<p>Where as folder is the going to zip in the name of filename.zip and folder1 and folder2 will be exclude from while zipping.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/exclude-directory-while-zip-file-in-unix-platform/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

