<?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 PJVolders</title>
	<atom:link href="http://www.pjvolders.be/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pjvolders.be</link>
	<description>Webdesign &#38; photography</description>
	<lastBuildDate>Sun, 29 Aug 2010 11:59:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on FlickrFlow plugin by pjvolders</title>
		<link>http://www.pjvolders.be/2010/08/flickrflow-plugin/#comment-96</link>
		<dc:creator>pjvolders</dc:creator>
		<pubDate>Sun, 29 Aug 2010 11:59:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.pjvolders.be/?p=213#comment-96</guid>
		<description>Hi,

I think this is server configuration problem, the &#039;allow_url_fopen&#039; setting is set to false, you can check this with:
echo ini_get(&#039;allow_url_fopen&#039;);
This wil return 0 or 1 (probably 0 on your server). 
(you can also find the setting on de php_info page)

Turn this on by adding:
allow_url_fopen = On
to your PHP.ini file. 
(contact you host if you don&#039;t know what this means)

I&#039;m trying to find a way to circumvent the use of &#039;file_get_contents&#039; the function that requires this setting en therefore causes this error.

Keep me posted if it works!

Cheers,
PJ</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I think this is server configuration problem, the &#8216;allow_url_fopen&#8217; setting is set to false, you can check this with:<br />
echo ini_get(&#8216;allow_url_fopen&#8217;);<br />
This wil return 0 or 1 (probably 0 on your server).<br />
(you can also find the setting on de php_info page)</p>
<p>Turn this on by adding:<br />
allow_url_fopen = On<br />
to your PHP.ini file.<br />
(contact you host if you don&#8217;t know what this means)</p>
<p>I&#8217;m trying to find a way to circumvent the use of &#8216;file_get_contents&#8217; the function that requires this setting en therefore causes this error.</p>
<p>Keep me posted if it works!</p>
<p>Cheers,<br />
PJ</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrFlow plugin by Kevin Forte</title>
		<link>http://www.pjvolders.be/2010/08/flickrflow-plugin/#comment-95</link>
		<dc:creator>Kevin Forte</dc:creator>
		<pubDate>Sun, 29 Aug 2010 01:46:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.pjvolders.be/?p=213#comment-95</guid>
		<description>Got these errors

Warning: file_get_contents() [function.file-get-contents]: URL file-access is disabled in the server configuration in /public_html/wp-content/plugins/flickrflow/Quickr.php on line 30

Warning: file_get_contents(http://api.flickr.com/services/rest/?method=flickr.people.getPublicPhotos&amp;user_id=XXXXXXXXXX&amp;format=php_serial&amp;extras=tags%2C+url_sq%2C+url_s%2C+url_m%2C+date_taken&amp;per_page=10&amp;page=1&amp;api_key=XXXXXXXXXXXX) [function.file-get-contents]: failed to open stream: no suitable wrapper could be found in /public_html/wp-content/plugins/flickrflow/Quickr.php on line 30</description>
		<content:encoded><![CDATA[<p>Got these errors</p>
<p>Warning: file_get_contents() [function.file-get-contents]: URL file-access is disabled in the server configuration in /public_html/wp-content/plugins/flickrflow/Quickr.php on line 30</p>
<p>Warning: file_get_contents(http://api.flickr.com/services/rest/?method=flickr.people.getPublicPhotos&amp;user_id=XXXXXXXXXX&amp;format=php_serial&amp;extras=tags%2C+url_sq%2C+url_s%2C+url_m%2C+date_taken&amp;per_page=10&amp;page=1&amp;api_key=XXXXXXXXXXXX) [function.file-get-contents]: failed to open stream: no suitable wrapper could be found in /public_html/wp-content/plugins/flickrflow/Quickr.php on line 30</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrFlow plugin by Jörg Hennicke</title>
		<link>http://www.pjvolders.be/2010/08/flickrflow-plugin/#comment-76</link>
		<dc:creator>Jörg Hennicke</dc:creator>
		<pubDate>Mon, 23 Aug 2010 22:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.pjvolders.be/?p=213#comment-76</guid>
		<description>I´m gonna try this, thanks for your help!</description>
		<content:encoded><![CDATA[<p>I´m gonna try this, thanks for your help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrFlow plugin by pjvolders</title>
		<link>http://www.pjvolders.be/2010/08/flickrflow-plugin/#comment-75</link>
		<dc:creator>pjvolders</dc:creator>
		<pubDate>Mon, 23 Aug 2010 20:45:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.pjvolders.be/?p=213#comment-75</guid>
		<description>Hi,
It&#039;s not that simple I&#039;m afraid… 
Flickr doesn&#039;t always store large images (it depends on the format of the original image, if it&#039;s too small it won&#039;t create a large image and the original will be the largest) so the flickr API has no function to request the large image url. 
You can generate the url yourself from the medium url:
What you can do is this:
in flickrflow.php replace on line 91:
$medium_url	= $photo[&#039;url_m&#039;];
by
$medium_url	= str_replace(&#039;.jpg&#039;, &#039;_b.jpg&#039;, $photo[&#039;url_m&#039;]);

This will generate the url for the large image but if there is no large image it will display an ugly flickr message. The best way is to check for a large version and display the original or medium size if there is no large version. I will try to implement this in a next version of the plugin!

Cheers,
PJ</description>
		<content:encoded><![CDATA[<p>Hi,<br />
It&#8217;s not that simple I&#8217;m afraid…<br />
Flickr doesn&#8217;t always store large images (it depends on the format of the original image, if it&#8217;s too small it won&#8217;t create a large image and the original will be the largest) so the flickr API has no function to request the large image url.<br />
You can generate the url yourself from the medium url:<br />
What you can do is this:<br />
in flickrflow.php replace on line 91:<br />
$medium_url	= $photo['url_m'];<br />
by<br />
$medium_url	= str_replace(&#8216;.jpg&#8217;, &#8216;_b.jpg&#8217;, $photo['url_m']);</p>
<p>This will generate the url for the large image but if there is no large image it will display an ugly flickr message. The best way is to check for a large version and display the original or medium size if there is no large version. I will try to implement this in a next version of the plugin!</p>
<p>Cheers,<br />
PJ</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrFlow plugin by Jörg Hennicke</title>
		<link>http://www.pjvolders.be/2010/08/flickrflow-plugin/#comment-74</link>
		<dc:creator>Jörg Hennicke</dc:creator>
		<pubDate>Mon, 23 Aug 2010 20:24:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.pjvolders.be/?p=213#comment-74</guid>
		<description>Thanks!! 
As I´looking for BIGGER Pictures, it´s &#039;url_l&#039;, right?</description>
		<content:encoded><![CDATA[<p>Thanks!!<br />
As I´looking for BIGGER Pictures, it´s &#8216;url_l&#8217;, right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrFlow plugin by PJVolders</title>
		<link>http://www.pjvolders.be/2010/08/flickrflow-plugin/#comment-73</link>
		<dc:creator>PJVolders</dc:creator>
		<pubDate>Mon, 23 Aug 2010 17:50:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.pjvolders.be/?p=213#comment-73</guid>
		<description>Hi, 
Good idea, I will add this as a feature in the next version of the plugin! 
Until then you can change it manually if you open the main flickrflow.php file and replace &#039;url_m&#039; by &#039;url_s&#039; for the small size or &#039;url_sq&#039; for the square thumbnail. &#039;url_m&#039; occurs only once in the file, so find &amp; replace is your friend!

Cheers,
PJ</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Good idea, I will add this as a feature in the next version of the plugin!<br />
Until then you can change it manually if you open the main flickrflow.php file and replace &#8216;url_m&#8217; by &#8216;url_s&#8217; for the small size or &#8216;url_sq&#8217; for the square thumbnail. &#8216;url_m&#8217; occurs only once in the file, so find &amp; replace is your friend!</p>
<p>Cheers,<br />
PJ</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrFlow plugin by Jörg Hennicke</title>
		<link>http://www.pjvolders.be/2010/08/flickrflow-plugin/#comment-72</link>
		<dc:creator>Jörg Hennicke</dc:creator>
		<pubDate>Mon, 23 Aug 2010 09:16:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.pjvolders.be/?p=213#comment-72</guid>
		<description>Hi, great plugin, very simple to use...
My Question: Can I change the output Size of the Images?
As far as I understand, the plugin fetches the &quot;medium&quot;-size Pictures from flickr... can this be changed somewhere in the files?
Thanks, Jörg</description>
		<content:encoded><![CDATA[<p>Hi, great plugin, very simple to use&#8230;<br />
My Question: Can I change the output Size of the Images?<br />
As far as I understand, the plugin fetches the &#8220;medium&#8221;-size Pictures from flickr&#8230; can this be changed somewhere in the files?<br />
Thanks, Jörg</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Photography by PJVolders &#187; FlickrFlow plugin</title>
		<link>http://www.pjvolders.be/photography/#comment-59</link>
		<dc:creator>PJVolders &#187; FlickrFlow plugin</dc:creator>
		<pubDate>Fri, 06 Aug 2010 14:01:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.pjvolders.be/wp/#comment-59</guid>
		<description>[...] Photography [...]</description>
		<content:encoded><![CDATA[<p>[...] Photography [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zomer 2009: Vlinders! by PJ Volders</title>
		<link>http://www.pjvolders.be/2009/11/zomer-2009-vlinders/#comment-51</link>
		<dc:creator>PJ Volders</dc:creator>
		<pubDate>Fri, 12 Mar 2010 22:14:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.pjvolders.be/wp/?p=67#comment-51</guid>
		<description>Bedankt! :-)</description>
		<content:encoded><![CDATA[<p>Bedankt! <img src='http://www.pjvolders.be/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zomer 2009: Vlinders! by pompalimasu</title>
		<link>http://www.pjvolders.be/2009/11/zomer-2009-vlinders/#comment-50</link>
		<dc:creator>pompalimasu</dc:creator>
		<pubDate>Fri, 12 Mar 2010 22:10:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.pjvolders.be/wp/?p=67#comment-50</guid>
		<description>prachtige foto&#039;s zeg!</description>
		<content:encoded><![CDATA[<p>prachtige foto&#39;s zeg!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
