<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Corpocrat Blog</title>
	<atom:link href="http://corpocrat.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://corpocrat.com</link>
	<description>Daily Blog from Internet Entrepreneur/Webmaster</description>
	<lastBuildDate>Mon, 06 Feb 2012 07:52:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Fix -&gt; Xbox 360 display mode not supported HDMI problem by Tannagram</title>
		<link>http://corpocrat.com/2009/11/06/fix-xbox-360-display-mode-not-supported-hdmi-problem/#comment-23728</link>
		<dc:creator>Tannagram</dc:creator>
		<pubDate>Mon, 06 Feb 2012 07:52:54 +0000</pubDate>
		<guid isPermaLink="false">http://corpocrat.com/2009/11/06/fix-xbox-360-display-mode-not-supported-hdmi-problem/#comment-23728</guid>
		<description>THIS DOES NOTHING. the first two times it opened my disk tray? Then every other time it did literally nothing.</description>
		<content:encoded><![CDATA[<p>THIS DOES NOTHING. the first two times it opened my disk tray? Then every other time it did literally nothing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tutorial: How to write a WordPress Plugin? by delaram</title>
		<link>http://corpocrat.com/2009/12/27/tutorial-how-to-write-a-wordpress-plugin/#comment-23721</link>
		<dc:creator>delaram</dc:creator>
		<pubDate>Sun, 05 Feb 2012 08:35:57 +0000</pubDate>
		<guid isPermaLink="false">http://corpocrat.com/?p=904#comment-23721</guid>
		<description>don&#039;t delete the add_action statement
simply replace echo “Hello World”;

with echo get_option(&#039;hello_world_data&#039;);</description>
		<content:encoded><![CDATA[<p>don&#8217;t delete the add_action statement<br />
simply replace echo “Hello World”;</p>
<p>with echo get_option(&#8216;hello_world_data&#8217;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting Adsense PIN by post is a nightmare!!!! by zahid</title>
		<link>http://corpocrat.com/2011/08/30/getting-adsense-pin-by-post-is-a-nightmare/#comment-23719</link>
		<dc:creator>zahid</dc:creator>
		<pubDate>Sat, 04 Feb 2012 16:57:56 +0000</pubDate>
		<guid isPermaLink="false">http://corpocrat.com/?p=3080#comment-23719</guid>
		<description>i know this is problem google adsense verification pin

solution::

i faced that problem too , well after requesting 3 time for pin if you not get pin through mail then in your adsense account one option will appear (click on it and it will display contact form) .. its contact way to google adsense team directly so in that contact form you have to attach one electricity or phone bill scaned copy and one your national id scaned copy attach (compress in zip or rar and attach it)  then within 24 hour your account will be verified .... .. i verified my account in that style :)</description>
		<content:encoded><![CDATA[<p>i know this is problem google adsense verification pin</p>
<p>solution::</p>
<p>i faced that problem too , well after requesting 3 time for pin if you not get pin through mail then in your adsense account one option will appear (click on it and it will display contact form) .. its contact way to google adsense team directly so in that contact form you have to attach one electricity or phone bill scaned copy and one your national id scaned copy attach (compress in zip or rar and attach it)  then within 24 hour your account will be verified &#8230;. .. i verified my account in that style <img src='http://corpocrat.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quick &amp; Easy Form Validation Tutorial with JQuery by ???? ??? ??? ????</title>
		<link>http://corpocrat.com/2009/07/15/quick-easy-form-validation-tutorial-with-jquery/#comment-23718</link>
		<dc:creator>???? ??? ??? ????</dc:creator>
		<pubDate>Sat, 04 Feb 2012 11:54:48 +0000</pubDate>
		<guid isPermaLink="false">http://corpocrat.com/2009/07/15/quick-easy-form-validation-tutorial-with-jquery/#comment-23718</guid>
		<description>Your website is great and thank for your Articles.</description>
		<content:encoded><![CDATA[<p>Your website is great and thank for your Articles.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tutorial: How to write a WordPress Plugin? by LKM</title>
		<link>http://corpocrat.com/2009/12/27/tutorial-how-to-write-a-wordpress-plugin/#comment-23709</link>
		<dc:creator>LKM</dc:creator>
		<pubDate>Fri, 03 Feb 2012 10:57:19 +0000</pubDate>
		<guid isPermaLink="false">http://corpocrat.com/?p=904#comment-23709</guid>
		<description>Take 3!, I don&#039;t think this form likes my php tags and stripped out my code –

Try in hello-world.php –
add_action(‘init’,’hello_world’);
function hello_world()
{
return get_option(‘hello_world_data’);
}

note ‘return’ instead of ‘echo’

And then in your template file such as page.php or single.php try this –

			if(function_exists(&#039;hello_world&#039;)) {
echo hello_world();
}

Note the added ‘echo’</description>
		<content:encoded><![CDATA[<p>Take 3!, I don&#8217;t think this form likes my php tags and stripped out my code –</p>
<p>Try in hello-world.php –<br />
add_action(‘init’,’hello_world’);<br />
function hello_world()<br />
{<br />
return get_option(‘hello_world_data’);<br />
}</p>
<p>note ‘return’ instead of ‘echo’</p>
<p>And then in your template file such as page.php or single.php try this –</p>
<p>			if(function_exists(&#8216;hello_world&#8217;)) {<br />
echo hello_world();<br />
}</p>
<p>Note the added ‘echo’</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tutorial: How to write a WordPress Plugin? by LKM</title>
		<link>http://corpocrat.com/2009/12/27/tutorial-how-to-write-a-wordpress-plugin/#comment-23708</link>
		<dc:creator>LKM</dc:creator>
		<pubDate>Fri, 03 Feb 2012 10:55:26 +0000</pubDate>
		<guid isPermaLink="false">http://corpocrat.com/?p=904#comment-23708</guid>
		<description>Take 2, sorry, didn&#039;t paste in all my code - 

Try in hello-world.php –
add_action(‘init’,&#039;hello_world’);
function hello_world()
{
return get_option(‘hello_world_data’);
}

note ‘return’ instead of ‘echo’

And then in your template file such as page.php or single.php try this –




Note the added ‘echo’</description>
		<content:encoded><![CDATA[<p>Take 2, sorry, didn&#8217;t paste in all my code &#8211; </p>
<p>Try in hello-world.php –<br />
add_action(‘init’,&#8217;hello_world’);<br />
function hello_world()<br />
{<br />
return get_option(‘hello_world_data’);<br />
}</p>
<p>note ‘return’ instead of ‘echo’</p>
<p>And then in your template file such as page.php or single.php try this –</p>
<p>Note the added ‘echo’</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tutorial: How to write a WordPress Plugin? by LKM</title>
		<link>http://corpocrat.com/2009/12/27/tutorial-how-to-write-a-wordpress-plugin/#comment-23707</link>
		<dc:creator>LKM</dc:creator>
		<pubDate>Fri, 03 Feb 2012 10:54:16 +0000</pubDate>
		<guid isPermaLink="false">http://corpocrat.com/?p=904#comment-23707</guid>
		<description>Try in hello-world.php - 
add_action(&#039;init&#039;,&#039;hello_world&#039;);
function hello_world()
{
return get_option(&#039;hello_world_data&#039;);
}

note &#039;return&#039; instead of &#039;echo&#039;

And then in your template file such as page.php or single.php try this - 



Note the added &#039;echo&#039;</description>
		<content:encoded><![CDATA[<p>Try in hello-world.php &#8211;<br />
add_action(&#8216;init&#8217;,'hello_world&#8217;);<br />
function hello_world()<br />
{<br />
return get_option(&#8216;hello_world_data&#8217;);<br />
}</p>
<p>note &#8216;return&#8217; instead of &#8216;echo&#8217;</p>
<p>And then in your template file such as page.php or single.php try this &#8211; </p>
<p>Note the added &#8216;echo&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tutorial: How to write a WordPress Plugin? by LKM</title>
		<link>http://corpocrat.com/2009/12/27/tutorial-how-to-write-a-wordpress-plugin/#comment-23706</link>
		<dc:creator>LKM</dc:creator>
		<pubDate>Fri, 03 Feb 2012 10:49:59 +0000</pubDate>
		<guid isPermaLink="false">http://corpocrat.com/?p=904#comment-23706</guid>
		<description>It doesn&#039;t create a new table.
Check in wp_options, you&#039;ll see a new row with the &#039;option_name&#039; field populated with a value of &#039;hello_world_data&#039; and the &#039;option_value&#039; field of the table is populated with what ever you enter into wp-admin &gt; settings &gt; Hello World</description>
		<content:encoded><![CDATA[<p>It doesn&#8217;t create a new table.<br />
Check in wp_options, you&#8217;ll see a new row with the &#8216;option_name&#8217; field populated with a value of &#8216;hello_world_data&#8217; and the &#8216;option_value&#8217; field of the table is populated with what ever you enter into wp-admin &gt; settings &gt; Hello World</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fix: Can&#8217;t connect to local MySQL server through socket &#8216;/var/lib/mysql/mysql.sock&#8217; by Dan</title>
		<link>http://corpocrat.com/2008/05/16/fix-cant-connect-to-local-mysql-server-through-socket-varlibmysqlmysqlsock/#comment-23701</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Fri, 03 Feb 2012 00:07:27 +0000</pubDate>
		<guid isPermaLink="false">http://corpocrat.com/2008/05/16/fix-cant-connect-to-local-mysql-server-through-socket-varlibmysqlmysqlsock/#comment-23701</guid>
		<description>I got mine working.  

You have to also install mysql-server:
yum install mysql-server

Then restart the service:
service mysqld start

and connect.</description>
		<content:encoded><![CDATA[<p>I got mine working.  </p>
<p>You have to also install mysql-server:<br />
yum install mysql-server</p>
<p>Then restart the service:<br />
service mysqld start</p>
<p>and connect.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Toll Free US Phone and Fax Nos by George</title>
		<link>http://corpocrat.com/2007/06/14/toll-free-us-phone-and-fax-nos/#comment-23700</link>
		<dc:creator>George</dc:creator>
		<pubDate>Thu, 02 Feb 2012 22:17:54 +0000</pubDate>
		<guid isPermaLink="false">http://corpocrat.com/2007/06/14/toll-free-us-phone-and-fax-nos/#comment-23700</guid>
		<description>It really helps when you can find the answers for your questions and problems. When you are in need of answers, it is great to a have a direct number to call. That is why companies right now have their &lt;a href=&quot;http://www.callture.com/products/tollfreenumbers/&quot; rel=&quot;nofollow&quot;&gt;toll free number&lt;/a&gt; so that their customers or intended audience can reach them easily. So if you have a company and you don&#039;t have a toll free number yet, you may want to get one now. It does really help. There a lot online but I am using Callture&#039;s so you may want to check them out as well. They really offer great features in a low price.</description>
		<content:encoded><![CDATA[<p>It really helps when you can find the answers for your questions and problems. When you are in need of answers, it is great to a have a direct number to call. That is why companies right now have their <a href="http://www.callture.com/products/tollfreenumbers/" rel="nofollow">toll free number</a> so that their customers or intended audience can reach them easily. So if you have a company and you don&#8217;t have a toll free number yet, you may want to get one now. It does really help. There a lot online but I am using Callture&#8217;s so you may want to check them out as well. They really offer great features in a low price.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

