Forum Replies Created
-
In reply to: The last post on this topic is your own.
What plugins are you running? Looks like there are at least a couple. Maybe one of them causes the conflict. I have never seen that message before.
In reply to: install for beginnerThe alpha of bbPress works with WordPress 2.7, but there is no target release date that I know of.
In reply to: admin to receive email of new post- how to?If you just want to find out about new posts being made, I think I would follow the RSS feed of either recent posts or recent topics. That way you could see when new things are being posted. You could set up and RSS to Email thing and have an email sent when there are new items in the RSS feed if you don’t care for RSS.
If you want to moderate new posts and new topics, before they’re visible, you might want the BB Moderation Hold plugin:
https://bbpress.org/plugins/topic/bb-moderation-hold/
That was good for older version of bbPress. Not sure if it still works.
In reply to: which version of bbPress to use for new siteIf it’s essential to have a unified login, then you are going to need to use the alpha version of bbPress.
In reply to: Fatal error: Call to undefined functionAre you trying to access a WordPress site or bbPress site? Did you integrate bbPress with WordPress?
In reply to: Subscribe to Categories, and KeywordsI think the closest you get to that is tags. There is an RSS feed for each tag, but the concept of categories or keywords does not exist in bbPress AFAIK.
In reply to: Integrating bbPress with a custom coded siteCan you take a screenshot of the listing of tables in the two databases, or at least the database you want to integrate with?
In reply to: Integrating bbPress with a custom coded siteIf your _config.php does not have a table prefix specified, that means it’s hard coded in the software, or there is none. (oscommerce is like that: no table prefix.) Can you look at the database with something like phpMyAdmin and see if there are tables with no prefix, or if there are some for this software all with the same prefix?
In reply to: Can’t Edit the Keymaster’s profile?1. What version bbPress did you install?
2. Did you integrated with WordPress? If so, what version?
3. Do other things work on your forum, like viewing existing topics? Trying to eliminate a permalink problem.
In reply to: how to delete spam comments from the databaseThere was this:
https://bbpress.org/forums/topic/permanently-deleting-topocs-and-posts
If post_status 2 is a reply marked as spam, then that query would take care of it. But I think it could strand information in other tables that is related to that reply. I’m thinking specifically where the last reply is attributed to a topic or a user. Not sure what happens when you delete the reply that is referred to in another table.
In reply to: important notice about bbPress 1.0 and _ck_ pluginshttps://bbpress.org/forums/topic/nicer-slug-url-rewrite-plugin-done
https://bbpress.org/forums/topic/permalinks-slugs-modification-removing-forum
I thought I read in these forums that the problem with eliminating “forum” or “topic” from the URI would make it hard for bbPress to know if you are talking about a slug or a forum. I can’t find that reply now though. I though the comment was from _ck_.
Update: although there are four topics on the front page with the same slug and same title (WP Thumbnails on BBPress – Integration), you can’t access any of them now. They all result in a 404.
In reply to: install for beginnerWordPress 2.7 and bbPress don’t integrate. But that’s not why you’re having trouble integrating the two. If bbPress can’t connect to the database, it’s because one of the connection details is incorrect, or was left out. People sometimes forget to enter the hostname in the database connection details since I think it’s called “advanced database settings” or something. If you need to enter a hostname and have not, that’s likely the connection problem.
You do not need to create a different database for bbPress, and integration is easiest when you use the same database.
In reply to: How do WordPress.org/bbPress.org’s tabs work?I disagree on the WordPress page function not being powerful enough to understand parent/child. It always seems to work for me. For example, check this page:
http://www.woods-metal-shaping.com/machine-shop/machining/risers/
Those are WordPress pages, grandparent is machine-shop, parent machining, child risers. Check the left nav for the current page highlighted, and check the top tabs for the grandparent highlighted. So, it’s certainly possible to do whatever you want with the current class in WordPress.
On this site, when you are on the blog page, they are probably just using the WordPress current_page_item class to highlight (home, about, documentation, blog, download.) When you click forum, you go to bbpress. So, in your bbPress template, you hard code that nav item as current. I’m not certain how the extend section works, if it’s bbPress or WordPress.) But, basically, you hard code current for the forum/forums/bbpress tab since once you click it, you’re outside WordPress.
Now, with integration, and including the WordPress nav, I have no idea how it would work. I always thought if you had a Page called “forums” and then you installed bbPress in a directory called “forums” that the directory will override the WordPress Page, so the forum is shown, but I don’t know what happens in the nav, i.e. if WordPress still thinks you’re on a Page called “forums”.
HTH
In reply to: Captcha not working after integrationCan you disable the CAPTCHA plugin temporarily and see if cookies are shared properly between bbPress and WordPress?
In reply to: New integrated install – looks like a bug?Ah, a bbPress version of the wptuner plugin for WordPress. I follow now.
In reply to: User RegistrationIn reply to: cannot add a certain tag; cannot delete tagsWhat version are you using?
In reply to: Captcha not working after integrationWhat versions did you integrate?
In reply to: Use HTML code in postYou can use the “Admin can post anything” plugin to allow certain roles to post HTML.
https://bbpress.org/plugins/topic/admin-can-post-anything/
Not sure what version you’re using, and what version this will work with.
In reply to: new accont spamming@mzimmers – no, it will not work with WordPress; it’s a bbPress plugin. There are other plugins available for WordPress, but only this one for bbPress as far as I know.
In reply to: Firefox browser issuesLooks fine here in FF 3.0.6. There are no problems that I know of with the stock theme in FF3 or IE7. Did you edit anything? What is not working? Can you post screenshots?
In reply to: Admin approval of all usersApprove User Registration plugin works for the 0.9* series of bbPress:
https://bbpress.org/plugins/topic/approve-user-registration/
In reply to: 2.5 flash upload bug vs. 2.5 RC1+ integration issueYes, alpha and WordPress 2.7.
With the Flash upload bug though, can’t you just use IE7 or the browser upload, and then integrate WordPress 2.5.x and the 0.9.x series of bbPress?
In reply to: add the bbpress forum into a wp pageThis is not possible with bbPress as far as I know. bbPress does not live within WordPress or on a WordPress page. It’s not a plugin for WordPress. You can integrate bbPress to get single sign-on (shared logins) between bbPress and WordPress, and you can have access to WordPress functions in bbPress, so you can use get_footer(), get_sidebar(), get_header(), etc. But, it doesn’t work they way you are describing.