<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>
	<channel>
		<title>Google Tutor Tag: SimplePie Wordpress Plugin</title>
		<link>http://www.googletutor.com/forums/tags/simplepie-wordpress-plugin</link>
		<description>Google forums</description>
		<language>en-US</language>
		<pubDate>Sat, 20 Mar 2010 11:15:50 +0000</pubDate>
		<generator>bbpress 1.0-alpha-2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.googletutor.com/forums/search.php</link>
		</textInput>

		<item>
			<title>The Tutor on "SimplePie Error"</title>
			<link>http://www.googletutor.com/forums/topic/simplepie-error/page/7#post-203</link>
			<pubDate>Thu, 18 Jun 2009 10:46:30 +0000</pubDate>
			<dc:creator>The Tutor</dc:creator>
			<guid isPermaLink="false">203@http://www.googletutor.com/forums/</guid>
			<description>&#60;p&#62;I'd like to add this to the plugin, can anyone confirm it works?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>world_eggplant on "SimplePie Error"</title>
			<link>http://www.googletutor.com/forums/topic/simplepie-error/page/7#post-201</link>
			<pubDate>Tue, 09 Jun 2009 11:00:21 +0000</pubDate>
			<dc:creator>world_eggplant</dc:creator>
			<guid isPermaLink="false">201@http://www.googletutor.com/forums/</guid>
			<description>&#60;p&#62;Here's a fix that _should_ work made by &#60;a href=&#34;http://jardenberg.se&#34;&#62;Jardenberg&#60;/a&#62; and &#60;a href=&#34;http://fridholm.net/&#34;&#62;Fridholm&#60;/a&#62;:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;
&#60;code&#62;&#60;br /&#62;
if(!class_exists('SimplePie')) {&#60;br /&#62;
    if (file_exists(WP_PLUGIN_DIR.'/simplepie-core/simplepie.inc')) {&#60;br /&#62;
        require_once(WP_PLUGIN_DIR.'/simplepie-core/simplepie.inc');&#60;br /&#62;
    } else {&#60;br /&#62;
        require_once(dirname(__FILE__).'/simplepie.php');&#60;br /&#62;
    }&#60;br /&#62;
}&#60;br /&#62;
&#60;/code&#62;
&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;(This should replace the same lines of code as proposed earlier)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>new blogger on "SimplePie Error"</title>
			<link>http://www.googletutor.com/forums/topic/simplepie-error/page/7#post-200</link>
			<pubDate>Sun, 07 Jun 2009 19:16:12 +0000</pubDate>
			<dc:creator>new blogger</dc:creator>
			<guid isPermaLink="false">200@http://www.googletutor.com/forums/</guid>
			<description>&#60;p&#62;I tried making the change and it didn't work. get the same fatal error report.  Here is a list of my activated plugins.&#60;/p&#62;
&#60;p&#62;akismet&#60;br /&#62;
all in one seo&#60;br /&#62;
best post summary&#60;br /&#62;
click tags&#60;br /&#62;
crosslinker&#60;br /&#62;
google integration kit&#60;br /&#62;
google xml sitemaps&#60;br /&#62;
headspace2&#60;br /&#62;
hyper cache&#60;br /&#62;
jeromes keywords&#60;br /&#62;
keywords to posts&#60;br /&#62;
photo dropper&#60;br /&#62;
post/page update notification&#60;br /&#62;
post teaser&#60;br /&#62;
quantcast quantifier&#60;br /&#62;
quote comments&#60;br /&#62;
redirection&#60;br /&#62;
rss footer&#60;br /&#62;
seo slugs&#60;br /&#62;
si captcha&#60;br /&#62;
sociable&#60;br /&#62;
statpress&#60;br /&#62;
thank me later&#60;br /&#62;
thumbnail for excerpts&#60;br /&#62;
wwsgd&#60;br /&#62;
wordpress thread comment&#60;br /&#62;
wp-copyprotect&#60;br /&#62;
wp security scan&#60;br /&#62;
wp super cache
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Archiver on "SimplePie Error"</title>
			<link>http://www.googletutor.com/forums/topic/simplepie-error/page/5#post-144</link>
			<pubDate>Thu, 20 Nov 2008 17:12:01 +0000</pubDate>
			<dc:creator>Archiver</dc:creator>
			<guid isPermaLink="false">144@http://www.googletutor.com/forums/</guid>
			<description>&#60;p&#62;I got the solution in this very site from a &#60;a href=&#34;http://www.googletutor.com/2008/11/18/new-wordpress-plugin-for-google-reader-shared-items/#comment-241620&#34;&#62;post&#60;/a&#62; of &#60;a href=&#34;http://jardenberg.se&#34;&#62;Joakim Jardenberg&#60;/a&#62;. What I did is as follows:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;Change&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
