Search the web
Sign In
New User? Sign Up
simplepie-support · SimplePie Support
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3712 - 3741 of 4578   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3712
... Yep, so that's an enclosure. You need to do something using $item->get_enclosure() to get this. ...
Ryan McCue
mccue_ryan
Offline Send Email
May 1, 2009
8:44 am
3713
... Yes that's exactly where I started, I displayed the resulting enclosure object on the page I originally posted. ...
info1@...
rodeored54
Offline Send Email
May 1, 2009
10:23 am
3714
... OK, so it's outputting this: <a href="http://vimeo.com/4212793" class=""></a> Don't ask me why though. You'll have to wait for Real Ryan for that one. :) ...
Ryan McCue
mccue_ryan
Offline Send Email
May 1, 2009
10:36 am
3715
I'm not certain, but functioning FeedBurner feeds might be the problem?...
king_zapp_brannigan
king_zapp_br...
Offline Send Email
May 1, 2009
2:59 pm
3716
Not quite. Its outputing this: <a href="http://vimeo.com/4212793" class="">Download this enclosure!</a> from this: echo $enclosure->native_embed(array( 'alt'...
info1@...
rodeored54
Offline Send Email
May 1, 2009
9:09 pm
3717
... Hey Ryan, Do you suggest making the same modification [$item->get_link(0, 'image'), and then phpexplode] to the Wordpress plugin? I don't mind doing it...
Scott Chaffin
scott_chaffin
Offline Send Email
May 2, 2009
11:44 am
3718
This is my error I keep getting: Warning: ./cache/e3e988b9423f64e2000fc2943a66c41d.spc is not writeable in /home/blah/public_html/PHP scripts/simplepie.inc on...
wildbl67
Online Now Send Email
May 2, 2009
3:55 pm
3719
Try this: Go to settings->wp-o-matic->options and make sure you have set your Image cache path The cache directory must exist, be writable by the server and...
info1@...
rodeored54
Offline Send Email
May 2, 2009
5:36 pm
3720
I don't really understand it, but I wonder if the reason simplepie is acting like it does not recognize the file format is that the vimeo player format is not...
info1@...
rodeored54
Offline Send Email
May 2, 2009
6:28 pm
3721
There are two separate things happening here: RSS 2.0 has an <enclosure> tag, which has the correct media file URL in it. MediaRSS is a separate set of tags...
Ryan Parman
skyzyxufks
Offline Send Email
May 2, 2009
7:52 pm
3722
Here is an example: /path/to/your/feed_page.php /path/to/your/cache/ /path/to/simplepie/that/is/way/off/someplace/else/simplepie.inc Using ./cache...
Ryan Parman
skyzyxufks
Offline Send Email
May 2, 2009
7:56 pm
3723
I believe you are correct "Media RSS" Specification Version 1.1.2 says: "url should specify the direct url to the media object. " search.yahoo.com/mrss/...
info1@...
rodeored54
Offline Send Email
May 2, 2009
10:53 pm
3724
I followed the add on demo here: http://simplepie.org/wiki/addons/yahoo_weather This was a great help. I would like to be able to replace the artwork Yahoo...
josh.rubinstein
Offline Send Email
May 3, 2009
5:30 am
3725
Ok in an attempt to fix two previous errors I follow directions I think properly and added the following code: $feed->set_cache_location('blah/cache'); Now I...
wildbl67
Online Now Send Email
May 3, 2009
3:40 pm
3726
What is the rest of your code? Post to pastie.org and link us here, please. :) -- Ryan Parman <http://ryanparman.com> Please don't email/IM me directly. That's...
Ryan Parman
skyzyxufks
Offline Send Email
May 3, 2009
3:44 pm
3727
You would just need to replace the URLs of the images with the URLs for your own images. $this->get_condition_code() is a number (I believe), and you should be...
Ryan Parman
skyzyxufks
Offline Send Email
May 3, 2009
3:46 pm
3728
Thank you for your response...I understand what you are saying but I am not sure how/where to implement this in the example. I feel like I have to replace a...
josh.rubinstein
Offline Send Email
May 3, 2009
5:48 pm
3729
Here is the code...I actually got this from http://w-shadow.com/blog/2008/11/15/displaying-recent-posts-on-a-non-wordpress-page/ <?php $feed_url =...
wildbl67
Online Now Send Email
May 3, 2009
6:22 pm
3730
First of all , thanks for Simplepie! Here is my problem: I would like to display a complete feed - as it is in Wordpress. When I use: <?php echo...
Matt
mahirsch2000
Offline Send Email
May 3, 2009
8:58 pm
3731
Why not just edit the simplepie_weather.inc file directly? -- Ryan Parman <http://ryanparman.com> Please don't email/IM me directly. That's why we have a...
Ryan Parman
skyzyxufks
Offline Send Email
May 3, 2009
10:05 pm
3732
Hi, Has any one got a post processing php script for adding a target="_blank" and nofollow to links? I've been looking for one for hours and then tried to make...
chrishuntis
Offline Send Email
May 4, 2009
12:03 am
3733
... The error is occurring because you haven't set $feed at that point. Move the `set_cache_location()` line to below the `new SimplePie()` line. -- Ryan McCue...
Ryan McCue
mccue_ryan
Offline Send Email
May 4, 2009
12:57 am
3734
Ryan, Maybe I have not been clear but I am unclear what I need to edit in the simplepie_yahoo_weather.inc file and this is why I am contacting you. I have been...
josh.rubinstein
Offline Send Email
May 4, 2009
1:24 am
3735
You shouldn't need a post-processing script for that since you're not actually altering the URL itself. You should simply be able to add those attributes in...
Ryan Parman
skyzyxufks
Offline Send Email
May 4, 2009
3:11 am
3736
You may be using the default template. You can write your own HTML template to display however you'd like. Documentation for the plugin and its template tags...
Ryan Parman
skyzyxufks
Offline Send Email
May 4, 2009
3:12 am
3737
Hi Ryan, Thanks for the reply. I'm using a twitter search feed so the URLs are in the {ITEM_CONTENT} tag. I added the attributes in another part of the...
chrishuntis
Offline Send Email
May 4, 2009
12:53 pm
3738
Is it possible for me to read 20 feeds using multifeed, but only display the 5 most recent articles? I want to be able to read lot's of different feeds and...
milleniabass
Offline Send Email
May 4, 2009
3:41 pm
3739
I get a error in Wordpress with the SimplePie plugin: "The SimplePie template file is not readable by WordPress. Check the WordPress Control Panel for more...
stangrootes
Offline Send Email
May 4, 2009
8:08 pm
3740
Thank you Ryan for all your help! Now it works! Perfect! Bill...
wildbl67
Online Now Send Email
May 4, 2009
9:33 pm
3741
Hi, For some reason, Google News feeds no longer work for me. It's been working for past couple weeks, but suddenly today, it no longer works. Can anyone...
senh1
Offline Send Email
May 4, 2009
11:09 pm
Messages 3712 - 3741 of 4578   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help