<?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 on: Geo Blogroll</title>
	<atom:link href="http://anilmakhijani.com/wordpress-dev/geo-blogroll/feed/" rel="self" type="application/rss+xml" />
	<link>http://anilmakhijani.com</link>
	<description></description>
	<lastBuildDate>Mon, 26 Jul 2010 00:07:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Tom</title>
		<link>http://anilmakhijani.com/wordpress-dev/geo-blogroll/comment-page-1/#comment-4245</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Wed, 30 Jun 2010 13:09:27 +0000</pubDate>
		<guid isPermaLink="false">http://anilmakhijani.com/?page_id=131#comment-4245</guid>
		<description>Hi, 
after pressing the activation button  and entering http://yourblog.com/wp-admin/options-general.php?page=geo-blogroll/geo_blogroll.php in the url I get a message that I do not have the correct rights. What&#039;s wrong. thanks in advance.

Best regards

Tom</description>
		<content:encoded><![CDATA[<p>Hi,<br />
after pressing the activation button  and entering <a href="http://yourblog.com/wp-admin/options-general.php?page=geo-blogroll/geo_blogroll.php" rel="nofollow">http://yourblog.com/wp-admin/options-general.php?page=geo-blogroll/geo_blogroll.php</a> in the url I get a message that I do not have the correct rights. What&#8217;s wrong. thanks in advance.</p>
<p>Best regards</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anil</title>
		<link>http://anilmakhijani.com/wordpress-dev/geo-blogroll/comment-page-1/#comment-1047</link>
		<dc:creator>Anil</dc:creator>
		<pubDate>Thu, 09 Jul 2009 17:49:21 +0000</pubDate>
		<guid isPermaLink="false">http://anilmakhijani.com/?page_id=131#comment-1047</guid>
		<description>@Ari:  it depends on what version of Wordpress you have.  A tutorial on how to use the links manager is here: &lt;a href=&quot;http://codex.wordpress.org/Links_Manager&quot; rel=&quot;nofollow&quot;&gt;Links Manager&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>@Ari:  it depends on what version of WordPress you have.  A tutorial on how to use the links manager is here: <a href="http://codex.wordpress.org/Links_Manager" rel="nofollow">Links Manager</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ari</title>
		<link>http://anilmakhijani.com/wordpress-dev/geo-blogroll/comment-page-1/#comment-1045</link>
		<dc:creator>Ari</dc:creator>
		<pubDate>Thu, 09 Jul 2009 13:05:15 +0000</pubDate>
		<guid isPermaLink="false">http://anilmakhijani.com/?page_id=131#comment-1045</guid>
		<description>I cannot see the Link section. Where is it supposed to be?
How do I edit the link? I am afraid obvious question to some are a challenge to others..!
Thank you</description>
		<content:encoded><![CDATA[<p>I cannot see the Link section. Where is it supposed to be?<br />
How do I edit the link? I am afraid obvious question to some are a challenge to others..!<br />
Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anil</title>
		<link>http://anilmakhijani.com/wordpress-dev/geo-blogroll/comment-page-1/#comment-207</link>
		<dc:creator>Anil</dc:creator>
		<pubDate>Thu, 12 Feb 2009 16:22:28 +0000</pubDate>
		<guid isPermaLink="false">http://anilmakhijani.com/?page_id=131#comment-207</guid>
		<description>@agus:  I&#039;ll try to answer all of your questions here:

1.  Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION:

I commented the CURLOPT_FOLLOWLOCATION line out of my code and it seemingly has no effect on functionality.  Hopefully this fixes your warning.

2.  Your link&#039;s geographical information not showing up:

I accidentally hard coded the Wordpress links table to be wp_links rather than using $wpdb-&gt;links.  The 0.13 release of this plugin should fix this.

3.  The Google copyright is annoying:

You can add the following CSS to your code to hide the copyright:

 .gmnoprint {
  display: none;
}

4.  Prevent the blog from crashing when you deactivate the plugin:

  Rather than just adding geo_blogroll_show_map(); to your template, add this:
&lt;?php if (function_exists(geo_blogroll_show_map)) {geo_blogroll_show_map(); }; ?&gt;

I updated the documentation to reflect this.

5.  Add a shortcode.

   I should do this.  I&#039;ll add this to my to-do list.</description>
		<content:encoded><![CDATA[<p>@agus:  I&#8217;ll try to answer all of your questions here:</p>
<p>1.  Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION:</p>
<p>I commented the CURLOPT_FOLLOWLOCATION line out of my code and it seemingly has no effect on functionality.  Hopefully this fixes your warning.</p>
<p>2.  Your link&#8217;s geographical information not showing up:</p>
<p>I accidentally hard coded the WordPress links table to be wp_links rather than using $wpdb->links.  The 0.13 release of this plugin should fix this.</p>
<p>3.  The Google copyright is annoying:</p>
<p>You can add the following CSS to your code to hide the copyright:</p>
<p> .gmnoprint {<br />
  display: none;<br />
}</p>
<p>4.  Prevent the blog from crashing when you deactivate the plugin:</p>
<p>  Rather than just adding geo_blogroll_show_map(); to your template, add this:<br />
< ?php if (function_exists(geo_blogroll_show_map)) {geo_blogroll_show_map(); }; ?></p>
<p>I updated the documentation to reflect this.</p>
<p>5.  Add a shortcode.</p>
<p>   I should do this.  I&#8217;ll add this to my to-do list.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: agus</title>
		<link>http://anilmakhijani.com/wordpress-dev/geo-blogroll/comment-page-1/#comment-197</link>
		<dc:creator>agus</dc:creator>
		<pubDate>Wed, 11 Feb 2009 07:52:14 +0000</pubDate>
		<guid isPermaLink="false">http://anilmakhijani.com/?page_id=131#comment-197</guid>
		<description>Thank you for your quick response.

Having renamed the folder, although it did come an error message, the plugin works (the error is &quot;Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in ..../geo_blogroll/geo_blogroll.php on line 214&quot;).

Yes, it works but not perfectly. It shows the map but I cannot see any placemark icon on it. When I checked my links, all information I saved (city, state, country) are gone. Is it related to the error I mentioned above?

Secondly, when I put the map on my sidebar (about 200px width), the copyright related thing is very annoying. It breaks the &#039;box&#039; as the copyright sentence length is wider than my sidebar width.

Little suggestions for future dev&#039;t:
1.  I use  for preventing my blog crash when I deactivated the plugin;
2. A shortcode for displaying map on page or post would be great;

Thank you</description>
		<content:encoded><![CDATA[<p>Thank you for your quick response.</p>
<p>Having renamed the folder, although it did come an error message, the plugin works (the error is &#8220;Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in &#8230;./geo_blogroll/geo_blogroll.php on line 214&#8243;).</p>
<p>Yes, it works but not perfectly. It shows the map but I cannot see any placemark icon on it. When I checked my links, all information I saved (city, state, country) are gone. Is it related to the error I mentioned above?</p>
<p>Secondly, when I put the map on my sidebar (about 200px width), the copyright related thing is very annoying. It breaks the &#8216;box&#8217; as the copyright sentence length is wider than my sidebar width.</p>
<p>Little suggestions for future dev&#8217;t:<br />
1.  I use  for preventing my blog crash when I deactivated the plugin;<br />
2. A shortcode for displaying map on page or post would be great;</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anil</title>
		<link>http://anilmakhijani.com/wordpress-dev/geo-blogroll/comment-page-1/#comment-195</link>
		<dc:creator>Anil</dc:creator>
		<pubDate>Wed, 11 Feb 2009 06:00:21 +0000</pubDate>
		<guid isPermaLink="false">http://anilmakhijani.com/?page_id=131#comment-195</guid>
		<description>@agus:  I am glad that you like the plugin.  I think the problem is that my name of the folder and the file are different, which is causing you issues.  If you rename the plugin folder from geo-blogroll to geo_blogroll, it should work.  Let me know if this works and if you have any other issues.</description>
		<content:encoded><![CDATA[<p>@agus:  I am glad that you like the plugin.  I think the problem is that my name of the folder and the file are different, which is causing you issues.  If you rename the plugin folder from geo-blogroll to geo_blogroll, it should work.  Let me know if this works and if you have any other issues.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: agus</title>
		<link>http://anilmakhijani.com/wordpress-dev/geo-blogroll/comment-page-1/#comment-194</link>
		<dc:creator>agus</dc:creator>
		<pubDate>Wed, 11 Feb 2009 05:50:25 +0000</pubDate>
		<guid isPermaLink="false">http://anilmakhijani.com/?page_id=131#comment-194</guid>
		<description>Hi, when I saved my setting page, an error message came out: Cannot load geo_blogroll/geo_blogroll.php.

I think I already did all your configuration steps. Please help. I do like the idea of this plugin. Thank ou</description>
		<content:encoded><![CDATA[<p>Hi, when I saved my setting page, an error message came out: Cannot load geo_blogroll/geo_blogroll.php.</p>
<p>I think I already did all your configuration steps. Please help. I do like the idea of this plugin. Thank ou</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bloggeotagging: be spatially enabled blogger &#124; sharkofagus</title>
		<link>http://anilmakhijani.com/wordpress-dev/geo-blogroll/comment-page-1/#comment-193</link>
		<dc:creator>Bloggeotagging: be spatially enabled blogger &#124; sharkofagus</dc:creator>
		<pubDate>Wed, 11 Feb 2009 05:35:48 +0000</pubDate>
		<guid isPermaLink="false">http://anilmakhijani.com/?page_id=131#comment-193</guid>
		<description>[...] dan menampilkannya dalam peta: GeoPress, Geo Mashup; menampilkan lokasi Blogroll ke dalam peta: Geo Blogroll, WP Geo; dan [...]</description>
		<content:encoded><![CDATA[<div style="color: red; padding: 1em">
<p>[...] dan menampilkannya dalam peta: GeoPress, Geo Mashup; menampilkan lokasi Blogroll ke dalam peta: Geo Blogroll, WP Geo; dan [...]</p>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: anilmakhijani.com &#187; Geo Blogroll Plugin Released</title>
		<link>http://anilmakhijani.com/wordpress-dev/geo-blogroll/comment-page-1/#comment-162</link>
		<dc:creator>anilmakhijani.com &#187; Geo Blogroll Plugin Released</dc:creator>
		<pubDate>Wed, 07 Jan 2009 22:18:26 +0000</pubDate>
		<guid isPermaLink="false">http://anilmakhijani.com/?page_id=131#comment-162</guid>
		<description>[...] I had promised to clean up and release some of the plugins that went into creating Streetsblog.net. Here is the first one: Geo Blogroll. [...]</description>
		<content:encoded><![CDATA[<div style="color: red; padding: 1em">
<p>[...] I had promised to clean up and release some of the plugins that went into creating Streetsblog.net. Here is the first one: Geo Blogroll. [...]</p>
</div>
]]></content:encoded>
	</item>
</channel>
</rss>
