I posted this on the simplepie.org support forums but thought I'd try here as well. ____ I'm pretty sure this is embarrassingly basic, but I've been working on...
The second parameter takes an associative array, like so (line breaks for readability): <?php echo newsblocks::render('http://sports.espn.go.com/espn/rss/ ...
The only thing SimplePie does is make the data available. It makes no assumptions about layout. If you know (X)HTML and CSS, you can pretty much make it look...
hey ryan thanks for the fast reply. i think i was a little vague in my initial post, i'm currently running 5 feeds through simplepie and its automatically...
One way is to have multiple instances of Simplepie: <?php $feed1 = new SimplePie( "http://one.com/feed/" ); $feed2 = new SimplePie( "http://two.com/feed/" ); ...
When I want to use the great Simplepie class on my site I get a white page. I am not using Simplepie in any application yet. As you can see here the demo just...
Check your Apache and PHP error logs. tvdsluijs wrote: When I want to use the great Simplepie class on my site I get a white page. I am not using Simplepie in...
Go to the control panel for your website and click on "Error Log." That will be the error log for Apache. Look in your root directory for a file that says...
Sorry, my mistake. What am I looking for in these error logs ? I have the error logs, but see nothing strange or about the demo site. I cannot change the...
This sounds like it could possibly be a matter of not having either mbstring or iconv extensions installed. SimplePie is designed to work with either/both, but...
Problem: I'm trying to mash my Pownce feed into other feeds. But Pownce is 6 hours off. Is there any way I can adjust the date of this specific feed while...
... We don't require either, though there was a bug in SP 1.0.x that made it de-facto require one of them: 1.1 does not have this bug, and so works fine...
... Are you sure? I don't recall this making it into the release... at least, not into the release notes. Or docs. ;) Either way, it's still something to check...
... $item->get_date('U') will give you the Unix timestamp, in seconds. If the timestamp is 6 hours off, you can take the Unix timestamp and add/ subtract 6...
... Well, the simplest answer is to simply add your own preferred image to the page with standard HTML. If your question is more involved, then we would need...
... r864 | gsnedders | 2007-08-16 18:26:57 +0100 (Thu, 16 Aug 2007) | 2 lines We need to get as many valid characters as possible when replacing bad UTF-8 byte...
Thanks for the reply. I changed it how you suggested and now part of the code looks like this: <div class="chunk"> <img src="images/00top_links.gif" /> <?php...
... Wrapping so > starts a new line isn't a good idea :P We don't use hours anywhere else, so I don't see why we should here. We should use what we use...
Hello all! I am using simplepie for wordpress plugin. If you goto http://mytimewithgod.net/demo you will see in the first box a news section. In this news...