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.
adding a postmeta key/value for each topic and reply of ‘_bbp_topic_last_active’ and ‘_bbp_reply_last_active’. The time should be in ‘mysql’ format in the DB.
Worked like a charm and thanks for getting the Freshness problem fixed.
After the installation screen to upload the plugin, there’s a screen that gives you a report of the installation and there’s a link below the report that says activate plug-in. When I click that I get that error message. Maybe it’s not compatible with the Theme Atahualpa 3.4.9? It’s really confusing.
After the installation screen to upload the plugin, there’s a screen that gives you a report of the installation and there’s a link below the report that says activate plug-in. When I click that I get that error message. Maybe it’s not compatible with the Theme Atahualpa 3.4.9? It’s really confusing.
Set permissions on copy of plugin in my plugins. Still no effect. I got rid of the other copies as well.
Another issue I saw is that if you log in on the wordpress site, you have to log in again on the bbpress site. I would have thought they would be pointing to the same cookie after integration. What am I doing wrong here?
Set permissions on copy of plugin in my plugins. Still no effect. I got rid of the other copies as well.
Another issue I saw is that if you log in on the wordpress site, you have to log in again on the bbpress site. I would have thought they would be pointing to the same cookie after integration. What am I doing wrong here?
how did you try to activate if it doesn’t appear in your list of plugins?
how did you try to activate if it doesn’t appear in your list of plugins?
Hi,
I’m a first time user of bbPress and I downloaded the plug-in and installed through the WordPress platform. Anyway – when I try to activate the plug-in I get this error:
The plugin does not have a valid header.
And it doesn’t show up in my plug-in list on my Dashboard. Can you help me understand if I’m doing something wrong or need some other plug-in’s to accompany the bbPress to use it properly and have it install correctly? By the way – the plug-in does show that it’s installed on the server in the WP-Content folder under plug-in’s but it still doesn’t show up on the Dashboard under the list of plug-in’s for whatever reason.
Thanks,
-Josh