Here's a quick bugfix for those of you who don't plan to upgrade to version 2.0.0 right away (because it'll break your apps). If you upload a file, you'll get an error on any Flickr methods you try to call after this. This is because the HTTP_Request object changes the post encoding when […]
There is a bug in photos_licenses.setLicense() (thanks, Christian!). Line 1034 in phpFlickr.php should read:
$this->request("flickr.photos.licenses.setLicense", array("photo_id"=>$photo_id, "license_id"=>$license_id), TRUE);
The problem was with capitalization of $photo_id. If you've been having problems setting licenses, this would be why. I've updated CVS and the fix will be in the next release.
I forgot to add 7 characters to the function definition. Line 1085 in phpFlickr.php should be changed from:
function photosets_getPhotos($photoset_id, $extras)
to:
function photosets_getPhotos($photoset_id, $extras = NULL)
Sorry for the inconvenience.
It has come to my attention that if your photo's "server" number is 35 and you try to use the depreciated image URL format (i.e. "http://photos35.flickr.com/…." it will fail to resolve that server. You should use the new url format, which is:
http://static.flickr.com/{server-id}/{id}_{secret}_[mstb].jpg
If you're using phpFlickr::buildPhotoURL(), then you'll need to fix the format for that. […]
Ok, I changed this once in 1.3.2, but now I realize the way I did it didn't really work either. The result is that if you're using PHP on a Windows server, it's not including the PEAR folder correctly. I think that the way I've got it now will work just fine for […]
I recently discovered (thanks to Eliot Shepard) two fairly major bugs. Turns out that since I added the new Auth API (version 1.3), caching hasn't been working. Also, in version 1.3.1, your include folders probably got royally messed up, thanks to a dumb mistake on my part. The good news is that […]
There was a bug in the XML class that was causing it to strip newlines out of fields (a photo's description, for example). Below is the fix that you can apply to xml.php to fix it. I've also updated it in CVS so that it will appear in the next update. The […]
All versions up through 1.3.1 have had a bug in photos_getNotInSet(). If a call is made while there is only one photo not in a set, the array structure of the result won't be quite the same. This is because of the way that the xml parser arranges things. If this is […]
In the documentation for photos_search() function, you'll see that I tell you to use a space delimited string if you're searching for tags. Unless I am sorely mistaken, that's the way it used to work. What I know for sure is that Flickr now wants a comma-delimited string for tags. Which means […]
Alx has just pointed out that the README.txt file tells you that you need to install the HTTP_Response package. Unfortunately, this package doesn't exist. What I meant to type was that you need the HTTP_Request package. If you've been having trouble installing it for that reason, installing that package should fix it. […]