Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'updated'

Viewing 25 results - 1,551 through 1,575 (of 2,090 total)
  • Author
    Search Results
  • #87836
    chrishajer
    Participant

    There’s no such thing as bbPress 2. There is a new theme here which some people are calling bbpress.org 2 or bborg 2.

    This site is running the 1.1-alpha trunk branch, not sure of the revision. It hasn’t been updated in a couple weeks.

    #89607
    zaerl
    Participant

    Beware. I’m a bit O.T. cause I will speak regarding my situation as a “plugin developer”. Keep in mind that usually I don’t write these kind of posts.

    I really don’t like what’s going on in this site. I mean: everybody are fighting each other regarding the near future of this software. It must be name 1.0.3, no it’s 1.1, no it will be a plugin et cetera. It’s just a number and nobody care about numbers. If Linux jumped from 0.12 to 0.95 then we can call the new version of bbPress 1.0.3, 1.1 or what we want.

    Now what is the real problem? The real problem is this site. After the releasing of the new template and the corresponding “Whoa!” thread everything stopped working. 404 pages, SVN broken, search broken, stupid HTML entities, trac substitution tag. Also the “Downloads This Week” statistics aren’t updated, “Highest Rated Plugins” too and I can continue on.

    I really love this piece of code but we must provide a good experience for users now for the 1.0.2. We can’t provide the new version if there isn’t a solid base first. Few hints? Documentation or API documentation? I was forced to look at the code of the core in order to understand how to write my extensions.

    I am demotivated. I have built a lot of plugins but I don’t want to hit the “submit” button cause why should I share my work if nobody can search for it in the plugin section or access it in several situations? As you can see I have stopped uploading big plugins after Editor and Visibility. Random Desc, Simple Registration, URL Preview and Post Permalink are like toys for me and I can share my toys with other people.

    Have a nice day and long live bbPress.

    #89571
    wtfmatt
    Member

    Why the heck does everyone continue to think this is up to matt and keep sucking up to him? That’s the whole point people, we all built the code and all the plugins, what in god’s name does matt have to do with this anymore besides what… owning the domain name?

    Yes matt is a nice smart guy, but he doesn’t have a HEART for bbpress. He has the brain, but not the heart, is my point. And right now he’s not even using his brain for bbpress so what’s the point of your compliments to him, a rattled nervous praise to *hope* he doesn’t delete bbpress.org???

    Nobody is asking for his time, or efforts! We are just asking that he LET GO of the reigns that he obviously has no interest in holding himself. And by the way, you shouldn’t accuse me of insulting matt, when he is the one that INSULTS US regularly… we are on the same team yo! We can build and take care of this project without him if he would just let people that have a heart for the bbpress project access the server and define goals and deadlines for the project.

    Letting bbpress go the route of a WP plugin is just matt’s round about way of saying “f*ck off” I’m gonna kill this community and sweep it under the rug into the “not so regularly updated” plugin world.

    And as _ck_ said, if it becomes a plugin, then what the heck happens to the bbpress plugins? You can’t install plugins of plugins!

    I don’t know _ck_ well but I know she practically built half the code on this site by herself. That shows HEART. And I know there are others too with just as much heart, like Gautam, etc. I’m not here to play politics, please don’t try and interpret my words! Kevin man you are exactly what I’m talking about, you are smart and have HEART, but you won’t stop playing this nerdy suckup game as if one day matt is going to take you out to dinner. HE WONT. So please stop sucking up and let’s get this stuff done brother!

    If you ask me, I think we should bug matt until he gives in. Emails, blog comments, whatever. He will get the point.

    Or do you have another 2 years to waste?… cuz I don’t. Notice how this site’s Alexa rate is a steady 12k… the entire world is waiting on this mates! Don’t THROW IT AWAY!

    p.s. I’m not hiding behind a fake identity. I’m not a “well known” member of bbpress so don’t fret y’all…

    #89474

    ooooh bb_update_forum. Awesome find.

    thats the difference between someone who can actually code PHP and someon like me.

    I’ll have to play with it though, and might ask you for some help, as in some re-ordering will fire that once for each forum is manually updated by an admin. I mean that won’t happen often ofc, but it’s (number of SQL calls my function makes * each function affected).

    Currently, and in no way overly optimized, the “forum_family_tree_setup” script uses 2 + (3 * parent) SQL calls per per forum.

    Even on my large football forum, (large in terms of number of forums) which has quite deep relationships, this is far less intensive than a recount. If this was to be multiplied by 3 or 4 times though (depending on how many forums are updated with a move), that might cause a hic-up.

    I’ll do some benchmarks after the weekend – I’ve got 31 non-England teams to support in the World Cup this weekend ;-)

    Cheers bro!

    #89471
    zaerl
    Participant

    I’m basically wanting to know when someone changes the name/title of a topic. Which seems very simple to me (in theory).

    do_action( 'bb_update_topic', $topic_id ); actually is fired after all the db stuff and not before. Given the code of bb_insert_topic we have:

    db update

    bb_update_topic

    bb_insert_topic

    in that order. If you intercept bb_update_topic the db must be already updated. At least if there isn’t something evil inside wp_cache_*

    If you want something that works before the database is updated. See this:

    add_filter('pre_topic_title', 'foo', 10, 2);

    function foo($topic_title, $topic_id)
    {
    global $bb_post;

    if($bb_post) echo "You changed me. How dare you.";

    return $topic_title;
    }

    but keep in mind that I’m not proud of this code nor I have run it. What actions do you want to take when a topic is renamed? You want to filter away the new title, changing the slug or what?

    #75902
    _ck_
    Participant

    Sorry about that Trent, I had only posted the theme as you left it.

    I’ve now updated it with your newer copy so you don’t get hit with the hotlink.

    #87817
    mr_pelle
    Participant

    Plugins directory not updating: Fixed.

    Seems it’s not retroactive… I mean, Zaerl’s last plugins are now listed correctly, but all other plugins did not get updated (yet): it looks like my last plugins update was a month ago! =P

    Plugins section is finally up to date!! =)

    #89214

    22 hours after, the bbPress repository server is not updated. The webside is not conform to the svn side.

    Users are not informed as in WP plugins repository of update of bbPress plugins…

    What happen ?

    Best regards

    #87812
    mr_pelle
    Participant

    Plugins directory not updating: Fixed.

    Seems it’s not retroactive… I mean, Zaerl’s last plugins are now listed correctly, but all other plugins did not get updated (yet): it looks like my last plugins update was a month ago! =P

    #34420

    I have updated our plugin from 0.9.0 to 0.9.2 more that two weeks via SVN and today add a tags but the webside of the bbPress plugins repository seems to be frozen since one month.

    Some body or Matt can inform us ?

    Best regards

    Michel

    dev.xiligroup.com

    #88992
    gerikg
    Member

    There is a plugin but it needs to be updated called Forums Moderators (1.0)

    https://bbpress.org/plugins/topic/forum-moderators/

    #34374
    dd_massacre
    Member

    Hi everyone.

    1) I installed “Forum Last Poster” in order to display additional information on my front page. In the forum section, I was able to display a link to the last updated topic in each forum, but the whole link is displayed. Does anyone know how to truncate the link to show only the post name instead of the entire link?

    Here’s my code thus far:

    <?php if ( bb_forums() ) : ?>

    <h2><?php _e(‘Forums’); ?></h2>

    <table id=”forumlist” cellspacing=”0″ cellspacing=”0″>

    <tr>

    <th><?php _e(‘Main Theme’); ?></th>

    <th><?php _e(‘Posts’); ?></th>

    <th><?php _e(‘Topics’); ?></th>

    <th><?php _e(‘Last Topic’); ?></th>

    <th><?php _e(‘Last Poster’); ?></th>

    <th><?php _e(‘Freshness’); ?></th>

    </tr>

    <?php while ( bb_forum() ) : ?>

    <?php if (bb_get_forum_is_category()) : ?>

    <tr<?php bb_forum_class(‘bb-category’); ?>>

    <td colspan=”3″><?php bb_forum_pad( ‘<div class=”nest”>’ ); ?>“><?php forum_name(); ?><?php forum_description( array( ‘before’ => ‘<small> – ‘, ‘after’ => ‘</small>’ ) ); ?><?php bb_forum_pad( ‘</div>’ ); ?></td>

    </tr>

    <?php continue; endif; ?>

    <tr<?php bb_forum_class(); ?>>

    <td><?php bb_forum_pad( ‘<div class=”nest”>’ ); ?>“><?php forum_name(); ?><?php forum_description( array( ‘before’ => ‘<small> – ‘, ‘after’ => ‘</small>’ ) ); ?><?php bb_forum_pad( ‘</div>’ ); ?></td>

    <td class=”num”><?php forum_topics(); ?></td>

    <td class=”num”><?php forum_posts(); ?></td>

    <td><?php bb_topic_labels(); ?> <big>“><?php forum_last_post_link(); ?></big><?php topic_page_links(); ?></td>

    <td class=”num”><?php forum_last_poster(); ?></td>

    <td class=”num”><?php forum_time(); ?></td>

    </tr>

    <?php endwhile; ?>

    </table>

    <?php endif; // bb_forums() ?>

    2) I’m using the “Bavatars” plug-in, but I need to be able to style the “avatar” section in the members page in order for it to be aesthetically pleasing and for it to function correctly. I believe that the HTML on this page is outputting from the “avatars-profile.php” file, however whenever I try to div it off like I did on every other page, I get an error and the page won’t load.

    Here’s the code:

    bb_get_header();

    ****Not in code <div id=”Whatever??”>

    if ( $message )

    echo ‘<div class=”notice”><p>’ . $message . ‘</p></div>’;

    echo bb_get_avatar( $user_id, 100 );

    ?>

    <form method=”post” action=”<?php profile_tab_link( $user_id, ‘avatar’ ); ?>” enctype=”multipart/form-data”>

    <input type=”file” name=”bavatar” id=”bavatar” />

    <input type=”submit” value=”Upload new avatar »” />

    </form>

    <form method=”post” action=”<?php profile_tab_link( $user_id, ‘avatar’ ); ?>”>

    <?php bb_nonce_field( ‘bavatar_delete-‘ . $user_id ); ?>

    <input type=”submit” id=”delete” class=”delete” name=”delete” value=”Delete” />

    </form>

    ***********Not in code </div???>

    The styling attributes that the “avatar” page needs are:

    width: 890px;

    padding: 30px;

    margin-top: -30px;

    Help would be greatly appreciated!

    Thanks,

    dd_massacre

    Oh, my page is http://www.myfinalheaven.org/forum.

    #88787

    In reply to: Plugins for 1.0.2

    chrishajer
    Participant

    That’s normally the job of a plugin, but this one is not working. You can try contacting the author of that plugin to see if it can be updated.

    I just installed this plugin on a trunk installation (so 1.0.2 or even 1.1-alpha) and the video gets embedded just fine:

    https://bbpress.org/plugins/topic/bbvideo/

    There is some weirdness because it looks like the plugin should have an admin page, but the link doesn’t work (that could be fixed if you needed it). But just pasting a youtube video URL into the post showed me an embedded video as expected.

    refueled
    Member

    Hello all,

    Today I am releasing two new bbPress themes:

    Thunderbolt:

    Preview

    Release Page

    Terra Firma Two:

    Preview

    Release Page

    I have also updated my older themes:

    Misty Morning

    Superbold

    Carrington

    Marked

    Please note, my themes have a new location:

    http://bbterminal.net/

    I hope to continue releasing bbPress themes on a regular basis.

    #88124
    mikkelsen
    Member

    I had the same problem. After I had transfered all my bbPress users over to wp_users, I just logged back into the bbPress adminpanel, went to WordPress integration settings and just clicked saved again.

    Then all the user roles was correct and updated when I refreshed the WordPress adminpanel.

    #87746

    Is there any update on the insanely small text?

    It appears (according to firebug) that the font size is set to 12px, but then it’s been made smaller by some later style. For me it’s currently looking like a 8 or 9px font size (which is incredibly difficult to read since we dropped the amount of space the text is in by almost 40% to 540px).

    The margins and spacings look a bit weird/forced as well, almost like it’s using the old version of the 960 grid.

    Also, as soon as the discussion includes more than 2 posts, 20-30% of the screen becomes useless whitespace.

    Anyway, I’m testing this on Firefox3.6, latest Chrome and Opera 10 on Windows 7 and vista – and my iPhone.

    Thanks,

    Kev

    P.S. The blog section’s a total disaster area also, good thing it’s not been updated in over 4 months now – otherwise people might look there for info!!! haha, don’t worry, thats not likely.

    #88409
    Rich Pedley
    Member

    Updated to 0.9.1

    profile page: can’t use anything but text or checkbox, so I used 2 checkboxes, but would have preferred select, or radio. (yes you can add a single radio button, but a single one is of no use!)

    utilised the query, thanks.

    decided that if number of deleted posts is greater than number of valid posts then they should be checked. Though it might be better to add in a bit of math there.. thoughts? validposts / 4 perhaps.

    also if spam posts are greater than 1 they get checked as well.

    But that part may actually be redundant because they are being checked anyway at that point, or do I have the flow wrong?

    Once they hit the required number of posts they the always trust flag is set.

    Commented the code, which is a first for me…

    and hopefully it still works.

    1 question – is there an uninstall hook to clear things from the database? I wouldn’t want to do it on deactivation – hate plugins that lose settings because of that.

    #84346
    Ryan Hellyer
    Participant

    Yes, but the following is quite literal:

    This page is a work in progress. Please come back later for updated information.

    I haven’t updated it for the new version yet since it’s still in beta. Those instructions won’t work at all with the current version.

    I’ll add a note about that to save confusing people.

    Because the repository is not updated currently, the newest release of xili New Post Notification is available here :

    https://plugins-svn.bbpress.org/xili-new-post-notification/tags/0.9.2/

    Via SVN in bbPress plugins part, xili new post notification plugin was updated this day (more than three hours ago) but the visitor interface is not yet updated. It seems that the rate is freezed and very low compared to wp plugins repository !

    Has somebody infos ?

    #87716
    qprints
    Member

    It’s great to see the site updated

    it’s also great to see _ck_ as well w/b :o)

    #87509
    mentletv
    Member

    Thanks Chris,

    This has resolved the issue. I’ve updated the reference to wp-blog-header.php with one for wp-load.php in my bb-config.php file as suggested.

    Hi!

    I installed bbpress with deep integration and it was humming along nicely. Then my host went through all the database user passwords and updated them, for security purposes. They had a script to change the .php files for the wordpress installs, but not for bbpress unfortunately.

    First I got “ERROR: Could not establish a database connection” on my bbpress install. I thought, no worries, I just need to update bb-config.php with the new password.

    Problem: I did just that, and it is still giving me the same error.

    Any chance there’s another file that also needs to be updated? Perhaps with the deep integration there’s a second place that I need to change?

    Thank you SO much in advance for your help!

    #87652

    In reply to: Forum permission

    zaerl
    Participant

    No admin interface, hasn’t been updated for over an year -> old

    No > 1.0 compatibility -> broken

    My plugin take code from the _ck_ one but it’s at another level of complexity.

    #86674

    In reply to: Continuing Topic Icons

    Alex Luft
    Participant

    @kevinjohngallagher I don’t mean to sound rude – apologies of I do – but I don’t understand your mindset…

    Just because no one has come out and asked for this plugin to be updated automatically translates to there being no demand for it? This board isn’t that frequently used as it is – so how can you assume that just b/c people haven’t taken the effort to register, post, and ask for the plugin – that there isn’t demand?

    And this is all while every other forum package out there includes a functioning feature provided by this plugin – with a proper back-end interface… (and please don’t tell me to go and use one of those “other” packages – I’m here for a reason).

    The point is, there is work to be done. With our “limited resources,” it’s obvious that we can’t make huge changes to bbPress itself – so why not allow and encourage those who are capable and willing to go ahead and rewrite/update plugins that haven’t been touched in over two years? It’s not like we’ll be making huge strides in bbPress core with those “limited resources.”

    Like I said, I don’t mean to be rude, I just simply don’t understand your frame of mind here.

    – Alex

Viewing 25 results - 1,551 through 1,575 (of 2,090 total)
Skip to toolbar