<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: SMF Commenter</title>
	<atom:link href="http://solid-orange.com/software/smf-commenter/feed" rel="self" type="application/rss+xml" />
	<link>http://solid-orange.com</link>
	<description>Twistedsymphony's Playground</description>
	<lastBuildDate>Fri, 02 Jul 2010 02:31:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: twistedsymphony</title>
		<link>http://solid-orange.com/software/smf-commenter/comment-page-1#comment-29</link>
		<dc:creator>twistedsymphony</dc:creator>
		<pubDate>Wed, 27 Aug 2008 01:08:51 +0000</pubDate>
		<guid isPermaLink="false">http://solid-orange.com/software/smf-commenter#comment-29</guid>
		<description>yes that is normal... it&#039;s one of the known bugs, it doesn&#039;t harm anything but the page header gets set twice. I actually figured out why at some point when I encountered a similar problem on another project but I never got around to fixing it here. At this point I&#039;ve completely forgotten why it happens... heh 

..but it&#039;s just an annoyance, nothing to be worried about.</description>
		<content:encoded><![CDATA[<p>yes that is normal&#8230; it&#8217;s one of the known bugs, it doesn&#8217;t harm anything but the page header gets set twice. I actually figured out why at some point when I encountered a similar problem on another project but I never got around to fixing it here. At this point I&#8217;ve completely forgotten why it happens&#8230; heh </p>
<p>..but it&#8217;s just an annoyance, nothing to be worried about.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oldboy</title>
		<link>http://solid-orange.com/software/smf-commenter/comment-page-1#comment-28</link>
		<dc:creator>oldboy</dc:creator>
		<pubDate>Thu, 21 Aug 2008 13:29:55 +0000</pubDate>
		<guid isPermaLink="false">http://solid-orange.com/software/smf-commenter#comment-28</guid>
		<description>thanks mate, this works for me, i changed &quot;eval ($wp_config[8]); //evaluates line 20 (set $table_prefix)&quot; to eval ($wp_config[19]); //evaluates line 20 (set $table_prefix).

The plugin creates the topic in the configurated board, all good.
But when i post in wordpress, the following error comes (but ir works)

Warning: Cannot modify header information - header allready sent by (output startet at &quot;my root/wp-content/plugins/wp-content/plugins/wp_smf_commenter/wp_smf_commenter.php:83) in pluggabble.php on line 770

is this error normal ?

thanks in advance, great plugin indeed</description>
		<content:encoded><![CDATA[<p>thanks mate, this works for me, i changed &#8220;eval ($wp_config[8]); //evaluates line 20 (set $table_prefix)&#8221; to eval ($wp_config[19]); //evaluates line 20 (set $table_prefix).</p>
<p>The plugin creates the topic in the configurated board, all good.<br />
But when i post in wordpress, the following error comes (but ir works)</p>
<p>Warning: Cannot modify header information &#8211; header allready sent by (output startet at &#8220;my root/wp-content/plugins/wp-content/plugins/wp_smf_commenter/wp_smf_commenter.php:83) in pluggabble.php on line 770</p>
<p>is this error normal ?</p>
<p>thanks in advance, great plugin indeed</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: twistedsymphony</title>
		<link>http://solid-orange.com/software/smf-commenter/comment-page-1#comment-27</link>
		<dc:creator>twistedsymphony</dc:creator>
		<pubDate>Wed, 20 Aug 2008 19:47:04 +0000</pubDate>
		<guid isPermaLink="false">http://solid-orange.com/software/smf-commenter#comment-27</guid>
		<description>yeah, since SMF and WP don&#039;t play nice to get the DB values it actually reads the raw php from the config.php file and evaluate the lines blindly.

it&#039;s really horrible practice I know but it&#039;s the only way I could think of to allow them to share the same config data.

It should work with WP 2.6 as the original website for which this plugin was design is running 2.6.1 and still using the plugin...

though they upgrade after I left the site so I don&#039;t know if they ended up changing anything.

In short your problem seems to be that it&#039;s having trouble fetching the database config data.

you edited this line
eval ($wp_config[8]); //evaluates line 20 (set $table_prefix)
everything after the &quot;//&quot; is a comment which means it&#039;s not actual code. the [8] needs to be changed as well if the prefix location moved so change it to
eval ($wp_config[20]);

similarly check to make sure the other lines are correct.</description>
		<content:encoded><![CDATA[<p>yeah, since SMF and WP don&#8217;t play nice to get the DB values it actually reads the raw php from the config.php file and evaluate the lines blindly.</p>
<p>it&#8217;s really horrible practice I know but it&#8217;s the only way I could think of to allow them to share the same config data.</p>
<p>It should work with WP 2.6 as the original website for which this plugin was design is running 2.6.1 and still using the plugin&#8230;</p>
<p>though they upgrade after I left the site so I don&#8217;t know if they ended up changing anything.</p>
<p>In short your problem seems to be that it&#8217;s having trouble fetching the database config data.</p>
<p>you edited this line<br />
eval ($wp_config[8]); //evaluates line 20 (set $table_prefix)<br />
everything after the &#8220;//&#8221; is a comment which means it&#8217;s not actual code. the [8] needs to be changed as well if the prefix location moved so change it to<br />
eval ($wp_config[20]);</p>
<p>similarly check to make sure the other lines are correct.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oldboy</title>
		<link>http://solid-orange.com/software/smf-commenter/comment-page-1#comment-26</link>
		<dc:creator>oldboy</dc:creator>
		<pubDate>Wed, 20 Aug 2008 14:58:47 +0000</pubDate>
		<guid isPermaLink="false">http://solid-orange.com/software/smf-commenter#comment-26</guid>
		<description>Omg, after hours of searching, i found a plugin that would make my wishs come through, but there is a problem :\

I know, you dont want give support officialy, but i looked through the files by my own, but cant figure out whats the problem ..

First, my Setup is Wordpress 2.6 (is it compatible with this version ?)
and SMF 1.1.5.

When i want to post an article, the &quot;Cannot grab db values from wp-config.php&quot; appears, which comes, i read the smf__create_topic.php, when the plugin couldnt read out the wp-config.

So, i edited the line for the prefix, 
eval ($wp_config[8]); //evaluates line 20 (set $table_prefix)
becouse in line 20 there is this table_prefix.

But still the error appears.
Can you give me something to go on ? 

greetings, oldboy</description>
		<content:encoded><![CDATA[<p>Omg, after hours of searching, i found a plugin that would make my wishs come through, but there is a problem :\</p>
<p>I know, you dont want give support officialy, but i looked through the files by my own, but cant figure out whats the problem ..</p>
<p>First, my Setup is WordPress 2.6 (is it compatible with this version ?)<br />
and SMF 1.1.5.</p>
<p>When i want to post an article, the &#8220;Cannot grab db values from wp-config.php&#8221; appears, which comes, i read the smf__create_topic.php, when the plugin couldnt read out the wp-config.</p>
<p>So, i edited the line for the prefix,<br />
eval ($wp_config[8]); //evaluates line 20 (set $table_prefix)<br />
becouse in line 20 there is this table_prefix.</p>
<p>But still the error appears.<br />
Can you give me something to go on ? </p>
<p>greetings, oldboy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: twistedsymphony</title>
		<link>http://solid-orange.com/software/smf-commenter/comment-page-1#comment-20</link>
		<dc:creator>twistedsymphony</dc:creator>
		<pubDate>Mon, 25 Feb 2008 13:04:09 +0000</pubDate>
		<guid isPermaLink="false">http://solid-orange.com/software/smf-commenter#comment-20</guid>
		<description>You are correct, it does work on the assumption that both WP and SMF are sharing the same database.</description>
		<content:encoded><![CDATA[<p>You are correct, it does work on the assumption that both WP and SMF are sharing the same database.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deicist</title>
		<link>http://solid-orange.com/software/smf-commenter/comment-page-1#comment-19</link>
		<dc:creator>Deicist</dc:creator>
		<pubDate>Mon, 25 Feb 2008 12:54:28 +0000</pubDate>
		<guid isPermaLink="false">http://solid-orange.com/software/smf-commenter#comment-19</guid>
		<description>Hi, I know you&#039;ve stated no support for this plugin but I have found this plugin to be so useful that I hope you can help me with this.

I originally had the plugin installed on wordpress on a shared hosting account and it worked perfectly.  Since moving my site to a personal IIS box I&#039;m having issues.

I get this error message when trying to view any wordpress page with the plugin installed:

WordPress database error Table &#039;dcp_wrdp1.smf_messages&#039; doesn&#039;t exist for query SELECT COUNT(*) FROM smf_messages WHERE ID_TOPIC = 1828

The problem seems to be with the database name, the plugin is trying to select SMF data from the wordpress database... is an assumption made that SMF and wordpress are using the same database?</description>
		<content:encoded><![CDATA[<p>Hi, I know you&#8217;ve stated no support for this plugin but I have found this plugin to be so useful that I hope you can help me with this.</p>
<p>I originally had the plugin installed on wordpress on a shared hosting account and it worked perfectly.  Since moving my site to a personal IIS box I&#8217;m having issues.</p>
<p>I get this error message when trying to view any wordpress page with the plugin installed:</p>
<p>WordPress database error Table &#8216;dcp_wrdp1.smf_messages&#8217; doesn&#8217;t exist for query SELECT COUNT(*) FROM smf_messages WHERE ID_TOPIC = 1828</p>
<p>The problem seems to be with the database name, the plugin is trying to select SMF data from the wordpress database&#8230; is an assumption made that SMF and wordpress are using the same database?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
