Hello Ashfame
Thanks for your prompt help.
I have the plugin installed on WP side (even though the plugin is for 2.8 and I use 3.0.1). I added the 2 lines on wp-config to share cookies, and as I said before I can login on BBpress using my WP admin user. However, I cannot access BBPress admin page.
On my WP DB the wp_usermeta for my user on wp_capabilities is a:1:{s:13:”administrator”;b:1;}. Checking your site you recommend changing it to a:1:{s:9:”keymaster”;b:1;}…
Is it safe to change that on WP side? And why isn’t it correct on the first place?
make sure you have the integration plugin on WordPress side.
now if you can see admin link after logging in, its just a cookie issue else you have lost privileges http://blog.ashfame.com/2009/09/fix-lost-admin-access-bbpress/
make sure you have the integration plugin on WordPress side.
now if you can see admin link after logging in, its just a cookie issue else you have lost privileges http://blog.ashfame.com/2009/09/fix-lost-admin-access-bbpress/
make sure you have the integration plugin on WordPress side.
now if you can see admin link after logging in, its just a cookie issue else you have lost privileges http://blog.ashfame.com/2009/09/fix-lost-admin-access-bbpress/
make sure you have the integration plugin on WordPress side.
now if you can see admin link after logging in, its just a cookie issue else you have lost privileges http://blog.ashfame.com/2009/09/fix-lost-admin-access-bbpress/
Where to start? First – thanks for making this plugin available on a non-commercial basis. I’ve seen it on other sites, and it’s great!
Second – I’m pretty good at tinkering, but not formally trained in this new-fangled stuff. I learned on 8K PETs – I know just enough to be dangerous.
Third – I’m trying to add BBPress to my existing WP blogsite (campbellduke.com). I successfully added a new SQL database and user, and uploaded the files to a subdirectory (campbellduke.com/bbpress). I went through the install procedure, electing to forego the WP integration part so I could deal with it later.
BBPress is installed AOK at campbellduke.com/bbpress.
Current problem: How do I access the BBPress control panel/dashboard? There is no trace of BBPress in my WP dashboard, and I’m not sure how to access BBPress dashboard from the campbellduke.com/bbpress area.
HELP!
Beth
Hello all,
I’m new to this, (apparently) I followed the isntructions to integrate WP users with BBPress. So far there’s only one user (me).
I can log in to BBPress using the WP user (admin), but apparently I’m not the admin of BBpress… so I cannot access the BBPress dashboard anymore.
Where should I look for to fix this?
Tks a lot
Hello,
I installed a BBPress Theme in my new forum.
I find the folder my-languages and translate the bbpress to Portuguese.
But how can i translate the the Theme terms to Portuguese? i don’t find any folder or any language reference to the theme i installed. I have the bbpress in Portuguese but the terms of the theme in English.
Can you tell me how can i edit a .mo file in a Mac? how can i decompile the .mo file?
Thank you
Searching the forums will bring up lots of discussion on this topic.
Searching the forums will bring up lots of discussion on this topic.
hi every body
at this time i use simple forum plugin in my site but i want convert my plugin forum from simple forum to bbprees
anybody now how can i do this?!! is any plugin or file until convert data from simle forum to bbpress
this is link of simple forum plugin , also at this time i use version 4.3.3 of simple forum
http://simple-press.com
reards
I uses WP, BuddyPress, and bbPress in my website.
The buddyPress members cannot see that group because it is hidden. So they cannot see its forum either because it is part of the group. But if they go to the “Forum” directly they can see all the conversations in the forum for that group. What I do not know is that:
a. How to hide a forum in bbPress,
b. How to make it automatic to create hidden forums in bbPress for hidden groups in BuddyPress.
I think I’ve created a quite strong code for the RSS. It allows plugins to apply their filters (example: smilies!!!). It fixes problems with double apersand encoding and ” ” not working well with UTF-8. It also fixes the date of items which is not valid if you use localization, even if the options array sets “false” on “localize”.
Feel free to try the code for yourself, it works with stock bbPress 1.0.2. You JUST need to put this content in your rss2.php (check the theme folder).
<?php
header( 'Content-Type: text/xml; charset=UTF-8' );
echo '<' . '?xml version="1.0" encoding="UTF-8"?' . '>' . "n";
bb_generator( 'comment' );
function datefix($buffer) {
/*
* fix della data in modo da tenerla in inglese, rispettando
* le specifiche dei feed RSS
*/
return gmdate('D, d M Y H:i:s +0000', $buffer);
}
function callback($buffer)
{
/*
* sistema il codice rimuovendo la doppia codifica di "&" e
* rimuove il carattere " " che crea problemi con UTF-8
* in questo modo ho il testo del post dopo che i plugin (tipo
* le faccine) hanno applicato le loro modifiche html e ritorno
* il codice html senza entities ma in forma pura
*/
$single = str_replace("&", "&", $buffer);
$spaced = str_replace(" ", " ", $single);
return html_entity_decode($spaced);
}
?>
<rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title><?php echo $title; ?></title>
<link><?php echo $link; ?></link>
<description><![CDATA[<?php echo $description; ?>]]></description>
<language><?php esc_html( bb_option('language') ); ?></language>
<pubDate><?php echo gmdate('D, d M Y H:i:s +0000'); ?></pubDate>
<?php bb_generator( 'rss2' ); ?>
<textInput>
<title><![CDATA[<?php _e('Search'); ?>]]></title>
<description><![CDATA[<?php _e('Search all topics from these forums.'); ?>]]></description>
<name>q</name>
<link><?php bb_uri('search.php'); ?></link>
</textInput>
<atom:link href="<?php echo $link_self; ?>" rel="self" type="application/rss+xml" />
<?php foreach ($posts as $bb_post) : ?>
<item>
<title><?php post_author(); ?> <?php _e('on')?> "<?php topic_title( $bb_post->topic_id ); ?>"</title>
<link><?php post_link(); ?></link>
<pubDate><?php
ob_start("datefix");
bb_post_time('U');
ob_end_flush();
?></pubDate>
<dc:creator><?php post_author(); ?></dc:creator>
<guid isPermaLink="false"><?php post_id(); ?>@<?php bb_uri(); ?></guid>
<description><![CDATA[<?php
ob_start("callback");
post_text();
ob_end_flush();
?>]]></description>
</item>
<?php endforeach; ?>
</channel>
</rss>
Sorry for comments in italian.
BTW @ yoyopop, I don’t remember in which topic, but I read on this forum that the problem is related to some plugins having extra spaces in their code before the opening “<?php” tag. Check it…
Hello,
could anybody provide a short summary of the state of things? The development od bbPress seems to be stopped or going on not publically. Documentation development seems even more dead. I found out the next version of bbPress is going to be “a WP plugin” which decision just makes me think: Have any notable forks been made in the recent year or so?
Much thanks,
Peter
I HAVE the latest version of BBPress…And I don’t understand how to fix the problem. So, none of you have helped so far.
I HAVE the latest version of BBPress…And I don’t understand how to fix the problem. So, none of you have helped so far.
http://www.webcreatures.be
There can you take a look at my customized bbPress setup
Do you have a separate theme to access your forums directly, or are non group members able to access those forums/topics from within BuddyPress?
The solution in this post will resolve your problem.
Tons of Depreciated Errors
It involves editing a bbPress file called bb-load.php.
The error is because your host is using a very new version of PHP (5.3.2) and the way bbPress is doing this has been “deprecated” (made obsolete) in the new version of PHP. Everything will still work, but in the future PHP may change and these functions will error out.
The latest trunk version of bbPress also includes a fix for this.
If you can specify a PHP version lower than 5.3, like 5.2.something, that will hide the errors as well.
The solution in this post will resolve your problem.
Tons of Depreciated Errors
It involves editing a bbPress file called bb-load.php.
The error is because your host is using a very new version of PHP (5.3.2) and the way bbPress is doing this has been “deprecated” (made obsolete) in the new version of PHP. Everything will still work, but in the future PHP may change and these functions will error out.
The latest trunk version of bbPress also includes a fix for this.
If you can specify a PHP version lower than 5.3, like 5.2.something, that will hide the errors as well.
I use bbpress for forums on my BuddyPress website. The problem I have is that some of the groups are hidden and their forums needs to be hidden too. They cannot be veiewd on the site by those who are not members of those hidden groups but the conversations in the group’s forum can be viewed on the forum itself.
How can I hide the bbpress forums that belong to the BuddyPress hidden or private groups? Can it be done automatically?
Hey,
I have currently converted my IP.Board site over to bbPress but having a bit of a design issue.
I am current looking for a way so that on the index page, only one level of sub forums are shown in a row. So basically like this.
Main Forum
– Sub Forum 1, Sub Forum 2
I have found some examples that shows how to list the sub forums like that but I have played about with it and I haven’t been able just to get it to show just one level of sub forums.
My current index code is as follow. I would be very grateful if someone could help me with this.
http://wordpress.pastebin.com/8Gt738EP
Thanks.
open up plugins/bbpress/bbpress.php do you see:
/**
* Plugin Name: bbPress
* Plugin URI: http://bbpress.org
* Description: bbPress is forum software with a twist from the creators of WordPress.
* Author: The bbPress Community
* Author URI: http://bbpress.org
* Version: plugin-bleeding
*/
open up plugins/bbpress/bbpress.php do you see:
/**
* Plugin Name: bbPress
* Plugin URI: http://bbpress.org
* Description: bbPress is forum software with a twist from the creators of WordPress.
* Author: The bbPress Community
* Author URI: http://bbpress.org
* Version: plugin-bleeding
*/
http://wordpress.elfden.co.uk/forum/ updated – everything cleaned out for everyone to start playing again.