It looks like your host has disabled several PHP functions that are required by bbPress. Who is your host? You can try contacting them and asking what functions they’ve disabled.
Alternatively, maybe you’re running under PHP safe mode? If so, try turning safe mode off. This scenario seems more likely to me…
It looks like your WordPress htaccess file is screwed up, as this link to a WordPress post doesn’t work:
* http://www.charitableorthodoxy.com/2008/05/13/hello-world/
Did you create an htaccess file for your WordPress install? Also, did you create one for your bbPress? If so, please paste in the contents of each htaccess file. If not, try creating one.
Oops then the username got deleted from database!
Is it true that both jen and admin don’t work either in wp or bbpress?
If yes then you may have to add that to database via some SQL query or register again. But if you register again it will be registered as normal user and you won’t have admin rights, since there is no admin present so who will assign this new user, the admin powers.
Register as some username xyz and look in the userlist the entries that exist wheather or not admin/jen is listed.
Good day,
I just installed wordpress and bbpress on my domain, charitableorthodoxy.com last night. When I try to view a post, it results in a 404 error? I can’t figure out why. Anyone have any ideas?
By installing the forum (bbPress) and access to the loguin created this with the error message:
Warning: getmypid() has been disabled for security reasons in /home/g29890/public_html/******/forum/bb-includes/class-phpass.php on line 43
Warning: Cannot modify header information – headers already sent by (output started at /home/g29890/public_html/tiagobigode/forum/bb-includes/class-phpass.php:43) in /home/g29890/public_html/*******/forum/bb-includes/pluggable.php on line 188
Warning: Cannot modify header information – headers already sent by (output started at /home/g29890/public_html/tiagobigode/forum/bb-includes/class-phpass.php:43) in /home/g29890/public_html/********/forum/bb-includes/pluggable.php on line 228
someone might help me?
Thank now
When users on my site sign up using the forum signup, it successfully integrates them into wordpress, but they do not have a nickname, so all comments appear as Anonymous.
Normally wordpress would automatically set the display name default to be the login name, but they dont seem to for this.
Any way i could edit the BBpress files to make wp have a name?
ekitel, this is not really related to RSS feeds is it?
What you do is access http://www.example.com/bb-admin/rewrite-rules.php, then take what is generated by that script and put that into your .htaccess.
The FM is right here:
https://bbpress.org/documentation/faq/#pretty-permalinks
I’m looking for a plugin for bbPress that shows the latest posts on the forum front page. With the default theme this would be shown as snippets (text of the actual post) below the Tag Cloud/Hot Tags ‘widget’.
I can’t seem to find a plugin, except the one that does just this on your WP installation if you’ve integrated with WP. Does this exist for bb as well?
so what changes do I need to make to /bb-admin/rewrite-rules.php to make it work? where is this F-in’ Manual I need to read? I have bbpress integrated with wordpress so maybe that’s part of the problem
or are you saying I need to copy the rules out of /bb-admin/rewrite-rules.php into my wordpress .htaccess file to make it work?
Strange, I was able to use spaces in mine. Perhaps it has to do with punctuation marks in the string.
I discovered for it to work that the secret keys cannot have spaces in them (as you could in version 2.5 of wordpress and 0.9.0.1 of bbpress). I generated a new secret key as one long string, and voila… users can pass through both programs without having to re-login.
$bb->wp_table_prefix = 'wp__'; // your wordpress db prefix is
$bb->wp_home = 'http://yourwebsite.com/';
$bb->wp_siteurl = 'http://yourwebsite.com/';
replace yourwebsite.com with the blog url.
if your blog url is for example
http://www.google.com then don’t forget to add the WWW to it, but if it doesn’t has WWW, the don’t use it.
Oh forgot. In the header I put just
<li class="page_item"><a href="/forum/">Forum</a></li>
after the page tag. It’s either going to be in front of all your pages or behind.
Hi Sam.
They are actually links on the profile page (in the screenshot they are green and clickable.) I didn’t actually click any of them to be 100% certain, and I don’t have any now that I can check to be sure.
I have very few plugins installed, none for the profile I don’t think. Here is a screenshot of my plugin page.
http://www.chrishajer.com/bbpress/plugins.png
If one comes through again, I will make sure the links are clickable. It actually looks like they did some tricks escaping the quotes (backslash and space.) If none come through, I will try to recreate it, and if I can, I will try it with the 0.9.0.2 release.
How I did it… Please back up everything before starting.
You need to find a theme close to your WP to make it easier.
1. BBPress side,I renamed the style.css to styleold.css
2. Copied over the WPress style.css over to BBpress
3. Open both files at the same time. You want to copy over some of the codes from styleold.css to style.css. You might need to play with it. Do not copy “body”.
4. Open both header.php. On the BBpress header copy over from WP header everything after <body> tag. Replacing whatever is there.
5. Open both footer.php. This one is a little tricky.
You can just copy over the whole thing and make sure you have <?php do_action(‘bb_foot’, ”); ?> in the file. You will lose the designers info though OR You need to see on WP side if there is any closing tags. bring that over and delete any closing tags on the BBPress side.
6. Sidebars: depending where the <?php get_sidebar(); ?> tag. For example my <?php get_sidebar(); ?> tag is IN the footer.php Others the <?php get_sidebar(); ?> is in the other php files right before the get_footer tag or after get header tag.
that’s it.
make sure in your bb-config.php
there is
$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’);
after <?php tag.
Goodluck.
This is a tough one to resolve. I noticed before that someone managed to merge their pot files for wordpress and bbpress into one and load that into wordpress (and in turn bbpress)
I will be working on auto-generating the .htaccess file soon. It will be part of bbPress 1.0
Hello,
I am currently integrating bbpress and wpmu.
When a new user registers, the username duplications are not allowed but email address duplications are allowed, meaning I can loggin with two different usernames and same email address!
Any plugin to restrict registration per email address?
Hi! This is my bbpress (http://www.voluntariado.tv/bbpress/). When I log in, the Spanish characters are ok. When I log off, they aren’t shown. A questiong mark appears instead. What’s wrong?
Can you post the lines you added to your wp-config.php and bb-config.php files?
The line defining the secret key in bb-config.php should look something like this:
define('BB_SECRET_KEY', 'My Secret Key');
and in wp-config.php
define('SECRET_KEY', 'My Secret Key');
Don’t forget the BB_ in fron of SECRET_KEY in the bb-config.php file.
I saw your thread. It wasn’t a solution for me…
I’ve defined both SECRET_KEY in wp-config and bb-config as the same, as well as pulling in the new “secret” from the wordpress options page into bb-admin config panel.
Still having the same issues of not being able to be logged into both at the same time.
Sorry, but that didn’t fix my problem. I’ve defined both SECRET_KEY in wp-config and bb-config as the same, as well as pulling in the new “secret” from the wordpress options page into bb-admin config panel.
Still having the same issues of not being able to be logged into both at the same time.