<?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>bbPress support forums User Favorites: ebotunes</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums User Favorites: ebotunes</description>
<language>en</language>
<pubDate>Thu, 04 Dec 2008 05:55:00 +0000</pubDate>

<item>
<title>cweb on "User ID = 999999999?"</title>
<link>http://bbpress.org/forums/topic/user-id-999999999#post-6078</link>
<pubDate>Wed, 28 Mar 2007 20:16:15 +0000</pubDate>
<dc:creator>cweb</dc:creator>
<guid isPermaLink="false">6078@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ok this worked for me, here's how I actually &#60;strong&#62;reset the auto_increment&#60;/strong&#62; counter.&#60;/p&#62;
&#60;p&#62;NOTE: If you've already integrated WP and bbpress and/or if you've already had a bunch of new users register, this wont be so easy for you.  If however, you've performed a &#60;strong&#62;fresh installation and conversion&#60;/strong&#62; then this will be simple.&#60;/p&#62;
&#60;p&#62;1. make sure one of my existing users in the normal ID range is a Key_Master (this is very important).  For me, I made one of my users with ID =5 the Key Master.&#60;br /&#62;
2. login with the new Key Master, and delete all the users who are registered with a number =&#38;gt; 999999999.  For me this wasn't a problem because &#34;admin&#34; was the only user, I haven't had any new user registrations. If you do have new users in the 1000000000 range you'll need to reset their ID's (I'm not a MySQL guy so I dunno how)&#60;br /&#62;
3. Once all users in the ugly high number range are deleted, you can run the command to reset the counter on your *_users table, for me it was:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;ALTER TABLE bb_users AUTO_INCREMENT = 400&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I just added a few new users and they indeed started at ID 400.&#60;/p&#62;
&#60;p&#62;BTW, here's the code in the phpbbtobbpress.php converter that sets this very high ID:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//Let&#38;#39;s clean up the trash.
      //Your admin user will be given the biggest possible ID (I tried the biggest BIGINT but it didn&#38;#39;t work inside bbPress)
      //If you have more than 999999999 users on your forum, you may have problems... ;-)
      @mysql_query (&#38;quot;UPDATE &#38;quot; . $bbpress_tables[&#38;#39;users&#38;#39;] . &#38;quot; SET ID=999999999 WHERE ID=1&#38;quot;);
      @mysql_query (&#38;quot;UPDATE &#38;quot; . $bbpress_tables[&#38;#39;usermeta&#38;#39;] . &#38;quot; SET user_id=999999999 WHERE user_id=1&#38;quot;);
      @mysql_query(&#38;quot;TRUNCATE TABLE &#38;quot; . $bbpress_tables[&#38;#39;forums&#38;#39;]);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>cweb on "User ID = 999999999?"</title>
<link>http://bbpress.org/forums/topic/user-id-999999999#post-6076</link>
<pubDate>Wed, 28 Mar 2007 19:42:46 +0000</pubDate>
<dc:creator>cweb</dc:creator>
<guid isPermaLink="false">6076@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'll confirm that I have this problem as well, from a phpbb to bbpress conversion.   I actually tried to reset the auto_increment like chrishajer said:&#60;/p&#62;
&#60;p&#62;ALTER TABLE bb_users AUTO_INCREMENT = 400&#60;/p&#62;
&#60;p&#62;Since my original ID's stopped at around 350.&#60;/p&#62;
&#60;p&#62;It didn't work though, still incrementing in the billions.  MySQL documentation says:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;&#34;You cannot reset the counter to a value less than or equal to any that have already been used.&#34;
&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;&#60;a href=&#34;http://dev.mysql.com/doc/refman/5.0/en/alter-table.html&#34;&#62;http://dev.mysql.com/doc/refman/5.0/en/alter-table.html&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;So to me that reads I need to delete the admin user 999999999 first, am I correct?
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "User ID = 999999999?"</title>
<link>http://bbpress.org/forums/topic/user-id-999999999#post-5521</link>
<pubDate>Wed, 14 Mar 2007 15:06:23 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">5521@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;So, it sounds like this is related to the conversion from phpBB.  At least that narrows it down.&#60;/p&#62;
&#60;p&#62;In phpMyAdmin, select the table (be that bb_users or wp_users) and then select the &#34;operations&#34; tab up top.  On that page, near the bottom are &#34;Table options:&#34; and in there is a field that says [ xxx ] auto_increment where the xxx is the next auto_increment value that will be used.  That's where you would change it.&#60;/p&#62;
&#60;p&#62;You should first figure out what that value should be, and you should also fix the other high numbered users.  But that's where you reset it with phpMyAdmin.  *** Perform at your own risk. ***&#60;/p&#62;
&#60;p&#62;You can also just do it with SQL:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;ALTER TABLE &#38;#39;wp_users&#38;#39; AUTO_INCREMENT =whatever-number&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;The wp_users tablename might be bb_users or something else in your install.  Also, the table name should be backticked, but you can't do that in a block of code that's already backticked here :D
&#60;/p&#62;</description>
</item>
<item>
<title>wittmania on "User ID = 999999999?"</title>
<link>http://bbpress.org/forums/topic/user-id-999999999#post-5519</link>
<pubDate>Wed, 14 Mar 2007 14:14:02 +0000</pubDate>
<dc:creator>wittmania</dc:creator>
<guid isPermaLink="false">5519@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Can anyone enlighten me/us as to how to reset that auto increment using phpmyadmin or something similar?  I doubt it is causing any real problems, but it still is kind of ugly.
&#60;/p&#62;</description>
</item>
<item>
<title>flaerpen on "User ID = 999999999?"</title>
<link>http://bbpress.org/forums/topic/user-id-999999999#post-5517</link>
<pubDate>Wed, 14 Mar 2007 14:00:56 +0000</pubDate>
<dc:creator>flaerpen</dc:creator>
<guid isPermaLink="false">5517@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have exactly the same &#34;problem&#34;. It all started after converting my phpBB to bbPress so I think thats the problem.
&#60;/p&#62;</description>
</item>
<item>
<title>wittmania on "User ID = 999999999?"</title>
<link>http://bbpress.org/forums/topic/user-id-999999999#post-5516</link>
<pubDate>Wed, 14 Mar 2007 13:53:51 +0000</pubDate>
<dc:creator>wittmania</dc:creator>
<guid isPermaLink="false">5516@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I did run the conversion, but it didn't work very well because I ended up with duplicate IDs, and therefore posts from phpbb were attributed to the  wrong authors in cases where their IDs conflicted.&#60;/p&#62;
&#60;p&#62;Now that you mention it, I wonder if the phpbb importer makes a change so that all new registrations would start at 999999999 just so there couldn't possibly be any conflicts.  I don't know enough about mysql to know if that's the case (or if it is, how to &#34;fix&#34; it), but if I were the one building the importer, I would probably add a feature like that, though I think a number around one billion might be a bit of overkill!
&#60;/p&#62;</description>
</item>
<item>
<title>ebotunes on "User ID = 999999999?"</title>
<link>http://bbpress.org/forums/topic/user-id-999999999#post-5514</link>
<pubDate>Wed, 14 Mar 2007 12:57:07 +0000</pubDate>
<dc:creator>ebotunes</dc:creator>
<guid isPermaLink="false">5514@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;this has happened to me as well.  Two new users have registered and have IDs 99999999 and 1000000000. They appear to be spam though so I was very worried that they'd somehow managed to hack their user id from the front end??? Highly unlikely though.&#60;/p&#62;
&#60;p&#62;I am wondering if the conversion from phpBB to bbpress has anything to do with it? ( &#60;a href=&#34;http://bbpress.org/forums/topic/47?replies=12&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/47?replies=12&#60;/a&#62; )&#60;/p&#62;
&#60;p&#62;Did you use this wittmania? I did, and these are the first users to register since the migration.  I will investigate a bit further over the next few days when i get the chance....
&#60;/p&#62;</description>
</item>
<item>
<title>wittmania on "User ID = 999999999?"</title>
<link>http://bbpress.org/forums/topic/user-id-999999999#post-5446</link>
<pubDate>Mon, 12 Mar 2007 22:29:18 +0000</pubDate>
<dc:creator>wittmania</dc:creator>
<guid isPermaLink="false">5446@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I looked at the tables in another WP install and fixed this one so that it matched.  We'll see if I run into any trouble...
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "User ID = 999999999?"</title>
<link>http://bbpress.org/forums/topic/user-id-999999999#post-5445</link>
<pubDate>Mon, 12 Mar 2007 22:15:45 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">5445@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I wish I could help you on that one.....you don't remember what you changed?   Do you have a backup?&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>wittmania on "User ID = 999999999?"</title>
<link>http://bbpress.org/forums/topic/user-id-999999999#post-5440</link>
<pubDate>Mon, 12 Mar 2007 21:02:39 +0000</pubDate>
<dc:creator>wittmania</dc:creator>
<guid isPermaLink="false">5440@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;OK... so I do have access to phpMyAdmin, which may not be such a good thing.&#60;/p&#62;
&#60;p&#62;Somehow I got some things crossed up so I am now getting these messages from within the wp_users table:&#60;/p&#62;
&#60;p&#62;!!! PRIMARY and INDEX keys should not both be set for column &#60;code&#62;ID&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;!!!More than one INDEX key was created for column &#60;code&#62;ID&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;!!!UNIQUE and INDEX keys should not both be set for column &#60;code&#62;user_login&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Here is the raw text of the indexes from that page:&#60;/p&#62;
&#60;p&#62; Indexes:&#60;br /&#62;
Keyname  	Type  	Cardinality  	Action  	Field&#60;br /&#62;
PRIMARY 	PRIMARY 	5  	Edit 	Drop 	ID&#60;br /&#62;
user_login 	UNIQUE 	5  	Edit 	Drop 	user_login&#60;br /&#62;
user_login_key 	INDEX 	None  	Edit 	Drop 	user_login&#60;br /&#62;
ID_2 	INDEX 	None  	Edit 	Drop 	ID&#60;br /&#62;
ID_3 	INDEX 	None  	Edit 	Drop 	ID&#60;br /&#62;
ID_4 	INDEX 	None  	Edit 	Drop 	ID&#60;/p&#62;
&#60;p&#62;This is a longshot, but can you tell what I messed up, and how I should fix it?  Sorry.  I really appreciate the help.&#60;/p&#62;
&#60;p&#62;While I wait for a response I will be banging my head against my desk for not backing up the DB before I started messing around with it. :(
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "User ID = 999999999?"</title>
<link>http://bbpress.org/forums/topic/user-id-999999999#post-5439</link>
<pubDate>Mon, 12 Mar 2007 20:45:13 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">5439@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If you have access to phpMyAdmin, you can reset the auto_increment field to start over at 6 or wherever you are right now.  I've never seen this one either, but somehow the auto_increment appears to have gotten messed up.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "User ID = 999999999?"</title>
<link>http://bbpress.org/forums/topic/user-id-999999999#post-5435</link>
<pubDate>Mon, 12 Mar 2007 20:22:19 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">5435@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;When you are integrated with bbPress, it uses the wp_user table for users.    It shouldn't have done anything to your WP install just integrating with bbPress.    That is strange.    I don't think I have ever seen this one.     Even with both integration plugins, registering in either program I can't replicate this.   Anyone else seeing this as well?&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>wittmania on "User ID = 999999999?"</title>
<link>http://bbpress.org/forums/topic/user-id-999999999#post-5429</link>
<pubDate>Mon, 12 Mar 2007 18:28:00 +0000</pubDate>
<dc:creator>wittmania</dc:creator>
<guid isPermaLink="false">5429@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have recently integrated a bbpress install with an existing wordpress blog/site.  The WP blog had three users prior to the integration, and all three made it over to the bbpress install with no problems.  However, today a new user registered on the WP side and her ID defaulted to 999999999.&#60;/p&#62;
&#60;p&#62;I proceeded to register a &#34;dummy&#34; user, just to see what happened.  The next registration ticked up to user ID #1000000000.  While I doubt that this will lead to any serious problems, it seems silly to me to have user IDs starting around ONE BILLION, when even 1,000 would be plenty high enough for my &#60;a href=&#34;http://www.lne97.com&#34;&#62;lil' ol' site&#60;/a&#62;.  Having McDonald's-esque &#34;XX billions served&#34; sized numbers seems to fly in the face of the &#34;Code is poetry&#34; mantra.&#60;/p&#62;
&#60;p&#62;Any ideas as to what's going on here?
&#60;/p&#62;</description>
</item>
<item>
<title>ebotunes on "Import phpBB posts into bbPress?"</title>
<link>http://bbpress.org/forums/topic/import-phpbb-posts-into-bbpress#post-4686</link>
<pubDate>Tue, 20 Feb 2007 14:40:30 +0000</pubDate>
<dc:creator>ebotunes</dc:creator>
<guid isPermaLink="false">4686@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yes, I encountered this problem last night. I had to manually add the topic_resolved field to the bb_topics table then it worked fine.&#60;/p&#62;
&#60;p&#62;other than that - superb script - worked a treat - thanks very much!!&#60;/p&#62;
&#60;p&#62;ebo
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Import phpBB posts into bbPress?"</title>
<link>http://bbpress.org/forums/topic/import-phpbb-posts-into-bbpress#post-4273</link>
<pubDate>Fri, 09 Feb 2007 18:35:09 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">4273@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The support forum functions were removed with 0.8 and so10 placed these functions into a plugin.   I am sure there is only a few small changes that will not take very long.&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>ljhardy on "Import phpBB posts into bbPress?"</title>
<link>http://bbpress.org/forums/topic/import-phpbb-posts-into-bbpress#post-4272</link>
<pubDate>Fri, 09 Feb 2007 18:31:13 +0000</pubDate>
<dc:creator>ljhardy</dc:creator>
<guid isPermaLink="false">4272@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Trent -&#60;/p&#62;
&#60;p&#62;I'll post the errors when I get home tonight.  I think that it probably had to do with changes in the database, if I remember correctly I think it was with the &#34;topic resolved&#34; field?&#60;/p&#62;
&#60;p&#62;Len
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Import phpBB posts into bbPress?"</title>
<link>http://bbpress.org/forums/topic/import-phpbb-posts-into-bbpress#post-4265</link>
<pubDate>Fri, 09 Feb 2007 16:31:05 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">4265@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;That is a good question.   I have yet to test it on the most recent version of bbPress.   I guess if nothing else you can run it on an install of 0.74 and get it working and then upgrade bbPress to 0.8 afterwards if nothing else.   What were the errors?&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>ljhardy on "Import phpBB posts into bbPress?"</title>
<link>http://bbpress.org/forums/topic/import-phpbb-posts-into-bbpress#post-4264</link>
<pubDate>Fri, 09 Feb 2007 16:28:48 +0000</pubDate>
<dc:creator>ljhardy</dc:creator>
<guid isPermaLink="false">4264@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Does anybody know if this script is supposed to work with the latest release of bbpress (.8)?  I ran into some problems importing some of the tables.&#60;/p&#62;
&#60;p&#62;Thanks, Len
&#60;/p&#62;</description>
</item>
<item>
<title>lingmiester on "Import phpBB posts into bbPress?"</title>
<link>http://bbpress.org/forums/topic/import-phpbb-posts-into-bbpress#post-4241</link>
<pubDate>Fri, 09 Feb 2007 05:33:41 +0000</pubDate>
<dc:creator>lingmiester</dc:creator>
<guid isPermaLink="false">4241@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;PHEW!  I'm so sorry.  I so nieve with such things.  Thanks for the check thru.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Import phpBB posts into bbPress?"</title>
<link>http://bbpress.org/forums/topic/import-phpbb-posts-into-bbpress#post-4238</link>
<pubDate>Fri, 09 Feb 2007 05:23:49 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">4238@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have looked over the code of this plugin and it doesn't send your email to spammers.   Jaim3 even put this in the code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;    // DISCLAIMER: This is a joke
    echo &#38;quot;&#38;lt;li&#38;gt;&#38;lt;h3&#38;gt;Sending all your database e-mails to all major world-wide spam sending mafias...&#38;lt;/h3&#38;gt;&#38;lt;/li&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If someone else wants to look to confirm, but it does what it is intended to as far as I am concerned.&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>lingmiester on "Import phpBB posts into bbPress?"</title>
<link>http://bbpress.org/forums/topic/import-phpbb-posts-into-bbpress#post-4234</link>
<pubDate>Fri, 09 Feb 2007 05:16:02 +0000</pubDate>
<dc:creator>lingmiester</dc:creator>
<guid isPermaLink="false">4234@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Watch out!  I think this script by jaim3 sends all your emails to spammers!
&#60;/p&#62;</description>
</item>
<item>
<title>jaim3 on "Import phpBB posts into bbPress?"</title>
<link>http://bbpress.org/forums/topic/import-phpbb-posts-into-bbpress#post-2135</link>
<pubDate>Sat, 09 Dec 2006 01:08:08 +0000</pubDate>
<dc:creator>jaim3</dc:creator>
<guid isPermaLink="false">2135@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Have a look at this: &#60;a href=&#34;http://bbpress.org/forums/topic/402&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/402&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>spencerp on "Import phpBB posts into bbPress?"</title>
<link>http://bbpress.org/forums/topic/import-phpbb-posts-into-bbpress#post-264</link>
<pubDate>Fri, 20 Oct 2006 05:37:47 +0000</pubDate>
<dc:creator>spencerp</dc:creator>
<guid isPermaLink="false">264@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You might want to follow this thread maybe? ;)&#60;br /&#62;
 &#60;a href=&#34;http://bbpress.org/forums/topic/3?replies=6&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/3?replies=6&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;spencerp
&#60;/p&#62;</description>
</item>
<item>
<title>marky on "Import phpBB posts into bbPress?"</title>
<link>http://bbpress.org/forums/topic/import-phpbb-posts-into-bbpress#post-246</link>
<pubDate>Thu, 19 Oct 2006 16:56:28 +0000</pubDate>
<dc:creator>marky</dc:creator>
<guid isPermaLink="false">246@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Not yet, from what I can gather. But hopefully someone will work on an importer script soon.
&#60;/p&#62;</description>
</item>
<item>
<title>erikcw on "Import phpBB posts into bbPress?"</title>
<link>http://bbpress.org/forums/topic/import-phpbb-posts-into-bbpress#post-227</link>
<pubDate>Thu, 19 Oct 2006 03:14:42 +0000</pubDate>
<dc:creator>erikcw</dc:creator>
<guid isPermaLink="false">227@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi all,&#60;/p&#62;
&#60;p&#62;Is there an easy way to import a phpBB forum into bbPress?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>kyte on "Akismet key"</title>
<link>http://bbpress.org/forums/topic/akismet-key#post-59</link>
<pubDate>Sun, 15 Oct 2006 02:39:55 +0000</pubDate>
<dc:creator>kyte</dc:creator>
<guid isPermaLink="false">59@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ahhhh so it actually requires quote marks.  Well I am no php person so I did not realise that.  Thanks, Jeremy :)
&#60;/p&#62;</description>
</item>
<item>
<title>JeremyVisser on "Akismet key"</title>
<link>http://bbpress.org/forums/topic/akismet-key#post-56</link>
<pubDate>Sun, 15 Oct 2006 02:03:51 +0000</pubDate>
<dc:creator>JeremyVisser</dc:creator>
<guid isPermaLink="false">56@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This is due to a PHP syntax error. My Akismet line looks like this:&#60;br /&#62;
&#60;code&#62;$bb-&#38;gt;akismet_key = &#38;quot;12345678&#38;quot;;&#60;/code&#62; &#60;em&#62;(key censored)&#60;/em&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>kyte on "Akismet key"</title>
<link>http://bbpress.org/forums/topic/akismet-key#post-54</link>
<pubDate>Sun, 15 Oct 2006 00:52:42 +0000</pubDate>
<dc:creator>kyte</dc:creator>
<guid isPermaLink="false">54@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I tried to use my WP.com key so's I can utilise akismet but it kept throwing an unexpected T-STRING error at Line 40.  I gave up in the end.  Any suggestions?&#60;/p&#62;
&#60;p&#62;Parse error: syntax error, unexpected T_STRING in /home/kyte/public_html/forums/config.php on line 40
&#60;/p&#62;</description>
</item>

</channel>
</rss>