require_once(dirname(__FILE__).'/simplepie.php');&#60;br /&#62;
&#60;/code&#62;&#60;br /&#62;
to&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
if (file_exists(WP_PLUGIN_DIR.'/simplepie-core/simplepie.inc')) :&#60;/p&#62;
&#60;p&#62;       require_once(WP_PLUGIN_DIR.'/simplepie-core/simplepie.inc');&#60;/p&#62;
&#60;p&#62;else :&#60;/p&#62;
&#60;p&#62;       require_once(dirname(__FILE__).'/simplepie.php');&#60;/p&#62;
&#60;p&#62;endif;&#60;br /&#62;
&#60;/code&#62;
&#60;/p&#62;&#60;/blockquote&#62;</description>
		</item>
		<item>
			<title>Archiver on "SimplePie Error"</title>
			<link>http://www.googletutor.com/forums/topic/simplepie-error/page/5#post-143</link>
			<pubDate>Thu, 20 Nov 2008 17:11:22 +0000</pubDate>
			<dc:creator>Archiver</dc:creator>
			<guid isPermaLink="false">143@http://www.googletutor.com/forums/</guid>
			<description>&#60;p&#62;I got the solution in this very site from a &#60;a href=&#34;http://www.googletutor.com/2008/11/18/new-wordpress-plugin-for-google-reader-shared-items/#comment-241620&#34;&#62;post&#60;/a&#62; of &#60;a href=&#34;http://jardenberg.se&#34;&#62;Joakim Jardenberg&#60;/a&#62;. What I did is as follows:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;Change&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
require_once(dirname(__FILE__).'/simplepie.php');&#60;br /&#62;
&#60;/code&#62;&#60;br /&#62;
to&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
if (file_exists(WP_PLUGIN_DIR.'/simplepie-core/simplepie.inc')) :&#60;/p&#62;
&#60;p&#62;       require_once(WP_PLUGIN_DIR.'/simplepie-core/simplepie.inc');&#60;/p&#62;
&#60;p&#62;else :&#60;/p&#62;
&#60;p&#62;       require_once(dirname(__FILE__).'/simplepie.php');&#60;/p&#62;
&#60;p&#62;endif;&#60;br /&#62;
&#60;/code&#62;
&#60;/p&#62;&#60;/blockquote&#62;</description>
		</item>
		<item>
			<title>Archiver on "SimplePie Error"</title>
			<link>http://www.googletutor.com/forums/topic/simplepie-error/page/5#post-141</link>
			<pubDate>Thu, 20 Nov 2008 16:21:56 +0000</pubDate>
			<dc:creator>Archiver</dc:creator>
			<guid isPermaLink="false">141@http://www.googletutor.com/forums/</guid>
			<description>&#60;p&#62;I happen to have the same problem (at 'activate' level) with the following gigantic testbed of &#60;a href=&#34;http://numania.com/plugins-used/&#34;&#62;used plugins&#60;/a&#62;.&#60;br /&#62;
The error I got, as above, is:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;Fatal error: Cannot redeclare class SimplePie in /home/...snip.../numania.com/wp/wp-content/plugins/shared-items-post/simplepie.php on line 382&#60;/p&#62;
&#60;/blockquote&#62;
&#60;p&#62;Here is the solution I did --&#60;br /&#62;
I got the solution in this very site from a &#60;u&#62;&#60;a href=&#34;http://www.googletutor.com/2008/11/18/new-wordpress-plugin-for-google-reader-shared-items/#comment-241620&#34;&#62;post&#60;/a&#62;&#60;/u&#62; of &#60;u&#62;&#60;a href=&#34;http://jardenberg.se&#34;&#62;Joakim Jardenberg&#60;/a&#62;&#60;/u&#62;. What I did is as follows:&#60;/p&#62;
&#60;p&#62;Change&#60;/p&#62;
&#60;blockquote&#62;&#60;pre&#62;&#60;code&#62;require_once(dirname(__FILE__).&#38;#39;/simplepie.php&#38;#39;);&#60;/code&#62;&#60;/pre&#62;&#60;/blockquote&#62;
&#60;p&#62;to&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;`&#60;br /&#62;
if (file_exists(WP_PLUGIN_DIR.'/simplepie-core/simplepie.inc')) :&#60;br /&#62;
       require_once(WP_PLUGIN_DIR.'/simplepie-core/simplepie.inc');&#60;br /&#62;
