<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Version 2.1.0 Released!</title>
	<link>http://phpflickr.com/2007/02/22/version-210-released/</link>
	<description></description>
	<pubDate>Sat, 17 May 2008 11:15:08 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>By: Beth</title>
		<link>http://phpflickr.com/2007/02/22/version-210-released/#comment-15677</link>
		<dc:creator>Beth</dc:creator>
		<pubDate>Fri, 11 May 2007 15:00:41 +0000</pubDate>
		<guid>http://phpflickr.com/2007/02/22/version-210-released/#comment-15677</guid>
		<description>Ahhhh, I knew I was missing something - thanks!  Worked perfectly!</description>
		<content:encoded><![CDATA[<p>Ahhhh, I knew I was missing something - thanks!  Worked perfectly!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://phpflickr.com/2007/02/22/version-210-released/#comment-15643</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Thu, 10 May 2007 23:45:19 +0000</pubDate>
		<guid>http://phpflickr.com/2007/02/22/version-210-released/#comment-15643</guid>
		<description>Beth,

Use php's array_merge() function on the arrays of photos.</description>
		<content:encoded><![CDATA[<p>Beth,</p>
<p>Use php&#039;s array_merge() function on the arrays of photos.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Beth</title>
		<link>http://phpflickr.com/2007/02/22/version-210-released/#comment-15622</link>
		<dc:creator>Beth</dc:creator>
		<pubDate>Thu, 10 May 2007 19:33:47 +0000</pubDate>
		<guid>http://phpflickr.com/2007/02/22/version-210-released/#comment-15622</guid>
		<description>Actually people_getPublicPhotos() supports pagination too, however I just can't get everything into a single array.  Basically I found the total number of photos through people_getInfo(), divided it by 500 to get the number of pages. For each page, I grabbed the photos and stuck them into their own array.  My problem lies in the fact I have no idea how to combine/concatenate them.  If I do the usual dot selector and try to output it, I just get the last 500.  It's like its overwriting the previous arrays.

Does that make sense?</description>
		<content:encoded><![CDATA[<p>Actually people_getPublicPhotos() supports pagination too, however I just can&#039;t get everything into a single array.  Basically I found the total number of photos through people_getInfo(), divided it by 500 to get the number of pages. For each page, I grabbed the photos and stuck them into their own array.  My problem lies in the fact I have no idea how to combine/concatenate them.  If I do the usual dot selector and try to output it, I just get the last 500.  It&#039;s like its overwriting the previous arrays.</p>
<p>Does that make sense?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://phpflickr.com/2007/02/22/version-210-released/#comment-15549</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Thu, 10 May 2007 01:46:07 +0000</pubDate>
		<guid>http://phpflickr.com/2007/02/22/version-210-released/#comment-15549</guid>
		<description>@Beth, If you use photos_search(), you can use the pagination arguments to get more than the initial 500 photos.

@angela, phpFlickr will absolutely work on php5.  This site is running php5 and it works just fine.</description>
		<content:encoded><![CDATA[<p>@Beth, If you use photos_search(), you can use the pagination arguments to get more than the initial 500 photos.</p>
<p>@angela, phpFlickr will absolutely work on php5.  This site is running php5 and it works just fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: angela</title>
		<link>http://phpflickr.com/2007/02/22/version-210-released/#comment-15528</link>
		<dc:creator>angela</dc:creator>
		<pubDate>Wed, 09 May 2007 18:53:30 +0000</pubDate>
		<guid>http://phpflickr.com/2007/02/22/version-210-released/#comment-15528</guid>
		<description>&lt;strong&gt;unclear if this will work with php5? &lt;/strong&gt; I'm hoping so!</description>
		<content:encoded><![CDATA[<p><strong>unclear if this will work with php5? </strong> I&#039;m hoping so!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Beth</title>
		<link>http://phpflickr.com/2007/02/22/version-210-released/#comment-15522</link>
		<dc:creator>Beth</dc:creator>
		<pubDate>Wed, 09 May 2007 13:25:53 +0000</pubDate>
		<guid>http://phpflickr.com/2007/02/22/version-210-released/#comment-15522</guid>
		<description>Is there a way to pull all a users photos into an array?  people_getPublicPhotos() only grabs the latest 500 from the stream.</description>
		<content:encoded><![CDATA[<p>Is there a way to pull all a users photos into an array?  people_getPublicPhotos() only grabs the latest 500 from the stream.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://phpflickr.com/2007/02/22/version-210-released/#comment-15219</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Wed, 02 May 2007 03:39:32 +0000</pubDate>
		<guid>http://phpflickr.com/2007/02/22/version-210-released/#comment-15219</guid>
		<description>Josh,
&lt;br /&gt;
That's a good point about the require_once calls.  The problem, I realized, is that if you're including the same files from multiple locations, the "require_once" checks don't recognize them as the same file.  Plugin developers should also use the class_exists function when they're including phpFlickr.php or it could try to load that class twice.</description>
		<content:encoded><![CDATA[<p>Josh,<br />
<br />
That&#039;s a good point about the require_once calls.  The problem, I realized, is that if you&#039;re including the same files from multiple locations, the &#034;require_once&#034; checks don&#039;t recognize them as the same file.  Plugin developers should also use the class_exists function when they&#039;re including phpFlickr.php or it could try to load that class twice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://phpflickr.com/2007/02/22/version-210-released/#comment-15210</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Tue, 01 May 2007 22:19:15 +0000</pubDate>
		<guid>http://phpflickr.com/2007/02/22/version-210-released/#comment-15210</guid>
		<description>I love your library and decided to use it with a plugin I have been working on for wordpress.  I have come across an issue dealing with multiple instances of phpflickr (and the accompanying libraries) being loaded due to multiple wordpress plugins using phpflickr.  I have found a solution which involves a some small tweaks to your code.  I'm not sure if it is the most elegant php solution but basically any place where you do a &lt;em&gt;require_once&lt;/em&gt; call I have added a check to see if the given class that is to be loaded already exists.  

Here is an example:
original code:
&lt;code&gt;require_once 'PEAR.php';&lt;/code&gt;

new code:
&lt;code&gt;if(!class_exists("PEAR"))	require_once 'PEAR.php';&lt;/code&gt;

I thought perhaps you could add this to the next version of your library.  Thanks again for all your hard work.</description>
		<content:encoded><![CDATA[<p>I love your library and decided to use it with a plugin I have been working on for wordpress.  I have come across an issue dealing with multiple instances of phpflickr (and the accompanying libraries) being loaded due to multiple wordpress plugins using phpflickr.  I have found a solution which involves a some small tweaks to your code.  I&#039;m not sure if it is the most elegant php solution but basically any place where you do a <em>require_once</em> call I have added a check to see if the given class that is to be loaded already exists.  </p>
<p>Here is an example:<br />
original code:<br />
<code>require_once 'PEAR.php';</code></p>
<p>new code:<br />
<code>if(!class_exists("PEAR"))	require_once 'PEAR.php';</code></p>
<p>I thought perhaps you could add this to the next version of your library.  Thanks again for all your hard work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Social Poster &#187; phpFlickr</title>
		<link>http://phpflickr.com/2007/02/22/version-210-released/#comment-14209</link>
		<dc:creator>Social Poster &#187; phpFlickr</dc:creator>
		<pubDate>Fri, 13 Apr 2007 00:51:47 +0000</pubDate>
		<guid>http://phpflickr.com/2007/02/22/version-210-released/#comment-14209</guid>
		<description>[...] phpFlickr » Version 2.1.0 Released New version of phpFlickr has a few bug fixes, as well as an up-to-date method list. Youll also find that buildPhotoURL supports the new syntax for photo URLs, including the new originalsecret property and the new farm property [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] phpFlickr » Version 2.1.0 Released New version of phpFlickr has a few bug fixes, as well as an up-to-date method list. Youll also find that buildPhotoURL supports the new syntax for photo URLs, including the new originalsecret property and the new farm property [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse Warden - Flash, Flex, and Component Developer</title>
		<link>http://phpflickr.com/2007/02/22/version-210-released/#comment-12895</link>
		<dc:creator>Jesse Warden - Flash, Flex, and Component Developer</dc:creator>
		<pubDate>Fri, 16 Mar 2007 06:09:02 +0000</pubDate>
		<guid>http://phpflickr.com/2007/02/22/version-210-released/#comment-12895</guid>
		<description>&lt;strong&gt;FlickrMobile: A Flash Lite 2 Applicatio...&lt;/strong&gt;

*** Update 4.25.2006: Provided a Flash Player 6 version for PSP. *** Update: Yes, I used FAME (Flashout + ASDT + MTASC + Eclipse) to build this. Preface As has been reported by Scott F. and Scott J., the Flash......</description>
		<content:encoded><![CDATA[<p><strong>FlickrMobile: A Flash Lite 2 Applicatio&#8230;</strong></p>
<p>*** Update 4.25.2006: Provided a Flash Player 6 version for PSP. *** Update: Yes, I used FAME (Flashout + ASDT + MTASC + Eclipse) to build this. Preface As has been reported by Scott F. and Scott J., the Flash&#8230;&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
