Skip to search.
simplepie-support · SimplePie Support

Group Information

  • Members: 1141
  • Category: Open Source
  • Founded: Jan 31, 2008
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

  Messages Help
Advanced
Messages 2505 - 2534 of 5862   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2505 sumanth
tsu_ims2004 Offline Send Email
Oct 1, 2008
2:19 pm
Hi, Can somebody help me on it.. very very very important and urgent. :-) I am using simplepie to crawl the feeds in my script. $url = ...
2506 pinfx Offline Send Email Oct 1, 2008
6:46 pm
Hi, actually tried that already and realized it was not cURL. I suspect it has something to do with the RSS feeds I'm using or the server they are on....
2507 Chris Wilson
thefreshpeel Offline Send Email
Oct 1, 2008
7:11 pm
Here's what I'm trying to do: 1. Display a short excerpt from a single feed (200 characters or so, no title). 2. Right below the excerpt I want to display some...
2508 sbeaumont9 Offline Send Email Oct 1, 2008
7:16 pm
I'm using the code from this page: http://simplepie.org/wiki/tutorial/how_to_group_multiple_posts_by_day to sort a few feeds by day. I'm sure this is easy, but...
2509 Ryan Parman
skyzyxufks Offline Send Email
Oct 1, 2008
7:34 pm
$item->get_feed() will return a reference to the parent feed object. So, you could use $item->get_feed()->get_title() to get the parent feed's title. -- Ryan...
2510 sbeaumont9 Offline Send Email Oct 1, 2008
7:39 pm
Thanks for the quick reply, but I receive a "parse error" when I tried to add what you have below. My full line of code (with your suggestion) is: echo '<li><a...
2511 willgotoo Offline Send Email Oct 1, 2008
8:51 pm
i tested with sp_compatibility_test.php and it said i should be good. my php page's code: require_once('scripts/simplepie.inc'); $next =...
2512 sbeaumont9 Offline Send Email Oct 1, 2008
9:18 pm
Has anyone combined these 2 methods successfully: http://simplepie.org/wiki/tutorial/how_to_do_item_paging ...
2513 twotonespirit Offline Send Email Oct 2, 2008
1:20 am
I'm having the inverse problem that most people claim to have re: sorting. I can't get my feeds *not* to sort by date. I am using the WordPress plugin with...
2514 twotonespirit Offline Send Email Oct 2, 2008
1:21 am
... sorting. ... I mean enable_order_by_date, not sorting....
2515 Ryan McCue
mccue_ryan Offline Send Email
Oct 2, 2008
2:40 am
... You're using PHP 4, aren't you? *sigh* Change it to this: $feed = $item->get_feed() echo '<li><a href="' . $item->get_permalink() . '">' . ...
2516 Markus StrĂ¼bel
markus_struebel Offline Send Email
Oct 2, 2008
5:38 am
how to display specific items? * 1-5 * 2 * 4-7 * oldest 3...
2517 Matthias Coy
matze_cxi Online Now Send Email
Oct 2, 2008
9:26 am
Hi there, I'm using FoF (http://feedonfeeds.com/) which uses SimplePie. I think I've encountered a problem with entities inside a RSS feed. As you can see at...
2518 Ryan McCue
mccue_ryan Offline Send Email
Oct 2, 2008
12:06 pm
... Well, I hate to say it, but this works fine for me on the SP demo. I'd bet it's a problem with Feed on Feeds *or* it's just been fixed in trunk. Also, I...
2519 Matthias Coy
matze_cxi Online Now Send Email
Oct 2, 2008
12:34 pm
Ok, Now I'm confused. As I added in my first post at the end, this little script does create the behaviour I said. Now I got the latest_trunk [3] of simplepie,...
2520 Ryan McCue
mccue_ryan Offline Send Email
Oct 2, 2008
12:37 pm
... It's working on the publically available demo for SimplePie too: http://simplepie.org/demo/?feed=http%3A%2F%2Frss.golem.de%2Frss.php%3Ffeed%3DRSS1.0 Alpha...
2521 Matthias Coy
matze_cxi Online Now Send Email
Oct 2, 2008
12:56 pm
Ok, so it's sometimes working (as in your try and the open demo), and sometimes not (as in feedonfeeds and my minimalistic example, my approach on...
2522 Ryan McCue
mccue_ryan Offline Send Email
Oct 2, 2008
1:09 pm
... Make sure you have the latest version. It looks to me like the brackets are being replaced somehow and I have no idea why. What's your compatibility test...
2523 Matthias Coy
matze_cxi Online Now Send Email
Oct 2, 2008
1:21 pm
just checked out again the latest trunk [2]. The test says: everything ok [1]. I copied the example from [3] to [4], just to check double. I don't have a clue...
2524 sbeaumont9 Offline Send Email Oct 2, 2008
1:32 pm
I upgraded to PHP 5 - thanks!...
2525 Chris Wilson
thefreshpeel Offline Send Email
Oct 2, 2008
5:05 pm
How much different would it be from this code, which displays the most recent feed titles? <?php /** * Shortening function. */ function shorten($string,...
2526 Ryan Parman
skyzyxufks Offline Send Email
Oct 2, 2008
5:29 pm
Welcome! :) First things first, it would be helpful for you to read <http://simplepie.org/wiki/reference/simplepie/start ... That being said, this is very...
2527 Stuart Robinson
lettuce_in_l... Offline Send Email
Oct 2, 2008
10:48 pm
Yesterday, for some unknown reason my site began picking up Feedburner feeds again. Why? I'm not sure. I did empty the cache and recreate the opml file that is...
2528 Mikhael
debateguy01 Offline Send Email
Oct 3, 2008
4:08 am
I just installed simplepie and I am in the beginning testing phase. When I run it no matter what feed i am attempting to parse I get the following error: ...
2529 Ryan McCue
mccue_ryan Offline Send Email
Oct 3, 2008
7:30 am
... Where are you creating the SimplePie object? If you're calling it from, say, /home/comprx/public_html/example.php, then ./cache/ would be ...
2530 Ryan Parman
skyzyxufks Offline Send Email
Oct 3, 2008
7:43 am
... Correct, the cache directory is relative to the page that uses SimplePie, not simplepie.inc itself. -- Ryan Parman <http://ryanparman.com>...
2531 Ryan Parman
skyzyxufks Offline Send Email
Oct 3, 2008
7:44 am
What order are the items in, in the feed itself? -- Ryan Parman <http://ryanparman.com>...
2532 Matthias Coy
matze_cxi Online Now Send Email
Oct 3, 2008
11:59 am
Hi, The demopage on simplepie.org is running fine, so could you please give me the code-part which is used to get the feed? Regards Matthias...
2533 Michael McKenzie
debateguy01 Offline Send Email
Oct 3, 2008
3:00 pm
simplepie.inc is in my public_html folder. My example.php page is in public_html/php and my cache folder is public_html/cache. When I call simple pie I call...
2534 Michael McKenzie
debateguy01 Offline Send Email
Oct 3, 2008
6:08 pm
Ok i got it figured out. Thanks. I have to much to learn with this. How do you tell simplepie to only display a certain amount of content? IE only 1 (the most...
Messages 2505 - 2534 of 5862   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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