Search Results for '"wordpress'
-
Search Results
-
Well, now I’ve gone and done it. I installed bbpress 0.9 first then installed WordPress mu 2.6.3. I then tried to turn on integration, and now my bbpress installation is completely broken. I cannot login as I get the error:
bbPress database error: [Table 'web_forums.wp_users' doesn't exist]
SELECT ID FROM wp_users WHERE user_login = 'admin'
bbPress database error: [Table 'web_forums.wp_users' doesn't exist]
SELECT * FROM wp_users WHERE user_login = 'admin'My databases for WP and BBP are separated. Is there a way to reverse the integration? I cannot drop the database as there are existing users and posts.
I only realised this would be a problem after the fact, when I came here searching for a solution. If anyone is able to help me I’d greatly appreciate it. I’ve searched the forum posts extensively and looked through the bbpress configuration file to no avail. I hope someone can assist as I am at a loss on how to fix this.
Topic: User Roles Issue
I’m working a new version of my site, and I’m working in BBpress. I tried the latest stable version, but since I was already using WordPress 2.6.3, things didn’t quite work right. So I switched up to BBpress 1.0 Alpha 2, and things mostly work right.
However, I’m still facing a couple problems. Most importantly, the User Roles map doesn’t actually map users to the appropriate setting. It doesn’t map them at all, in fact. My admin blog users are still listed as just regular members on the boards. Does anyone know why that may be? I also can’t appear to edit the users to add the settings manually. The Software points me to “/profile/user/edit”, which doesn’t actually exist, apparently.
I realize that this is an Alpha version, which is fine, since the site isn’t live yet anyway. But I’d really like to figure out why users aren’t being correctly mapped. I entered all the settings correctly to my knowledge. Except the “WordPress “secure auth” cookie salt ” setting, which I didn’t appear to have. So I left that blank.
Any help would be appreciated, so I can start working on theme work for my site. Thanks!
Another WP integration/bbSync question: I’ve read everything written here and now have a working test blog/forum setup (2.5.1 & .902) waiting to be ported to the main site.
Bar one issue: using bbSync, I can get WP comments showing in the forum without difficulty, but replies in the forum are not porting back into the WP comments.
Am I overlooking a way of getting the forum posts to port back to the WP pages?
If this is not easily possible, might there be an alternative, like for example using Simplepie to parse the feed from the thread and re-include it back into the WP page, or even an include or Ajax load; perhaps not perfect…
I don’t need user sharing as there are no WP users; trying for an anonymous friendly integrated forum/comments system. It’s just getting those replies back onto the WP side…
Topic: Integrate wp2.7 and bbp1.0a2
Okay, I think I’ve experienced similar problems as most of you, and I just got mine working logging in and out from every angle with access to the admin panel on both. It still seems to hiccup a little when changing roles, so I am still trying to track that down, but I wanted to share where I am so far.
I am using the WordPress 2.7 beta 3 nightly build, and the bbPress 1.0 alpha 2. I am using various plug-ins and what-not and have akismet active on both.
My host is 1and1.com.
There are a few things that are of the utmost importance:
- I recommend BEING LOGGED INTO WORDPRESS AS ‘admin’ with user_id of ‘1’ when you install bbPress. Any other Administrator account didn’t want to redirect to the admin panel properly. I assume the cookies will immediately conflict as they are shifted around, causing weird issues from the start.
- BOTH -config.php files need to have the AUTH, SECURE, and LOGGED_IN KEYS defined correctly.
- I personally also defined the SECRET_KEY in WordPress, although I’m not sure this is necessary yet.
- bbPress needs to have the salts entered correctly during installation so that they match WordPress. Fortunately the link to the hidden admin panel is provided during the install so you can get them pretty conveniently. I personally did not have a secure_salt so I left it empty.
- MUST add
$bb->WP_BB = true;
if (file_exists('../wp-blog-header.php'))
require_once('../wp-blog-header.php');
else
if (file_exists('../../wp-blog-header.php'))
require_once('../../wp-blog-header.php');or your personal equivalent to bb-config.php
- I personally had to add
define('COOKIE_DOMAIN', '');
define('COOKIEPATH', '');to my wp-config.php to make it go.
- Login to bbPress as ‘admin’ if you are already not, navigate to settings/wordpress integration, and adjust the role map accordingly.
- Visit bb-admin/rewrite-rules.php page and copy the code
- Put the following in a file named “.htaccess” file and place that file in the bbpress root directory:
Options -MultiViews
YOUR PREVIOUSLY COPIED CODEThis is to make sure your URL’s are rewriting correctly.
- Logout.
- Clear all website cookies and attempt logging in either/or/both WordPress and bbPress. Access admin panels of both. Basically check for functionality.
That’s how I got mine working. Like I said, I’m still having issues assigning user roles for some reason, so I’ll try and figure that out next.
I’ve done some searching and not found anything related to this, so I appologize if someone elses google-fu is stronger than me.
I could use some help on this problem.
I have installed “complex” integration between bbPress (0.9) and WPMU (2.6) — yes, I have authentication working because I have custom auth plugins… that’s not my issue.
The problem I am running into is that IF I include wordpress then I’m getting extra attribute escapes on new posts and edit posts in bbPress.
So if I post a topic with a title of “test” it will end up posting as “test” if I’m just running bbPress (that’s good), but if I have wordpress loaded at the same time, I get \”test\”. And the resulting post displays in the forums.
Has anyone else ever seen this before?
Hi BBpress team,
I wanted to raise a concern I’ve had for sometime, but every time I think it’s the right thing to do, there’s a new release and I thought that maybe it’d be fixed. With 1.0 in alpha stage, I figure now’s a good time.
I think we’ve got a lot of this wrong.
Not the code, not the plugins, not the community, but more the mindset behind the important features. We’ve not built forum software, we’ve built blogging software.
We make posts, and people comment on them. The focus of BBpress is on individual posts with things like tags, as opposed to the forum/section/category to which it was posted. I also appreciate the desire to streamline the code base, which is wonderful, but users and the internet-public at large expect forums to have certain features – to rely on user updated plugins for these features is not an ideal solution.
I don’t say any of this to criticise, because you folks have done amazing work given the small team and smaller community working on BBpress, and I’m massively impressed; but I think given the scale of the project you’re working on you’d want real feedback.
Let me give an example if I may, which might illustrate the issue I and other users face.
In the 1.0alpha, we finally get Categories as standard, a feature that is absolutely essential for a forum (not a blog), otherwise the ‘forums’ are just a list of wordpress categories.
The problem with Categories, is that we don’t have ‘forums’ belonging to them, instead we have ‘forums’ that are called categories. A simple 1/0 in a db. But it’s not enough. Why?
Well it means that the loop in front-page.php to iterate through forums has to check to see if it’s a category. There is no independent check for categories and forums. This of course makes no difference in the world of all forums being in a singular table (the category can just be an individual TR and we can use a PHP continue to end the loop), but as soon as we move to multiple tables (which is essential for accessibility focussed websites), or nested divs this becomes quite useless.
What we need its:
Category
Forum
Topic
Forum
Topic
Topic
Reply
Reply
Each belonging to the parent above it. But we don’t have that in BBpress for categories. It’s massively short-sighted.
Now, this may seem like a simple thing, but I raise it as more of a mindset. We’re coming across a bug/issue/problem/feature request and we’re solving that specific request rather than seeing how it fits in. Take, if I may, the brilliant UNREAD POSTS plug-in by _CK_. When it was built it added a class to the specific span of the name of the topic post in the list of topics. Upon request it then did the same to the name of the forums. At no time was the thought process – wait a minute, if I put this at the top level item of the iteration that means that all child nodes can use it. _CK_ fixed this oversight yesterday and his plugin is now brilliant and easily rivalling the methodology used in the bigger forum solutions.
But it’s the mindset behind it I think we need to change. Fixing a singular problem, or even adding a new requested feature, without planning how it will impact others or if it’s at a high enough level is starting to make BBpress look amateurish.
I’m not saying we have to emulate the big boys and their massively bloated software, but what we have to accept, as a community, is that the likes of PHPbb and IPB etc. all do certain functions as standard, and these are what our users will expect.
I can’t see a roadmap or feature list for a finished 1.0 anywhere, I can’t even see a feature list for 1.5 anywhere (and yes I’ve been to the TRAC site for both). I just get the feeling as we move towards 1.0 release, that we’re not really releasing forum software, we’re releasing blogging software:
WordPress: categories > posts > comments
BBpress: forums > topics > replies
These are effectively one and the same. I’m quiety confident that someone could write a WP theme that effectively does what BBpress does. The BBpress front page list topics then forums (with the number of topics /posts in it). A WP page could list blog Posts titles and then categories (with the number of posts / comments in it). They are, to an end user, the one and the same.
I mean, was XML-RPC absolutely essential for BBpress? It seems to me that Categories, or the Unread Posts feature would be far more essential in that other forums have them. Why haven’t we used the same folder structure as WordPress so that we can easily convince wordpress users to also use BB? Heck why isn’t even our website set out in the same way (this may bring over some WP plugin creators)?
These things are not complains, and I do not raise them to flame or criticise in anyway, I merely hope to kick start a little discussion that can see us move BBpress forward. To often in the past few months I’ve suggested BBpress to friends or fellow developers and they’ve told me that it just doesn’t meet their needs – I think that’s something we need to fix, together

Kev
Hi there
I have just installed bbPress in a new database, not integrated with WordPress. I manage to access the forum, which is located at thenokian95.com/forum, but I cannot login, it says:
Warning: Cannot modify header information – headers already sent by (output started at /home/nokisat7/public_html/thenokian95.com/forum/bb-config.php:1) in /home/nokisat7/public_html/thenokian95.com/forum/bb-includes/pluggable.php on line 188
Warning: Cannot modify header information – headers already sent by (output started at /home/nokisat7/public_html/thenokian95.com/forum/bb-config.php:1) in /home/nokisat7/public_html/thenokian95.com/forum/bb-includes/pluggable.php on line 228
My installation went successfully, and I can register users. Here is the installation log, with a changed password:
Referrer is OK, beginning installation…
Step 1 – Creating database tables
>>> Create table bb_forums
>>> Create table bb_posts
>>> Create table bb_topics
>>> Create table bb_topicmeta
>>> Create table bb_users
>>> Create table bb_usermeta
>>> Create table bb_tags
>>> Create table bb_tagged
Step 2 – WordPress integration (optional)
>>> Integration not enabled
Step 3 – Site settings
>>> Site name: The Nokia N95 forum
>>> Site address (URL): http://thenokian95.com/forum/
>>> From email address: only.meraj@merajnet.com
>>> Key master created
>>>>>> Username: admin
>>>>>> Email address: only.meraj@merajnet.com
>>>>>> Password: something
>>> Description: Just another bbPress community
>>> Forum name: First forum
>>>>>> Topic: Your first topic
>>>>>>>>> Post: First Post! w00t.
>>> Key master email sent
Installation complete!
I have left bb-config.php and pluggable.php in CHMOD 755. I read other topics in this forum, and I had looked to see if there were extra whitespaces, but everything seems ok.
What am I doing wrong?
Thank you in advance
Hi all!
I run wordpress 2.6 at phonereport.info. I tried installing bbPress 1.0 Alpha so that it could integrate with WordPress, but just as I concluded the installation successfully, I get the following error:
‘Parse error: syntax error, unexpected T_STRING in /home/nokisat7/public_html/phonereport.info/test/bbpress/bb-config.php on line 20’
Line 20 is the following:
‘// the value of their equivalent keys in the WordPress file wp-config.php’
Here is the installation log, I changed the password:
‘Referrer is OK, beginning installation…
>>> Setting up custom user table constants
Step 1 – Creating database tables
>>> Modifying database: nokisat7_bbpress (localhost)
>>>>>> Table: bb_forums
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
>>>>>> Table: bb_meta
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
>>>>>> Table: bb_posts
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
>>>>>> Table: bb_terms
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
>>>>>> Table: bb_term_relationships
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
>>>>>> Table: bb_term_taxonomy
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
>>>>>> Table: bb_topics
>>>>>>>>> Creating table
>>>>>>>>>>>> Done
Step 2 – WordPress integration (optional)
>>> WordPress address (URL): http://phonereport.info/
>>> Blog address (URL): http://phonereport.info/
>>> WordPress cookie keys set.
>>> WordPress “auth” cookie salt set from input.
>>> WordPress “logged in” cookie salt set from input.
>>> Fetching missing WordPress cookie salts.
>>>>>> WordPress “secure auth” cookie salt not set.
>>> User database table prefix: wp_
>>> User database name: nokisat7_wrdp9
>>> User database user: nokisat7_forum
>>> User database password: something
>>> User database host: localhost
>>> User database character set: utf8
Step 3 – Site settings
>>> Site name: PhoneReport test forum
>>> Site address (URL): http://phonereport.info/test/bbpress/
>>> From email address: only.meraj@merajnet.com
>>> Key master role assigned to existing user
>>>>>> Username: admin
>>>>>> Email address: only.meraj@merajnet.com
>>>>>> Password: Your existing password
>>> Description: Just another bbPress community
>>> Forum name: PhoneReport test forum
>>>>>> Topic: Your first topic
>>>>>>>>> Post: First Post! w00t.
>>> Key master email sent
Installation complete!’
Please let me know what else you wish to have.
There are two different databases: one for the wordpress installation, the other for bbpress.
Thank you in advance, and keep up the good work!
