<?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/"
	xmlns:georss="http://www.georss.org/georss"
xmlns:gml="http://www.opengis.net/gml"
xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
xmlns:icbm="http://postneo.com/icbm"
xmlns:geourl="http://geourl.org/rss/module/"
	>
<channel>
	<title>Comments on: WordPress &#8211; Google Maps GeoCoder</title>
	<atom:link href="http://karlkevilus.com/wordpress-google-maps-geocoder/feed/" rel="self" type="application/rss+xml" />
	<link>http://karlkevilus.com</link>
	<description>what I'm thinking.</description>
	<lastBuildDate>Fri, 04 Mar 2011 09:07:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Luke</title>
		<link>http://karlkevilus.com/wordpress-google-maps-geocoder/comment-page-1/#comment-2309</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Fri, 04 Mar 2011 09:07:47 +0000</pubDate>
		<guid isPermaLink="false">http://karlkevilus.com/?page_id=119#comment-2309</guid>
		<description>Hey Carl,

Great plugin.

One little problem right now:
The full map (using the theme php call, not the shortcode) is returning this:
} // display a warning if the browser was not compatible else { alert(&quot;Sorry, the Google Maps API is not compatible with this browser&quot;); } var ge; function getEarthInstanceCB(pluginInstance) { ge = pluginInstance; // you can now manipulate ge using the full Google Earth API. } //]]&gt;


Any ideas on what I might have done wrong? Thanks. The plugin is successfully geocoding posts on save.