else :&#60;br /&#62;
       require_once(dirname(__FILE__).'/simplepie.php');&#60;br /&#62;
endif;&#60;br /&#62;
`
&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;... and it works !
&#60;/p&#62;</description>
		</item>
		<item>
			<title>The Tutor on "SimplePie Error"</title>
			<link>http://www.googletutor.com/forums/topic/simplepie-error/page/5#post-132</link>
			<pubDate>Wed, 19 Nov 2008 11:58:14 +0000</pubDate>
			<dc:creator>The Tutor</dc:creator>
			<guid isPermaLink="false">132@http://www.googletutor.com/forums/</guid>
			<description>&#60;p&#62;glad you got it working! note that it posts on server time so take that into account when scheduling.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jeffvand on "SimplePie Error"</title>
			<link>http://www.googletutor.com/forums/topic/simplepie-error/page/5#post-131</link>
			<pubDate>Wed, 19 Nov 2008 11:54:28 +0000</pubDate>
			<dc:creator>jeffvand</dc:creator>
			<guid isPermaLink="false">131@http://www.googletutor.com/forums/</guid>
			<description>&#60;p&#62;Tried completely uninstalling feedwordpress (which I was glad to do!) and it works much better now.  I was trying to use feedwordpress to feed my RSS from my shared items in to automatically post, but have had issues from the beginning and gave up on it!  As long as this actually posts when it says it should automatically I am very excited about this!  Thanks for your work!!  Awesome job!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>The Tutor on "SimplePie Error"</title>
			<link>http://www.googletutor.com/forums/topic/simplepie-error/page/5#post-129</link>
			<pubDate>Wed, 19 Nov 2008 11:42:42 +0000</pubDate>
			<dc:creator>The Tutor</dc:creator>
			<guid isPermaLink="false">129@http://www.googletutor.com/forums/</guid>
			<description>&#60;p&#62;hi jeff,&#60;/p&#62;
&#60;p&#62;sounds like one of the other plugins might already be using simplepie, not sure though. I can tell you I have it running on 2.6.3 just fine. I'd try disabling all plugins except akismet and see if it works. if not try removing feedwordpress entirely, that one can cause a lot of headaches
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jeffvand on "SimplePie Error"</title>
			<link>http://www.googletutor.com/forums/topic/simplepie-error/page/5#post-126</link>
			<pubDate>Wed, 19 Nov 2008 11:32:23 +0000</pubDate>
			<dc:creator>jeffvand</dc:creator>
			<guid isPermaLink="false">126@http://www.googletutor.com/forums/</guid>
			<description>&#60;p&#62;I had no problem activating the plugin on one of my sites (http://www.edutechie.com).  Works great!  I went to activate it on another and got the following error:&#60;/p&#62;
&#60;p&#62;&#34;Plugin could not be activated because it triggered a fatal error.&#60;/p&#62;
&#60;p&#62;Fatal error: Cannot redeclare class SimplePie in /[path removed]/wp-content/plugins/shared-items-post/simplepie.php on line 382&#34;&#60;/p&#62;
&#60;p&#62;I am running 2.6.3 and have the following plugins activated right now.  I did try deactivating a couple of them, but kept getting the same error... &#60;/p&#62;
&#60;p&#62;- Askimet&#60;br /&#62;
- Audio Player&#60;br /&#62;
- DISCUS Commenting System&#60;br /&#62;
- Feedburner Feed Replacement&#60;br /&#62;
- Feed WordPress (Disabled... didn't help... not active right now)&#60;br /&#62;
- Related Posts&#60;br /&#62;
- WP-Footnotes&#60;/p&#62;
&#60;p&#62;Any ideas?  I also tried re-uploading the plugin wondering if perhaps it wasn't fully uploaded... that didn't help either... &#60;/p&#62;
&#60;p&#62;Any ideas?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
