<?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>Fri, 30 Dec 2011 15:29:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<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>0</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>
		<item>
		<title>Web Master Beaware of Domain name scammer</title>
		<link>http://www.myblogplanner.com/blog/domain-name-scammer/</link>
		<comments>http://www.myblogplanner.com/blog/domain-name-scammer/#comments</comments>
		<pubDate>Thu, 20 May 2010 22:51:09 +0000</pubDate>
		<dc:creator>Subikar</dc:creator>
				<category><![CDATA[branding]]></category>
		<category><![CDATA[domain scammer]]></category>
		<category><![CDATA[itcslive]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/domain-name-scammer/</guid>
		<description><![CDATA[Just today I got one email to my mailbox. That some one is trying to buy our keyword domain name They mentioned the name &#8220;Jiahe International Investment Co&#8221; is trying to buy domain with our brand name. I scared after seeing that and then and there I email them that we are not aware of…]]></description>
			<content:encoded><![CDATA[<p>Just today I got one email to my mailbox. That some one is trying to buy our keyword domain name They mentioned the name &#8220;<span><span style="font-size: 12pt; font-family: Arial" lang="EN-US">Jiahe  International Investment Co</span></span>&#8221; is trying to buy domain with our brand name. I scared after seeing that and then and there I email them that we are not aware of that and we don&#8217;t know   &#8220;<span><span style="font-size: 12pt; font-family: Arial" lang="EN-US">Jiahe   International Investment Co</span></span>&#8221; please don&#8217;t sell domain to them.</p>
<p>At night I just casually searching about them to find out who are they and I found a post they are simple spammer they will send you this type of email and then they will ask you to pay an absurd amount to buy those domain.</p>
<p>Below is the email if you get any email just ignore it.</p>
<p id=":8x" class="ii gt">&nbsp;</p>
<p style="margin-top: 10px; margin-left: 10px; margin-right: 10px">&nbsp;</p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt 10pt; text-align: left" align="left"><a title="128b527dc752bc46_OLE_LINK2" name="128b527dc752bc46_OLE_LINK2"></a><span style="font-size: 12pt; font-family: Arial" lang="EN-US">Dear  Manager</span><span><span style="font-size: 12pt">，</span></span><span><span style="font-size: 12pt; font-family: Arial" lang="EN-US"></span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt 10pt; text-align: left" align="left"><span><span style="font-size: 12pt; font-family: Arial" lang="EN-US"> </span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt 10pt; text-align: left" align="left"><span><span style="font-size: 12pt; font-family: Arial" lang="EN-US">We are a  professional intellectual property rights consultant organization,  mainly  engaged in domain name registration and internet intellectual property  rights  protection. </span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt 10pt; text-align: left" align="left"><span><span style="font-size: 12pt; font-family: Arial" lang="EN-US"> </span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt 10pt; text-align: left" align="left"><span><span style="font-size: 12pt; font-family: Arial" lang="EN-US">We formally  received an application from Jiahe International Investment Co., Ltd on <span style="color: black">May.20</span>, 2010, whom applied for registering  the  internet keyword “itcslive  ” and some related domain names with our  organization.</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt 10pt; text-align: left" align="left"><span><span style="font-size: 12pt; font-family: Arial" lang="EN-US"> </span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt 10pt; text-align: left" align="left"><span><span style="font-size: 12pt; font-family: Arial" lang="EN-US">During our  preliminary investigation, we found the keyword of those domain names is   identical as your trademark. Therefore, we need to confirm with you  whether you  consigned Jiahe International Investment Co., Ltd to register with us or  not?  Or, is Jiahe International Investment Co., Ltd your partner or  distributor? If  you don’t have any relationship with this company, they may probably  have other  purposes to obtain those domain names and internet keyword.  </span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt 10pt; text-align: left" align="left"><span><span style="font-size: 12pt; font-family: Arial" lang="EN-US"> </span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt 10pt; text-align: left" align="left"><span><span style="font-size: 12pt; font-family: Arial" lang="EN-US">We have  already suspended this company&#8217;s application temporarily due to the  seriousness  of this issue. In order to avoid the vicious domain name grab, please  let your  principal make a confirmation with me via telephone or email as soon as  possible. Thank you for your support to our work!</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left" align="left"><span><span style="font-size: 12pt; font-family: Arial" lang="EN-US"> </span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left" align="left"><span><span style="font-size: 12pt; font-family: Arial" lang="EN-US"> </span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 6pt; text-align: left" align="left"><span><span style="font-size: 12pt; font-family: Arial" lang="EN-US"><span> </span>Best Regards</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left" align="left"><span><span style="font-size: 12pt; font-family: Arial" lang="EN-US"> </span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left" align="left"><span><span style="font-size: 12pt; font-family: Arial" lang="EN-US"> </span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left" align="left"><span><a title="128b527dc752bc46_OLE_LINK1" name="128b527dc752bc46_OLE_LINK1"></a><span style="font-size: 12pt; font-family: Arial" lang="EN-US"><span>  </span>July   Chen</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left" align="left"><span><span><span style="font-size: 12pt; font-family: Arial" lang="EN-US"> </span></span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 14pt; text-align: left" align="left"><span><span><span style="font-size: 14pt; font-family: Arial" lang="EN-US"><font face="宋体" size="3"><a href="http://www.join-wtc.cn/" target="_blank"><br />
</a></font></span></span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 12pt; text-align: left" align="left"><span><span><span style="font-size: 12pt" lang="EN-US">4A,  Units 20/F, Far East Consortium Bldg.  </span></span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 12pt; text-align: left" align="left"><span><span><span style="font-size: 12pt" lang="EN-US">121  Des Voeux Road</span><span style="font-size: 12pt" lang="EN-US">,  Central, HongKong</span></span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 12pt; text-align: left" align="left"><span><span><span style="font-size: 12pt; font-family: Arial" lang="EN-US">Tel:+852-6517  0670</span></span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 12pt; text-align: left" align="left"><span><span><span style="font-size: 12pt; font-family: Arial" lang="EN-US">Fax:+852-3069  6940</span></span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 12pt; text-align: left" align="left"><span><span><span style="font-size: 12pt; font-family: Arial" lang="EN-US">Email:july@</span></span><span lang="EN-US"><font face="Times New Roman"> </font></span></span><span><span style="font-size: 12pt; font-family: Arial" lang="EN-US"></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/domain-name-scammer/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

