Brad and I will work on a write up for converting to bbPress from other programs. Sad part is, everything seeems to convert over to phpBB, so most of the writeup will be converters to phpBB and then the 2 phpBB => bbPress converters we have here 
Trent
oh please feel free to.. try checking in the code. if you do not have access, may be you can add a patch file and i’ll check it in for you.
I still run 0.74 I believe, I will check it when I have the time
How come ya’ll don’t offer hosted forums?
Like http://invisionfree.com/
I think yours looks 100% better and more than likely easier to config too.
just wonderin’
WordPress is awesome, BTW… could use a more themes… and customizeable Smilies, But other than that it rocks…
and you shant ever hear me complain… *hehe*
-Chuck
I changed this up a little bit and made it work for the up and coming 0.8 theme. It would be nice to have someone test it again on 0.75 as I don’t have an install anymore, but I think my directions should work. Download is in the first post of this thread or check out the entry on my blog or over at the complete template and plugin blog, Pro Forum
Trent
*EDIT*
Null I am using the original logo again.
Change over to this as well:
$bb->akismet_key = false;
Trent
Thanks, but removing the slash had no effect
First off, take the slash off the domain part:
$bb->domain = 'http://aagymruss.net';
That might get it going.
Trent
I have never tried what you are doing (in terms of this type of integration), but maybe this article by So10 might be something that can help in the meantime? If not, disregard 
Trent
Just ask if you have anymore questions. Feel free to post up code that isn’t working also
There are a few of us who can help you with it.
I understand, nothing to be ashamed about, we all do it
Thanks Trent 
I just wish I had more time to upgrade the existing plugins and make new ones. At least my 5 are ready for .80
Lmao!! Hell yeah!! Replying a little late now though, being that I busted a nut a few hours back.. but, ya know.. I just couldn’t help it!! 
spencerp
Yeah hmm was afraid of that. It’s part of a function I’ve made with a foreach etc etc
There are 3 options:
1) Request this as a new function/option in the next release of bbPress
2) Make a new function 
3) I/ someone else makes the function when I/he/she has the time
I will take a look at it tonight
-fap- -fap- -fap- for spencerp
Plz let the release be today plz plz plz
Ok, I am at work now, so when I get home (tonight) I will cook up some correct SQL code for you. The problem is that the table isn’t filled so thats why it said: Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource because the table is empty.
The thing that borthers me is why it doesn’t fill the table when it is created :S (any1 has any ideas about this?)
So your original error is easily fixed, but you will have to wait till I get home.
Greetz
Hi all,
I am currently configuring BBPress for my site at http://www.babyquestions101.com’s forum, and by the looks of it it’s very promising.
I am trying to figure out if I can call a specific stylesheet for a specific page by making that call in the body page.
For instance, I know how to call multiple stylesheets through header.php. However, I would like to be able to specify a stylesheet through a page like forum.php, so that it dynamically tells header.php to call the stylesheet specific (or unique) to that page. I want this so that I can lean up my code, instead of calling everything in one css file.
And another Amen for the fact that the Forum Categories enhancement can do the same thing!! Oh God I love it.. OK! I gotta get out of this thread now, just all this awesome talk is getting me, well, you know.. hahaha. 
spencerp
One day I plan to add options such as these to an admin interface, but for the time being, you just gotta do it by hand.
Of course, the trick to that is pulling out the information. get_profile_info_keys seems like it should pass you back an array of those values and you can just get them out of there, except I haven’t attempted to use that function and since it doesn’t ask for any information about the user you’re interested in, I don’t know how to tell you to get the information from that seemingly useful function.
Which takes us to my personal favorite method: SQL commands. You’d be searching through the table bbprefix_usermeta
(mine is bbpress_usermeta
). Setup a SQL call like this:
$result = $bbdb->get_results("SELECT * FROM $bbdb->usermeta WHERE user_id = $id");
where $id is the id of the person you’re interested in and $result is the object that the person’s data will be loaded into.
Then to access the information, you’d simply call it like this (like, for the example of where the user is from):
$result->from
You can echo that to have it printed or whatever you want done with that information. A quick glance at the database tells me that you can call this information (and what it means):
“from” = location
“occ” = occupation
“interest” = interests
“bbpress_title” = the title, custom or default
You’d have to make a subroutine in bb-memberlist.php in the my-plugins directory to get $result, then use the information in memberlist.php.
Sorry I can’t do more for you than this, but I used information from the table I had already gotten results from for ease in my current release. I could have added more stuff, but then some people might not have wanted them plus it’s easy to add or subtract from information users put in when they sign up and blah blah blah…. one day I’ll make it nice via the admin panel, but for now, good luck
Yeah, release her already.. I’ve been running the .80 alpha for how long now.. and never had any problems with it.. Release the beast!! Now gerd damn its, now!!!!!!!!!!
spencerp
ok, i’ve just done it through the DB
get_user_profile_link($topic->topic_poster) doesn’t work.
I couldn’t create the table using the code you posted, it throwed a MySQL error in phpMyAdmin.
So I used the plugin to create the table, but had the same problem where it was empty.
I tried running hte second SQL query on the table, but got the following error:
#1064 – You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘INSERT INTO bb_menu VALUES (‘active’, ‘Search’, ‘search.php’, ‘search-page’, 1)
‘ at line 2