Title: [Plugin: flickrRSS] Not working in WP 2.9.1
Last modified: August 19, 2016

---

# [Plugin: flickrRSS] Not working in WP 2.9.1

 *  [Truth](https://wordpress.org/support/users/truth/)
 * (@truth)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/plugin-flickrrss-not-working-in-wp-291/)
 * Can the plugin author or whoever looks into this?
 * It used to be working but stopped working today. No images are showing
    up. I
   tried the fix under common problems but nothing shows up.
 * I am using WordPress 2.9.1
 * Please kindly advice. Thanks!
 * [http://groups.google.com/group/flickrrss/browse_thread/thread/f2e71df93d3b626e](http://groups.google.com/group/flickrrss/browse_thread/thread/f2e71df93d3b626e)
 * [http://wordpress.org/extend/plugins/flickr-rss/](http://wordpress.org/extend/plugins/flickr-rss/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [imwy2cool](https://wordpress.org/support/users/imwy2cool/)
 * (@imwy2cool)
 * [16 years, 2 months ago](https://wordpress.org/support/topic/plugin-flickrrss-not-working-in-wp-291/#post-1385231)
 * I’m having the same issue. NO CHANGES to my blog and they just stopped working.
   You can check out the pagelines.com forums and there is a lot of chatter over
   there. I’ve tried all the fixes I’ve seen posted and still nothing.
 *  [imwy2cool](https://wordpress.org/support/users/imwy2cool/)
 * (@imwy2cool)
 * [16 years, 2 months ago](https://wordpress.org/support/topic/plugin-flickrrss-not-working-in-wp-291/#post-1385234)
 * Okay for once I have solved a problem. 🙂 At least it works for me with WordPress
   2.9.2
 * Replace this code in flickrrss.php
 *     ```
       if(preg_match('<img src="([^"]*)" [^/]*/>', $item['description'],$imgUrlMatches)) {
       					continue;
       				}
       				$baseurl = str_replace("_m.jpg", "", $imgUrlMatches[1]);
       ```
   
 * With:
 *     ```
       // Hack to switch regular expression for 2.9.2
       				$pattern = '<img src="([^"]*)" [^/]*/>';
   
       				if(!preg_match($pattern, $item['description'], $imgUrlMatches)) {
   
       					continue;
       				}
   
       				$url_array = explode(' ',$imgUrlMatches[1]);
       				$baseurl = str_replace("_m.jpg", "", $url_array[0]);
       ```
   
 * You’ll find it around line 150.
 * This is similar to what was said in a previous post regarding wordpress 2.8.5.
 * It’s NOT perfect as it is a hack, but at least my images are working now. I hope
   it works for you.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘[Plugin: flickrRSS] Not working in WP 2.9.1’ is closed to new replies.

 * 2 replies
 * 2 participants
 * Last reply from: [imwy2cool](https://wordpress.org/support/users/imwy2cool/)
 * Last activity: [16 years, 2 months ago](https://wordpress.org/support/topic/plugin-flickrrss-not-working-in-wp-291/#post-1385234)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
