Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 56,251 through 56,275 (of 64,448 total)
  • Author
    Search Results
  • #66284

    I’m running alpha at the moment, just wondered, when you say it’s not ‘stable’ what do you mean exactly?

    It seems fairly stable to me from what I can tell…

    #66737

    In reply to: Sitemap generator

    chrishajer
    Participant

    I have not seen the author around in a while. I would say if it’s not your work, you should not upload it to the extend section. I didn’t see it there already. Of course, someone could look at this plugin and extend it. It’s GPL2 licensed.

    There was a problem with the plugin creating a site map when there are lots of posts; it slowed down posting. Maybe it could be fixed to allow creation of the sitemap via cron or via a GET request, rather than randomly when a post is marked favorite. There was also a problem with certain characters not being encoded in the URL if you’re not using permalinks.

    Lots of work could be done to extend and improve the plugin, then it could be released and posted to the bbPress extend/plugins section.

    #66650
    chrishajer
    Participant

    Turns out the main index.php WordPress template had been overwritten with a static page, and that was being served instead of templated content being served from the database. It had nothing to do with bbPress integration.

    #60390
    flywitness
    Member

    actually, the admin link only works if you login on the bbpress page.

    bummer

    #65980
    _ck_
    Participant

    This plugin is meant as a temporarily workaround until the bug can be fixed in WordPress – it will replace “anonymous” with the user login.

    Install it on the WordPress side:

    <?php
    /*
    Plugin Name: changes anonymous to member's login if display name missing (plugin for WordPress)
    */
    function no_anonymous_members($author) { // this is a WORDPRESS plugin, not bbPress
    global $comment;
    if (empty($comment->comment_author) && !empty($comment->user_id)) {$user=get_userdata($comment->user_id); $author=$user->user_login;}
    return $author;
    } add_filter('get_comment_author', 'no_anonymous_members');

    if ( !function_exists('get_userdata') ) :
    function get_userdata( $user_id ) {
    global $wpdb;

    $user_id = absint($user_id);
    if ( $user_id == 0 )
    return false;

    $user = wp_cache_get($user_id, 'users');

    if ( $user ) {
    if (empty($user->display_name)) {$user->display_name=$user->user_login;}
    return $user;
    }
    if ( !$user = $wpdb->get_row($wpdb->prepare("SELECT * FROM $wpdb->users WHERE ID = %d LIMIT 1", $user_id)) ) {
    return false;
    }
    _fill_user($user);
    if (empty($user->display_name)) {$user->display_name=$user->user_login;}
    return $user;
    }
    endif;
    ?>

    (The real answer of course is to insert the user_login when the comment is posted, however I cannot find a suitable hook in WordPress’s comment-template.php so I am doing it by completely replacing the get_userdata function in pluggable.php)

    #65979
    _ck_
    Participant

    I guess I can create some code to fix the display name issue in existing databases. Give me a few minutes.

    update: actually it’s as simple as this in phpMyAdmin:

    UPDATE wp_users SET display_name=user_login WHERE display_name=''

    or via a mini-plugin:

    <?php
    /*
    Plugin Name: Fix Anonymous Members
    */
    function fix_anonymous() {global $bbdb;
    $bbdb->query("UPDATE $bbdb->users SET display_name=user_login WHERE display_name='' ");
    } add_action('bb_init','fix_anonymous');
    ?>

    save as _fix-anonymous.php (with leading underscore)

    you only need to upload and run bbpress once with it loaded (no activation required) and then delete the plugin or it will slow down bbPress.

    I am now writing a WordPress plugin to fix this without having to duplicate all the names in the table which is a horrendous waste of space.

    #65978
    _ck_
    Participant

    Well we know what causes “anonymous” to show up, it’s because bbPress is not creating the display name for the user when the user registers on the bbPress side and then goes to use WordPress.

    The question is, why is this suddenly happening when bbPress is supposed to create it already. This might be a question for Sam – but I hope he can reproduce the problem.

    Did you add the above code to insert the display name?

    I hope I didn’t lead you wrong by implying you should try 2.6 because that will be incompatible with bbPress 0.9

    2.6 has compatibility with bbPress 1.0 alpha but a few plugins won’t work with the alpha yet (like bb-topic-views)

    Oh and the display name persists in 1.0 alpha and is on line 487 in pluggable. I’ve filed a trac report:

    https://trac.bbpress.org/ticket/922

    #66782

    it was just after installing bbpress for the first time

    #66780
    chrishajer
    Participant

    The intended URL is where you expect to access the forum on the internet. Maybe this would be a good place for it:

    http://affluentdiva.com/forums/

    The way you have the folders now, it would be this:

    http://affluentdiva.com/bbpress2008/bbpress/ which looks a little silly. You don’t need that bbpress2008 folder there. And maybe you don’t want the other folder to be called bbpress. What if you change forum software in the future? Better to use forum or forums instead.

    #66731
    chrishajer
    Participant

    I don’t think iframes work very will with bbPress. Are you trying to put the forum in an iframe?

    <frameset rows="100%,*" border="0" frameborder="no" framespacing="0">
    <frame name="site" src="http://hlvdubs.iamanerd.org.uk/forum" marginwidth="0" marginheight="0" noresize scrolling="auto">
    <noframes>
    <body bgcolor="#ffffff">

    </body>
    </noframes>
    </frameset>

     

    I think this is part or all of the problem. Don’t try to access bbPress from an iframe. You’ve got two different domains going on there.

    #66735

    In reply to: Sitemap generator

    chrishajer
    Participant

    There is a sitemap plugin for bbPress:

    http://boakes.org/download/bbpress_sitemap.txt

    This is old and I can’t find a link to it on the author’s site any more, but there it is.

    #3776

    After installing bbpress I was able to sign in to bbpress with my regular admin info but something has happened with my wordpress backend now that it does say I’m logged in but I cannot get to the admin area. Any suggestions on how I can resolve this issue without completely reinstalling both WP & BP

    #3775
    hails2008
    Member

    Hello

    I’ve uploaded the uncompress file to my home/XXXX/bbpress2008/bbpress

    and when it says go to your intented url – what is my intended url?

    New to this so please bare with me….thanks

    #66733
    chrishajer
    Participant

    Very nice integration of the theme.

    I noticed you are using WordPress 2.6. If someone logs in to WordPress or bbPress, are they logged in on the other (either bbPress or WordPress)? That is the level of integration most people are looking for, in addition to theme integration, and the latest word was that integration with WordPress 2.6 does not work. How did you do it?

    #60226
    chrishajer
    Participant

    You don’t really need a plugin to install Google Analytics in your bbPress forum. Just paste the code from Google Analytics right before the closing </body> tag in your theme’s footer.php. No plugin required. I never understood the need for Analytics plugins for WordPress either. Editing a template file is pretty basic.

    #66677
    chrishajer
    Participant

    OK, please let us know if you need more help.

    #65976
    mciarlo
    Member

    I couldn’t tell you, but I am using bbPress 0.9.0.2 and WordPress 2.5.1.

    I am going to update to 2.6 and see how it goes…

    #66686

    In reply to: bbPress 1.0 alpha

    lstelie
    Member

    Hello,

    A naïve question :

    I use another forum script and would like to prepare a migration to BBpress when BBpres is ready for real use

    If i integrate BBpress alpha 1.0 with my WP 2.6 (check, learn, but don’t put it in use yet by my uers) am I at risk to break something in my WP install (tables ?)

    So can I safely (for the WP part) integrate a BBpress alpha 1.0 with a WP 2.6 ?

    #66682

    In reply to: A few questions

    citizenkeith
    Participant
    #3773
    jbbrwcky
    Member

    Just integrated by BBPress install with my WordPress install. Thanks for the help on here too!

    http://www.theenglishguy.co.uk/bbpress/

    #3772
    jifop
    Member

    i have just installed bbpress and i have a problem the site is here http://www.hlvdubs.co.uk/forum

    the install worked fine, but it wont let me login and there is no theme!

    whats going on?

    #60225
    simontol
    Member

    Not working for me with bbpress 0.9.0.2.

    I’ve installed in my-plugins foolder, I can activate in plugins administration but I can’t see the analytics configuration page.

    #66676
    martinoshea
    Member

    Thanks chrishajer.

    That seems to have done the job and bbPress is now installed. But I do find that I am denied access to certain pages. I will see how this proceeds.

    #66685

    In reply to: bbPress 1.0 alpha

    _ck_
    Participant

    Because of the radical change in how topicmeta and bb_options are now stored, a few of my plugins will not work properly under 1.0 alpha until I figure out a work-around:

    My-Views (most/least views tracking, some statistics)

    mini-track

    all-settings <<– now updated to support 1.0

    (there may be others, tba)

    Also note there is a drop in meta db performance under 1.0 vs. 0.9 because of how forum meta is appended in multiple queries and that more than one index (as needed by design) cannot be used in mysql on the bb_meta table.

    There is also an issue of the meta table being checked on every page load to see if it needs to be upgraded – that part will probably be fixed in a later release.

    #66634
    chrishajer
    Participant

    Sorry, fresh out of ideas after that. I suspect that bbPress needs to be reinstalled after downgrading WordPress, but I don’t know why that failed for you.

Viewing 25 results - 56,251 through 56,275 (of 64,448 total)
Skip to toolbar