Nevermind, much props goes to boyevul on GoogleTalk!
The login codes were placed in the theme’s header2.php file, directly after an “onclick” action, which was the culprit.
So this:
<div id=”header” onclick=”location.href='<?php bloginfo(‘url’); ?>’;” style=”cursor: pointer;”>
<h1><a href="<?php bb_option('uri'); ?>"><?php bb_option('name'); ?></a></h1>
<?php login_form(); ?>
<div id=”memlist”><a href="<?php bb_memberlist_link(); ?>">Member List</a></div>
</div>
Was changed to this:
<div id=”header”>
<h1><a href="<?php bb_option('uri'); ?>"><?php bb_option('name'); ?></a></h1>
<?php login_form(); ?>
<div id=”memlist”><a href="<?php bb_memberlist_link(); ?>">Member List</a></div>
</div>
And all was peachy! I didn’t however upload the latest files of bbPress to the online copy, and I didn’t upload the new changes I just made here either.. I will then ..
Either way, problem is solved!
spencerp
I don’t know if anyone kept a list, but this will be the closest to finding it out.
Trent
Even if that is a mySQL restriction on the number of entries, I am more than 100% sure there are ways around it. If you need help believing that, just watch what happens when wordpress.org or wordpress.com go over 1,000,000 posts ! ! !
PS Brad, you are still linking your old site in your profile.
Trent
TRAC ticket submitted as mdawaffe has already mentioned he was working on this.
Trent
I am not sure if this is better as core function, so I placed up a TRAC ticket.
Trent
Do you really need to worry about having that many posts? And no I would assume there isn’t any real limit. But that’s just me.
Can someone make it as a plugin then 
Or some page we can put on our site, but that pulls al the plugins from this site for display?
In the database, the post_ID is an int of size 20. Does that mean that bbpress can only manage 1048576 posts ?
Probably not. There’s a lot of custom code talking to two different servers via http, cron jobs, svn actions and a dozen other things.
It’s not terribly well abstracted for use on arbitrary sites. To be honest, it’s a little spaghetti 
My plan was for bbpress.org/plugins to be open by this past Friday. It will open tomorrow (Monday Jan 8th).
hmm, then it seems I have a problem, because nothing shows when I do a search (just bbpress results). I haven’t upgraded yet, maybe that will fix it.
eek, I take that back, it breaks again when editing a post.
I hardcoded my install path because I couldn’t find the function name for the home install.
I wouldn’t have a clue how to do this, but it would be nice to be able to import data from one install into another. I did this with 2 installs already (as 1 had little data) and it was a nightmare because I had to change all the topic numbers, post numbers, authors, etc. in the database manually.
There are a couple more databases that I wouldn’t mind importing into one database and you can be sure that manually doing it isn’t an option!
Thoughts,
Trent
FYI: After upgrading to 0.74, my bbEmoticon images were broken.
I changed paths in bb-emoticons.php to get them working again:
“bb-images/smilies” to “../bb-images/smilies”
Ok so now here’s another feature I find missing in bbpress: polls.
Yeah but I would like to use this page on my own site as well. Pref as a plugin
Thanks jaim3. I can’t tell you how excited I am about going from a board with 86 tables to one with 8! Light and fast is what my members will appreciate. I think the simpler design will result in higher adsense revenues from my message board channels.
I have integrated bbpress to match the tech-o-crunch theme and will be releasing it to the bbpress community once I have it like I want it.
I’ll also be posting a casestudy of the bbpress adsense theory I mentioned above on my blog.
Can we get the changed files for the release? It would be a lot easier to update that way :$
Anonymous User 133554Inactive
I can’t promise anything since I’have never seen IPB database structure nor code, but I can give it a try. Drop me a line at jaime at iteisa dot c0m with the public URI and I’ll have a look at it if you are still interested.
Jaime.
Wow!
It was the permalinks. I shouldn’t of set that to “true” during the installation.
bbolman and Trent, thank you so much for the help. I am excited about bbPress, for not only is there huge potential behind the integration with WP, but the communities are awesome!
Thank again,
Orion
Did you by chance turn permalinks on in bbPress?
Hey Community,
I have installed and integrated both WordPress and BBpress. WordPress is working fine, and I am utilizing the integrated user plugin. Both are working from the same database.
My only issue is when I click on a forum to view from the home page of BBpress I am given a blank screen of “No input file specified.”
I did a search an came across a post by a person who received a similar result, but under different circumstances, for is error was during installation.
Any how, I am new with bbPress, so any general directions or instructions would be greatly appreciated.
Thanks,
Orion
Yeah, any plugin that uses ‘init’ is now needing to use ‘bb_init’, correct!
Trent
D’oh! I see the upgrade notes now. I swear, they weren’t there before! (I hope, LOL)
Ok, thought so. Thanks, Trent. 
I have one plugin which has init in it (Online List), so I just change that to bb_init, right?
Just code changes. Just file overwrites. Obviously, in the download, there is no:
.htaccess
config.php
/my-templates/
/my-plugins/
If you have those files, just keep them and overwrite the rest. I am sure you knew that already, but I thought I would post it in case others come across this thread!
Trent