Cheers,
Luke</description>
		<content:encoded><![CDATA[<p>Hey Carl,</p>
<p>Great plugin.</p>
<p>One little problem right now:<br />
The full map (using the theme php call, not the shortcode) is returning this:<br />
} // display a warning if the browser was not compatible else { alert(&#8220;Sorry, the Google Maps API is not compatible with this browser&#8221;); } var ge; function getEarthInstanceCB(pluginInstance) { ge = pluginInstance; // you can now manipulate ge using the full Google Earth API. } //]]&gt;</p>
<p>Any ideas on what I might have done wrong? Thanks. The plugin is successfully geocoding posts on save.</p>
<p>Cheers,<br />
Luke</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Resh</title>
		<link>http://karlkevilus.com/wordpress-google-maps-geocoder/comment-page-1/#comment-2163</link>
		<dc:creator>Resh</dc:creator>
		<pubDate>Fri, 22 Oct 2010 13:39:48 +0000</pubDate>
		<guid isPermaLink="false">http://karlkevilus.com/?page_id=119#comment-2163</guid>
		<description>Hi Jonas

Just installed the plugin myself. I had a similar problem and fixed it with:

//$csv = file_get_contents($request_url) or die(&quot;url not loading&quot;);

		$request = new WP_Http;
		$csv = $request-&gt;request( $request_url);
		//var_dump($csv);
		$csvSplit = split(&quot;,&quot;, $csv[&#039;body&#039;]);

Hope this helps. How do I get the plugin to show unique maps for each attraction location (individual posts) on my site? Will hopefully sort it before I get a response... :-)

Resh</description>
		<content:encoded><![CDATA[<p>Hi Jonas</p>
<p>Just installed the plugin myself. I had a similar problem and fixed it with:</p>
<p>//$csv = file_get_contents($request_url) or die(&#8220;url not loading&#8221;);</p>
<p>		$request = new WP_Http;<br />
		$csv = $request-&gt;request( $request_url);<br />
		//var_dump($csv);<br />
		$csvSplit = split(&#8220;,&#8221;, $csv['body']);</p>
<p>Hope this helps. How do I get the plugin to show unique maps for each attraction location (individual posts) on my site? Will hopefully sort it before I get a response&#8230; <img src='http://karlkevilus.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Resh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonas</title>
		<link>http://karlkevilus.com/wordpress-google-maps-geocoder/comment-page-1/#comment-861</link>
		<dc:creator>Jonas</dc:creator>
		<pubDate>Sat, 05 Dec 2009 23:25:27 +0000</pubDate>
		<guid isPermaLink="false">http://karlkevilus.com/?page_id=119#comment-861</guid>
		<description>On my comment on 29th - I think I solved it. See this link for more info:
http://www.learnphponline.com/errors/url-file-access-is-disabled-in-the-server-configuration

Since the php.ini way didn&#039;t go my way, I tried to edit the 158 line from:
$csv = file_get_contents($request_url) or die(&quot;url not loading&quot;);
...to what we have on line 157:
$csv = &quot;http://maps.google.com/maps/geo?output=csv&amp;key=&quot;.$wpgmgapikey.&quot;&amp;q=&quot; . urlencode($address) or die(&quot;url not loading&quot;);

No error when saving after that!

However, now when I view a page with [showmap] I get same problem as ChrisJ above.

} // display a warning if the browser was not compatible else { alert(&quot;Sorry, the Google Maps API is not compatible with this browser&quot;); } var ge; function getEarthInstanceCB(pluginInstance) { ge = pluginInstance; // you can now manipulate ge using the full Google Earth API. } //]]&gt;  

And of course, I&#039;ve tried it in several browsers.</description>
		<content:encoded><![CDATA[<p>On my comment on 29th &#8211; I think I solved it. See this link for more info:<br />
<a href="http://www.learnphponline.com/errors/url-file-access-is-disabled-in-the-server-configuration" rel="nofollow">http://www.learnphponline.com/errors/url-file-access-is-disabled-in-the-server-configuration</a></p>
<p>Since the php.ini way didn&#8217;t go my way, I tried to edit the 158 line from:<br />
$csv = file_get_contents($request_url) or die(&#8220;url not loading&#8221;);<br />
&#8230;to what we have on line 157:<br />
$csv = &#8220;http://maps.google.com/maps/geo?output=csv&amp;key=&#8221;.$wpgmgapikey.&#8221;&amp;q=&#8221; . urlencode($address) or die(&#8220;url not loading&#8221;);</p>
<p>No error when saving after that!</p>
<p>However, now when I view a page with [showmap] I get same problem as ChrisJ above.</p>
<p>} // display a warning if the browser was not compatible else { alert(&#8220;Sorry, the Google Maps API is not compatible with this browser&#8221;); } var ge; function getEarthInstanceCB(pluginInstance) { ge = pluginInstance; // you can now manipulate ge using the full Google Earth API. } //]]&gt;  </p>
<p>And of course, I&#8217;ve tried it in several browsers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darren</title>
		<link>http://karlkevilus.com/wordpress-google-maps-geocoder/comment-page-1/#comment-801</link>
		<dc:creator>Darren</dc:creator>
		<pubDate>Tue, 01 Dec 2009 10:44:35 +0000</pubDate>
		<guid isPermaLink="false">http://karlkevilus.com/?page_id=119#comment-801</guid>
		<description>@Harris, If you see this and your client is still after a site like Homes and Interiors please feel free to contact me via my site: http://www.darrenlangley.com.

@Karl sorry to digress from your great plug-in, hope you don&#039;t mind.

cheers,

Darren</description>
		<content:encoded><![CDATA[<p>@Harris, If you see this and your client is still after a site like Homes and Interiors please feel free to contact me via my site: <a href="http://www.darrenlangley.com" rel="nofollow">http://www.darrenlangley.com</a>.</p>
<p>@Karl sorry to digress from your great plug-in, hope you don&#8217;t mind.</p>
<p>cheers,</p>
<p>Darren</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonas</title>
		<link>http://karlkevilus.com/wordpress-google-maps-geocoder/comment-page-1/#comment-782</link>
		<dc:creator>Jonas</dc:creator>
		<pubDate>Sun, 29 Nov 2009 15:48:49 +0000</pubDate>
		<guid isPermaLink="false">http://karlkevilus.com/?page_id=119#comment-782</guid>
		<description>Hi, seems pretty straightforward to install but I seem to fail with the below errormessage. I just registered for an API key with the specific URL, but when I edit a page and choose SAVE it gives me the below errormessage. If I disable Google Maps Geocoding I don&#039;t get this error.

Warning: file_get_contents() [function.file-get-contents]: URL file-access is disabled in the server configuration in /home/mydir/public_html/dev1/wp-content/plugins/google-maps-geocoder/geocoder.php on line 158

Warning: file_get_contents(http://maps.google.com/maps/geo?output=csv&amp;key=ABQIAAAAjtAjDN7uzPLYc5F-t2CUghSHBhBgnXZyY0LfKL_Z03A1Rk1S4BTinMTVc5ah5abwka17t9DA270lzQ&amp;q=%2C%2C%2C) [function.file-get-contents]: failed to open stream: no suitable wrapper could be found in /home/mydir/public_html/dev1/wp-content/plugins/google-maps-geocoder/geocoder.php on line 158
url not loading</description>
		<content:encoded><![CDATA[<p>Hi, seems pretty straightforward to install but I seem to fail with the below errormessage. I just registered for an API key with the specific URL, but when I edit a page and choose SAVE it gives me the below errormessage. If I disable Google Maps Geocoding I don&#8217;t get this error.</p>
<p>Warning: file_get_contents() [function.file-get-contents]: URL file-access is disabled in the server configuration in /home/mydir/public_html/dev1/wp-content/plugins/google-maps-geocoder/geocoder.php on line 158</p>
<p>Warning: file_get_contents(http://maps.google.com/maps/geo?output=csv&amp;key=ABQIAAAAjtAjDN7uzPLYc5F-t2CUghSHBhBgnXZyY0LfKL_Z03A1Rk1S4BTinMTVc5ah5abwka17t9DA270lzQ&amp;q=%2C%2C%2C) [function.file-get-contents]: failed to open stream: no suitable wrapper could be found in /home/mydir/public_html/dev1/wp-content/plugins/google-maps-geocoder/geocoder.php on line 158<br />
url not loading</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://karlkevilus.com/wordpress-google-maps-geocoder/comment-page-1/#comment-781</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Sun, 29 Nov 2009 00:29:53 +0000</pubDate>
		<guid isPermaLink="false">http://karlkevilus.com/?page_id=119#comment-781</guid>
		<description>Hello Karl!

I finally went ahead and upgraded from the first release and noticed there might be a geocoding error that occurs, due to a possible problem in the new code.

Check out line 149 in geocoder.php and see if the variable $street is actually asking for the wrong meta data from WP ($address) -- as all my posts are ending up with incorrect lat/lng as of the 1.1 release.

I&#039;ll download the 1.2 and see if the same problem occurs.

Thanks,

Michael</description>
		<content:encoded><![CDATA[<p>Hello Karl!</p>
<p>I finally went ahead and upgraded from the first release and noticed there might be a geocoding error that occurs, due to a possible problem in the new code.</p>
<p>Check out line 149 in geocoder.php and see if the variable $street is actually asking for the wrong meta data from WP ($address) &#8212; as all my posts are ending up with incorrect lat/lng as of the 1.1 release.</p>
<p>I&#8217;ll download the 1.2 and see if the same problem occurs.</p>
<p>Thanks,</p>
<p>Michael</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Huynh</title>
		<link>http://karlkevilus.com/wordpress-google-maps-geocoder/comment-page-1/#comment-770</link>
		<dc:creator>Dan Huynh</dc:creator>
		<pubDate>Mon, 09 Nov 2009 16:32:58 +0000</pubDate>
		<guid isPermaLink="false">http://karlkevilus.com/?page_id=119#comment-770</guid>
		<description>Hi Karl,

What&#039;s the best way to map out distance between two points for example, the post address and my house with your plug-in? Thanks for all the work!

-Dan</description>
		<content:encoded><![CDATA[<p>Hi Karl,</p>
<p>What&#8217;s the best way to map out distance between two points for example, the post address and my house with your plug-in? Thanks for all the work!</p>
<p>-Dan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander</title>
		<link>http://karlkevilus.com/wordpress-google-maps-geocoder/comment-page-1/#comment-769</link>
		<dc:creator>Alexander</dc:creator>
		<pubDate>Mon, 09 Nov 2009 09:45:36 +0000</pubDate>
		<guid isPermaLink="false">http://karlkevilus.com/?page_id=119#comment-769</guid>
		<description>I&#039;m having the same error when trying it myself. Which is a shame, as my boss is eager to check out the new maps I&#039;ve said to fix :P</description>
		<content:encoded><![CDATA[<p>I&#8217;m having the same error when trying it myself. Which is a shame, as my boss is eager to check out the new maps I&#8217;ve said to fix <img src='http://karlkevilus.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ChrisJ</title>
		<link>http://karlkevilus.com/wordpress-google-maps-geocoder/comment-page-1/#comment-724</link>
		<dc:creator>ChrisJ</dc:creator>
		<pubDate>Tue, 03 Nov 2009 16:30:24 +0000</pubDate>
		<guid isPermaLink="false">http://karlkevilus.com/?page_id=119#comment-724</guid>
		<description>Hi Karl,
I&#039;m getting error output from [showmap] as follows:

[code]} // display a warning if the browser was not compatible else { alert(&quot;Sorry, the Google Maps API is not compatible with this browser&quot;); } var ge; function getEarthInstanceCB(pluginInstance) { ge = pluginInstance; // you can now manipulate ge using the full Google Earth API. } //]]&gt; [/code]

Any ideas why?</description>
		<content:encoded><![CDATA[<p>Hi Karl,<br />
I&#8217;m getting error output from [showmap] as follows:</p>
<p>[code]} // display a warning if the browser was not compatible else { alert("Sorry, the Google Maps API is not compatible with this browser"); } var ge; function getEarthInstanceCB(pluginInstance) { ge = pluginInstance; // you can now manipulate ge using the full Google Earth API. } //]]&gt; [/code]</p>
<p>Any ideas why?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://karlkevilus.com/wordpress-google-maps-geocoder/comment-page-1/#comment-689</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 05 Oct 2009 02:55:49 +0000</pubDate>
		<guid isPermaLink="false">http://karlkevilus.com/?page_id=119#comment-689</guid>
		<description>Harris - I have it customized quite a bit for my application (http://BanditTrackerChicago.com), but I will change it to add the title in the info window if a custom field (yet to be named) is left blank.

Thanks.
Karl</description>
		<content:encoded><![CDATA[<p>Harris &#8211; I have it customized quite a bit for my application (<a href="http://BanditTrackerChicago.com" rel="nofollow">http://BanditTrackerChicago.com</a>), but I will change it to add the title in the info window if a custom field (yet to be named) is left blank.</p>
<p>Thanks.<br />
Karl</p>
]]></content:encoded>
	</item>
</channel>
</rss>

