Search Results for 'bbpress'
-
AuthorSearch Results
-
February 1, 2009 at 5:35 am #37062
In reply to: Problems with umlauts
Burt Adsit
ParticipantI’ve been looking at this problem and getting frustrated. I realized finally that the filter function actually does two things:
$content = htmlentities( $content, ENT_COMPAT, "UTF-8" );
$content = str_replace( '&', '/amp/', $content );From http://loadaveragezero.com/app/drx/Data_Formats/Character_Encoding
[…] But there are a number of other issues to deal with. In particular, because UTF-8 is a multibyte encoding, meaning one character can be represented by more one or more bytes. This causes trouble for PHP, because the language parses and processes strings based on bytes, not characters, and makes mincemeat multibyte strings – for example, by splitting characters ‘in half’, bodging up regular expressions, and rendering email unreadable.
Karl can you just comment out the following lines please:
Line 46
$content = str_replace( '&', '/amp/', $content )in bp-forums-filters.phpand line 52
$post_text = str_replace( '/amp/', '&', $post_text );in buddypress-enable.php on the bbpress side.I’d like to narrow this down to the htmlentities fn.
I’m gonna help solve this or just move to a planet where only ASCII is spoken.
February 1, 2009 at 12:04 am #37049In reply to: Forum Integration: HELPING HINTS
Mark Leonard
ParticipantI found this Sceen Cast from sambauers at Automattic on the BBpress forum which goes through the install of wordpress mu 2.7 and bbpress 1 alpha. The integration of wp and bbprees is also fully shown.
https://bbpress.org/forums/topic/basic-integration-screencastJanuary 31, 2009 at 6:59 pm #37038In reply to: Problems with umlauts
karlheinz01
MemberHello,
i still have not found the problem with the umlauts.
the strange thing is, that in the forum title (BuddyPress frontend) the umlauts are there, but in the text the are deletet.
So if the title is like öäüÖÄÜß, after sending it, it looks like öäüÖÄÜß
If i write the same umlauts in the textbox, then after sending it the text is empty.
Is the filter for the title and the textbox not the same in BuddyPress?
If i write it in the bbPress Frontend, everything is ok.
Best,
Karl
January 30, 2009 at 5:30 pm #36959In reply to: Error posting in forum (other language)
Trent Adams
ParticipantIt might be due to the language pack that you have for bbPress itself. Maybe do a check over at https://bbpress.org/forums/ to see if you can find something out for the Thai language for bbPress as buddypress and WPMU won’t affect if bbPress (forum backend) has the language pack or not.
Trent
January 30, 2009 at 3:10 pm #36949In reply to: Video/MP3 Upload “Album”
Trent Adams
ParticipantYeah, that is what I mean. If adding things like “embed” or “object” code scares you to death, you can always include something like Anarchy Media Player where you can include the javascript in the buddypress theme header and then it will parse the page for the plugin quickcode and display the media that way. That is a way some are already doing it with things like bbPress where the media plugin doesn’t exist yet.
Andy put a filter on the tags used in wire. It allows common HTML now, but with a plugin can also be used to change the allowed tags to anything you want. I am going to do this on an extremely private install, but thinking about Anarchy as well. Just haven’t had time.
Trent
January 30, 2009 at 3:39 am #36922In reply to: Forum Integration: HELPING HINTS
cikguazleen
MemberI got this error on forum page for the group:
Warning: cannot yet handle MBCS in html_entity_decode()! in /home/teknikjb/public_html/wp-content/mu-plugins/bp-forums/bp-forums-filters.php on line 53
On the bbpress page, everything appeared O-kay.. There’s no such warning..
Link to group forum: http://teknikjb.net/groups/bloggers/forum
Link to bbpress forum: http://teknikjb.net/forum/topic.php?id=4
January 30, 2009 at 3:09 am #36919In reply to: BuddyPress Beta 2
cikguazleen
MemberThank you. Done it – I’ve installed back from zero because while installing BBpress I messed up the database.
I’ve noticed that the ‘news’ has changed to ‘blog’ in the beta version. How do I changed that ‘blog’ to ‘news’?
January 30, 2009 at 2:21 am #36913In reply to: BuddyPress Showoff: Post your links
krich
Participanthttp://www.officiallysummer.com
Basically a test site for checking features before deploying to our main club site. Follows trunk for WPMU, bbPress, and BuddyPress. Check it out.
January 29, 2009 at 2:46 am #36862In reply to: New Blogs Getting Buddypress Template?
Trent Adams
ParticipantThis forum, the BP trac, WPMU and bbPress forums are having “caching” issues it seems as things are slow to show up at times when people post. Strange…I reported it the powers that be…
In terms of answering, your answer was more detail anyways!

