I have just updated the library to include every publicly available API call. This includes collections and pandas (and some other useful calls). Enjoy!
Archives
- January 2011
- May 2010
- September 2009
- March 2009
- December 2008
- November 2008
- January 2008
- October 2007
- April 2007
- February 2007
- December 2006
- October 2006
- September 2006
- August 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- October 2005
- September 2005
- August 2005
- July 2005
- June 2005
thousand thanks for this great app!
my website uses your wrapper class beautifully!
I don't know if this has been mentioned before or not, but in phpFlickr.php on line 209, it reads:
if (!($this->response = $this->getCached($args)) || $nocache) {
This was causing it to hang for me, so I changed it to:
if (!($this->response == $this->getCached($args)) || $nocache) {
…the script no longer crapped out.
I know that at first glance, this code might seem incorrect, but it is supposed to only have one "=". In PHP, an assignment statement returns the value that is assigned, so !($foo = bar()) returns true if bar() returns a non-true result.
Still can't get it working… damn it.
Could you send me a copy of your code? You can contact me at http://co.deme.me/contact
Yeah, thanks… it turns out the problem seems to be something else (maybe host issues?)… the script goes into a big loop – seems to crap out on phpFlickr.php line 227, $this->req->sendRequest()
I set up a local server, copied and pasted all the files I've been working with, and it works here.