I got it working on my site with pages, it shows the main list of galleries but when you click on the galleries they go to blank pages. My suspicion is that it’s somewhere in the .htaccess file. Here’s how I have mine setup…
in the “Photos” Page:
<phpcode><?php flickr_show_photos($_GET['album'], $_GET['photo'], $_GET['page']); ?></phpcode>
in the .htaccess file:
RewriteRule ^(photos)/?(album|page)?/?([_0-9a-z-]+)?/?(photo|page)?/?([_0-9a-z-]+)?/?(page)?/?([0-9]+)?/?$ /index.php?pagename=$1&page=$2&$1=$2&$3=$4&$5=$6 [QSA]