Trent
January 27, 2009 at 11:34 am #36774In reply to: Translating BuddyPress
danbpfr
ParticipantHi folks !
The WPMU pot file exist !
You can found it here:
http://svn.automattic.com/wordpress-i18n/pot/mu/trunk/wordpress.pot
The file contains all the lines for wp, but also for wpmu.
I translated it in french for 2.7 beta without problems; Just take care off many plural forms who need to be translated too…
I’m looking for a bbPress translation who works. Actually, the forums are only half translated. If somebody has a solution ?
January 26, 2009 at 6:52 pm #36748In reply to: Forum notifications
fishbowl81
ParticipantDue to all communication of buddypress and bbpress being done over xmlrpc, the normal plugins most likely won’t work. I have been looking at ones like a view counter and they require massive modification of buddypress. Because of caching, the forums are not always pulled from bbpress. So it would produce falsely low view count.
Also, group forums, are just a single forum in bbpress, this changes the administration and moderation of the forums and topics. If someone is a moderator on bbpress, they can moderate the whole site I believe, with buddypress a moderator is only a moderator of that group forum.
Hope this helps,
Brad
January 26, 2009 at 1:12 pm #36741In reply to: Forum notifications
gpo1
ParticipantCan’t we use bbpress forum plugins to do the job,and also can we use bbpress plugins in the forum in groups?
January 25, 2009 at 8:06 am #36696In reply to: Problems with umlauts
Burt Adsit
ParticipantIf you enter umlaut chars in the content of a forum post from bp and they are displayed correctly in bbpress then the problem isn’t the ‘encoding’ filter. It’s the ‘decoding’ filter which has an extra step in it.
On the decoding site in bp when the content comes back from bbpress we also call another filter inside the decode filter. This one is called: wp_filter_kses() and it gets called from the bp filter bp_forums_filter_decode() in bp-forums-filters.php.
If commenting out the line in my previous message doesn’t solve the problem then uncomment the line in the above message and try commenting out line 53 which reads
$content = stripslashes( wp_filter_kses( $content ) );.January 25, 2009 at 7:39 am #36695In reply to: Problems with umlauts
Burt Adsit
ParticipantI can’t reproduce the problem you are describing.
In bp the title of a post going from bp group forums to bbpress goes through all the same filtering as the content except the following:
wpautop
make_clickable
bp_forums_filter_encode / bp_forums_filter_decode filters. The content gets that treatment.
Are your umlaut chars showing ok in bbpress if you enter them from bp forums?
Just to narrow things down. Can you temporarily comment out line 4 in bp-forums-filters.php which reads: add_filter( ‘bp_forums_new_post_text’, ‘bp_forums_filter_encode’ );
Then try adding a new post with umlaut chars. This filter needs to be there but let’s see if it is the problem.
January 25, 2009 at 1:32 am #36682In reply to: Editing BBPress users…Page not found
Burt Adsit
ParticipantSee this topic for help getting group forums up and running https://buddypress.org/forums/topic.php?id=471
January 25, 2009 at 12:24 am #36674In reply to: Problems with umlauts
Burt Adsit
ParticipantLemme go look at this. I was just in that area about a week ago.
(later) Works for me. Lots of u-umlaut chars going to and from bp group forums, to bbpress and back again. Showing up as proper u-umlaut chars. Andy just installed some fixes lately in this area. Try upgrading to the latest bp trunk.
The fixes include an upgrade to the buddypress-enable.php plugin that runs in bbpress. Don’t forget that.
January 25, 2009 at 12:17 am #36672In reply to: Editing BBPress users…Page not found
stevefdl
MemberThanks. I tried that with no luck. Still can’t post from Buddy to BB.
January 25, 2009 at 12:13 am #36671In reply to: Editing BBPress users…Page not found
Burt Adsit
ParticipantHowdy. Your bbpress install is probably in a subdirectory under your document root. Looks like in /groupforum. In that subdir you put your bbpress .htaccess file that bbpress recommends for you. In your document root goes your wpmu .htaccess file that wpmu generates for you. bbpress doesn’t generate one. You have to copy/paste it to an editor and then put it in your bbpress install directory.
January 24, 2009 at 11:50 pm #36670In reply to: Editing BBPress users…Page not found
stevefdl
MemberI am all messed up. I have an htaccess in my main Buddy…do I need one also in BBpress? I put one in BBpress with “Options +MultiViews”, but that didn’t work. Then I put in the output from “http://maxbrawn.com/groupforum/bb-admin/rewrite-rules.php” and that didn’t work.
I am lost. When I put in an htacess in the BBpress directory with the output from rewrite rules it can’t find the forum.
Update…now I can find the forum…but it does not post from Buddy to forum…this is a train wreck
January 24, 2009 at 11:29 pm #36669In reply to: Editing BBPress users…Page not found
stevefdl
MemberMy BBpress first topic reads…
http://maxbrawn.com/groupforum/topic/your-first-topic
Should I change the custom structure in Buddy, or change the pretty permalink in BBpress? I am lost on this.
I changed both to numeric, but nothing happened. And how does this relate to the htaccess? I don’t see the link…
EDIT…I think I found a thread on this…working on it as we speak. Thanks for the help.
January 24, 2009 at 10:39 pm #36667In reply to: Editing BBPress users…Page not found
Burt Adsit
ParticipantbbPress needs an .htaccess file. Look in the backend under ‘settings’ > ‘pretty permalink type’ it provides a link to the file you need.
January 24, 2009 at 9:43 pm #36666In reply to: Problems with umlauts
karlheinz01
MemberIf i write in the BuddyPress Group Forum in the Buddypress Frontend, all the Umlauts are gone and look like in the first post above.
If i view this in the bbPress frontend the Umlauts are also broken.
When i write into the bbPress Frontend direkt then the Umlauts are ok. They are also ok, when i list them in the BuddyPress Group Forum. So the transfer from bbPress to BuddyPress is ok, the other way around it does not work.
January 24, 2009 at 7:32 pm #36664In reply to: Problems with umlauts
fishbowl81
ParticipantCan you confirm that they are making it back to the bbpress tables correctly? IE if you open the post in bbpress, are they already corrupt?
Or is it only when they get displayed back to Buddypress?
Also if you make a post in bbpress, does it show up in buddypress correctly or is it corrupt there also?
Answering these questions may help to narrow down the bug, or may prove to be a wide spread issue.
Sorry I couldn’t give you a solution, but first we must understand the problem at hand.
Brad
January 22, 2009 at 7:32 pm #36600In reply to: Outstanding Bugs: Help Appreciated
Burt Adsit
ParticipantI’m looking at the caching that bbpress_live is doing and it’s using the wp_options table as a cache. huh? Maybe Sam knows something we don’t about the standard wp cache. I know that somethings aren’t fired up when an xmlrpc server gets instantiated. We’re using client xmlrpc services and wp is fully loaded and ready when we are using group forums. The wp cache should be avail. Gotta look further.
Got any input on this anyone? Why isn’t it using the wp object cache? I can make it do so but if there is some overriding reason then..
January 22, 2009 at 5:22 pm #36595In reply to: Forum Integration: HELPING HINTS
Trent Adams
Participant@12thharmonic that would work *if and only if* that install is running WPMU 2.7 and bbPress 1.0 alpha 4+ since the forum integration in buddypress needs bbPress 1.0 alpha series and that can only be integrated with WPMU 2.7 (unreleased). Don’t know of anyone that got this working with WPMU 2.6.5, but if they did, I would be interested in finding out.
Trent
-
AuthorSearch Results