Forum Replies Created
-
In reply to: bbPress 1.0 released
Wow, really nice! I was expecting this only in 2010
In reply to: List of Plugins that work on RC1/RC2Really nice to know that there’s so many plugins working with the RC1.
Does this mean they’re still going to work with the final 1.0 version?
In reply to: Admin Can Post Anything (and Moderators too?)Atkins, before making the reply, you have to check the “override posting restrictions” checkbox, right under the textarea
In reply to: Admin Can Post Anything (and Moderators too?)CK, thanks for the tip about posting @ plugins page and about the tweek.
In reply to: target _blankGreat, thanks CK!
In reply to: Any idea when final version will come out?arpitshah: current stable version is perfect, including CK plugins
In reply to: bbPress Top 100 April 2009 UpdateWow, this is really nice!!!
In reply to: bbPress 1.0-alpha-6 releasedHey guys, I really recomend you to stop trying to make 2.7 work with BB alpha.
Use the undergrade cookie plugin to wordpress and everything is resolved. It’s so simple that you don’t need to do nothing.
Besides that, you will be able to use CK plugins without any problems and be able to make a much safer upgrade when 1.0 is released.
Sorry for english
In reply to: Automatic Thread TaggerHmm, this VBulletin plugin is very interesting.
In reply to: Basic integration screencastjohanh, I recomend you to use 0.9 with plugin to undergrade wordpress cookie system. It’s flawless.
In reply to: bb-post.php: how to define name=”_wpnonce” of inputFinally figure it out.
It’s the bb_create_nonce();
It’s like an MD5 hash, formed by “create-post_” + “topic_id”
for example:
<input type="hidden" name="_wpnonce" value="<?=bb_create_nonce('create-post_3');?>"
With this, you can create replies (posts) within the topic with id 3.
Best regards.
In reply to: bb-post.php: how to define name=”_wpnonce” of inputIpstenu, thanks for your help.
Looks like the nonce field is very important to prevent spam posting.
Form submitting doens’t work if you specify a wrong nonce. Take a look at my searchings:
http://phpdoc.ftwr.co.uk/bbpress/bbPress/_bb-includes—functions.bb-pluggable.php.html
http://svn.automattic.com/bbpress/trunk/bb-includes/functions.bb-pluggable.php
You can create a nonce key with this funcion:
bb_create_nonce();
I will continue with the searching and testings.
In reply to: bb-post.php: how to define name=”_wpnonce” of inputI could directly insert this at the bb_posts table, but I think this isn’t very smart, considering the system wont block what that user can or cannot do and will not do post counting and other stuff extended by plugins.
This can’t be very hard. I just can’t find what I’m missing.
Done!
get_post_author($result->post_id);
Could find in:
http://phpxref.ftwr.co.uk/bbpress/nav.html?_functions/index.html
Hey guys! I can’t make $result->topic_poster_name work in my 0.9.0.4 instalation.
Is this the right function for this version?
// REPLIES
$query_replies="SELECT * FROM bb_posts WHERE topic_id=$topic_id AND post_id != $first_reply_id AND post_status=0 ORDER BY post_time DESC";
$results_replies=$wpdb->get_results($query_replies);
$replies_text = "";
foreach ($results_replies as $result) {
echo $result->post_text;
echo $result->topic_poster_name;
}
The post_text works perfectly, but the poster_name returns me nothing. Any idea?
In reply to: Basic integration screencastPerfect video, couldn’t do the integration with out it.
Just 1 minor problem:
– I’m using wordpress 2.6.5 (I think) with bbPress 1.0-Alpha-6. I could fully integrate the logins, but not the Admin panel.
There’s that plugin (showed over the last minutes off the video) to make possible login at WordPress and get access to the Admin panel. Unfortunately, it sais that you need to use at least WP 2.7 for it to work.
Well, I actually tried to install and activate it in my WP 2.6, it worked and generated me the “define(‘COOKIEPATH’, ‘/’);” code.
But in the end, it doesnt work like expected. Probably because of the 2.7 minimum requirement.
Is there any solution to make this work out? I just need this last step working to keep it 100% integrated.
Best regards.