Archives

Archive for June, 2005

Version 1.2.1 released

I've just put up phpFlickr version 1.2.1. I put this out to correct some typos and a bug in phpFlickr::buildPhotoURL(). I've also changed the way that logging in works. Now, instead of using the constructor, you'll need to use the phpFlickr::login() method. I did this to be prepared for the new […]

README.txt bug

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. […]

Known Bug: buildPhotoURL()

There is a bug in the buildPhotoURL method. I've already fixed it for the next update. If you want to use this method, here's the simple fix:
Change Line 182 in phpFlickr.php from:
$url = "http://photos" . $photo['server_id'] . ".flickr.com/" . $photo['photo_id'] . "_" . $photo['secret'];
To:
$url = "http://photos" . $photo['server'] . ".flickr.com/" . $photo['id'] […]

New website feature

( News )

Over on the left sidebar, you'll notice that there is a "pages" section. I've already put up one example and I'll be putting up some more soon. The purpose of this is to let you see my class in action and then let you see the source code that generated this. At […]

phpFlickr Authentication Changes

( News )

Stewart Butterfield at Flickr announced today that there are going to be major changes to the way that the Flickr API handles authentication. Apparently the current method will overlap with the new method (which looks pretty robust and secure). This is going to change the way that every method that requires authentication will […]

New release and site launch!

Obviously, this is the beginning of a new home page for my phpFlickr class. I've got a spiffy new install of Wordpress with a cool theme up and running. I've also got a fresh release out. The major change in version 1.2 is the implementation of the two new methods from the […]