Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 57,426 through 57,450 (of 64,448 total)
  • Author
    Search Results
  • #64782
    joejamesx
    Member

    no members at my forum yet but its http://www.dellpcrepair.co.uk/forum/

    #64663
    mykes
    Member

    This stuff is frustrating as all hell. It seems so simple until it doesn’t work out of the box and you spend hours trying to figure it out. Fix these kinds of problems and you’re golden!

    Anyhow, just downloaded and installed the latest wordpress mu and bbpress today.

    wordpress in DocumentRoot, and bbpress in DocumentRoot/forums/

    Both in mysql 5.x database named wordpress.

    When installing bbpress, I did not enable wordpress integration.

    I followed this checklist:

    1. You are running latest versions of WordPress (2.5.1) and bbPress (0.9.0.2)

    2. You have matched SECRET_KEY in wp-config.php with BB_SECRET_KEY in bb-config.php

    3. You have matched WordPress “secret” database option with bbPress “secret” database setting

    4. You have setup compatible cookie domains and paths in config files (see instructions in bbPress admin)

    5. You are successfully sharing user tables from WordPress with bbPress

    Everything seems to be right.

    BIG FIRST PROBLEM is I setup the roles on the wordpress integration page so “admin” is “key master.” As soon as I turn on integration, my old key master is gone and admin can login but is NOT key master. Google is my friend, most of the time, and I found a query to do by hand to fix it. This should be automatic in the install process of bbpress or turn on of integration, no?

    So I’m able to login to wordpress. I login to bbpress. My user’s password is wiped out in wordpress. I can do lost password thingy in wordpress and restore the password. When I navigate to /forums/ and login as my user, the password in wordpress is wiped out again. Oddly, I can login as my user at bbpress over and over again, no problem.

    notes:

    1) my user is a user I created on wordpress, and he has admin privs and thus key master privs in bbpress. I see the admin link in bbpress when I login. But when I do login, wordpress won’t accept this user’s password anymore. I either have to keep loging into wordpress as admin and resetting the user’s password or go through the forgot password by email process. Changing the user’s password in bbpress has no effect on wordpress.

    2) The integration forum in admin is confusing as all hell. Or maybe the installation process is not well documented. Maybe a page on your site about how to install the two together and get the integration working would be good. For example, should bbpress and wordpress share the same database? Not clear. The integration page asks for both a site url and a blog url, what’s the difference?

    3) Did anyone try doing a fresh install of both as part of your Q/A before releasing a latest version of bbpress?

    4) If I can’t get the password problem resolved, bbpress is the one to go, not wordpress.

    5) I probably should post some of this in multiple threads, but I doubt there’s any notification feature that would e-mail me if/should anyone reply to my posts :)

    6) I want to give bbpress every opportunity to replace my existing 20K+ member / 1.6M post message board site.

    #3327
    _ck_
    Participant

    With the 0.9 release, and now six months after the first roundup, I figured it was time to take another look at the (completely unofficial) bbPress Top 100 list:

    http://bbshowcase.org/forums/view/top100

    While about 200 sites have gone missing from the previous list, I managed to find about 600 more to make up for it, so the list is now at just under 1500 (a 50% growth).

    If you register/login you can also see the sites that may have just missed the top 100, or see the whole deal via the top 1000:

    http://bbshowcase.org/forums/view/top1000

    Some really nice looking sites among the bunch. I enabled “snapshots” so you can mouse-over the their little logo and get a general preview. I hope to improve the list someday with the ability to vote on the design of any site to raise it higher in the list (or a separate list for top design).

    If I missed your site, be sure to let me know for the next update…

    mrhoratio
    Member

    How do I use bb_query to fetch all topics that were started within a given date range?

    Here’s an example found an example of a bb_query code on the bbPress blog:

    $topic_query = new BB_Query( ‘topic’,

    array(

    ‘topic_author’ => ‘mdawaffe’,

    ‘started’ => ‘2007-06’,

    ‘tag’ => ‘bbpress’,

    ‘order_by’ => ‘topic_start_time’

    )

    );

    $topic_query->results; // Here’s the array of topics the query returned.

    This shows how to get topics that where started on June 2007. But what if I wanted to get all topics that were started between June 2, 2007 10:30:49 PM and February 12, 2008 9:02:32 am?

    I think I may be missing something totally obvious. Any suggestions? I

    #64777
    lenen
    Member

    Did you replace the sample php file?

    #3320
    irr1449
    Member

    I know its more secure but I find my attach rate is MUCH higher if the user enters their own password rather than has a forum generate one for them.

    Does anyone know an easy way to do this, I mean I can just go in and hack it myself but I wasn’t sure if there was a mod or anything to allow this.

    #64776
    dangrey
    Member

    The config.php referred to is probably actually bb-config.php. That threw me at first.

    #64765
    od
    Member

    Thanks for the feedback edwinfoo. The history behind this suggestion is that I am a very active contributor on “Geni.com” forum (they use bbpress).

    The forum mob tends to end up in flamewars due to the moderators not being able recognize even simple “ad hominem” flame baits and step in in time. Threads gets hijacked and flamewars breaks loose across several threads and all the moderate contributors suffer as a consequence.

    There are some clever trollers creating sock-puppets and repeatedly throwing small baits on certain targeted users. When the targeted user eventually snaps, he is the one that unfairly gets blocked.

    I neither think a thread creator should be able to “edit” other contributors posts, only “flag” them as either “irrelevant” or “flamebait” and by that”hide” the text of the offensive/irrelevant post, not the fact that there is a post. Basically like putting a big fat stamp over it. The offender would then have to dispute the matter via PM with the thread owner or forum moderator.

    Further there could be a “3 flagged posts in 1 thread blocks offender automatically from further posts to that specific thread”

    #3325
    dynn73
    Member

    I try to install bbpress but no success..can someone help me to solve this problem?

    Here is the url : http://bbpress.addyourbid.com

    Thanks

    mrhoratio
    Member

    Is there a way to show a paginated list of front page stickies? In the default bbPress template file “front-page.php”, I found this code:

    <?php if ( $super_stickies ) : foreach ( $super_stickies as $topic ) : ?>

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

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

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

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

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

    </tr>

    <?php endforeach; endif; // $super_stickies ?>

    It display a list of front page stickies, but it doesn’t have any pagination if you have a lot of stickies. I tried adding this:

    <?php forum_pages(); ?>

    But it doens’t work.

    Any suggestions on getting this to paginate?

    #61391
    mrhoratio
    Member

    I just did some fiddling in the bbPress functions.php file located in the bb-includes directory. I may have found a possible fix:

    On line 167, look for this code:

    $q = 0;

    Then delete or comment out everything except for the semicolon at the end:

    ;

    This seems to make topics that are stuck to the front page appear in the forum as well.

    Warning: I’m not well-versed in php, so I’m not sure if this will break anything in bbPress. If there’s a more elegent solution, please post it.

    #64433

    In reply to: Categories in 0.901?

    mrhoratio
    Member

    I just did some fiddling in the bbPress functions.php file located in the bb-includes directory. I may have found a possible fix:

    On line 167, look for this code:

    $q['sticky'] = 0;

    Then delete or comment out everything except for the semicolon at the end:

    ;

    This seems to make topics that are stuck to the front page appear in the forum as well.

    Warning: I’m not well-versed in php, so I’m not sure if this will break anything in bbPress. If there’s a more elegent solution, please post it.

    #64432

    In reply to: Categories in 0.901?

    mrhoratio
    Member

    Ah, it looks like there is another thread about this problem:

    Stick to front removes topic from forum?

    However, there’s not solution yet. Strange.

    #64429

    In reply to: Categories in 0.901?

    mrhoratio
    Member

    Hey bobby, thanks! I didn’t notice the “Stick topic (to front)” link before.

    However, there is a bug. If you click the “to front” link, the topic appears as a Sticky on the Latest Discussions list, but it disappears from the forum it was originally assigned. Seems like it should show up in both places. I did a test where I made a forum with one post in it. I made it Sticky on the front page. On the front page of bbPress, it shows the number of topics as “1” in that forum. However when you forum title, it doesn’t display any topic. Instead it takes you to a New Topic form.

    #64427

    In reply to: Categories in 0.901?

    mrhoratio
    Member

    I agree. It’d be great to have categories, or at least the ability to allow moderators to assign editor “tags” to topics which only moderators can edit. For example, you could assign a topic the tag or category named “Front Page”. That way, you can create a bbPress template/theme that shows the Editor’s Picks.

    #64772
    bobbyh
    Member

    I reproduced this error with FF, so it must just be my server. I’ll try upgrading to the latest version of bbpress and see if this fixes the problem…

    #3323
    Tammy Hart
    Member

    I figured this out by accident after not finding much in the forums about it, so I thought I’d post it fresh.

    In wordpress, we use <?php bloginfo('template_url'); ?> to go straight to your template directory (i.e. “http://mysite.com/wp-content/themes/mytheme&#8221;).

    In bbPress, to go yout theme directory (i.e. “http://mysite.com/bb-templates/mytheme&#8221;), you use <?php bb_option('template_uri'); ?>

    #64771
    adaptiman
    Member

    Clarification – when bbadmin tries to login after integration, the response is that bbadmin does not exist. I think this is because bbadmin credentials created by the bbPress installation are not stored in the WPMU users table. Of course, it wouldn’t exist. But bbPress doesn’t copy over those credentials or look at both tables to authenticate.

    #3321
    adaptiman
    Member

    I’m using bbPress 0.902 and WPMU 1.3.3. Integrating the bbPress with the user database works, but then I can’t access the bbPress admin console anymore. Here’s what happens:

    1. install bbPress without integration and in the process create an admin account bbadmin.

    2. The bbadmin account works, I can access the bbPress admin screens, etc.

    3. Change the integration settings to point to the WPMU users table. I do NOT do the cookie integration as this is problematic with the new password hashing.

    4. bbPress immediately logs bbadmin out. I can login with WPMU user accounts, but none of them can access the bbPress admin console. More importantly, the bbadmin account can’t login anymore.

    I’ve replicated this problem 7 times.

    The bottom line is that I can’t use the db integration feature at all.

    Question – how can I integrate the WPMU users and still access the bbPress admin console?

    #64759

    In reply to: GMT Offset

    dangrey
    Member

    “bb_current_time is in the functions file inside bb-includes directory. But you probably should touch that otherwise when you update bbpress, it will break again. :)

    Tell me about it — I’ve already hacked another core file which has to be re-tweaked every upgrade…

    BTW isn’t this a bug really?

    #60766

    In reply to: PHPBB3 Converstion

    yazerty
    Member

    Thanks for the news :).

    But isn’t it a beta script to import phpbb3 to a bbpress ?

    #3318

    Topic: Login out

    in forum Troubleshooting
    #64758

    In reply to: GMT Offset

    scooter7978
    Member

    bb_current_time is in the functions file inside bb-includes directory. But you probably should touch that otherwise when you update bbpress, it will break again. :)

    The SQL I used was just an interval clause…i.e. if I was going to import my current forums I would use something like:

    SELECT ID, Body, DateCreated – interval ‘9 30’ hour_minute FROM current_forum_whatever

    This takes the date field and drops 9.5 hours off, coincidentally, my time zone.

    You could probably adapt this to an ‘update’ statement to change what’s already in your database, eg:

    UPDATE bb_topics SET DateCreated=(SELECT DateCreated – interval ‘9 30’ hour_minute);

    I haven’t tested it but it probably wouldn’t be too far wrong.

    #64715

    Having just read the thread over here, I went and rechecked that my WordPress “secret” setting as listed in /wp-admin/options.php matched the setting in my bbPress admin-stettings-wp-integration screen and found that somehow they no longer matched. My best guess is that in the database “update” with the 2.5.1 upgrade of WP, it regenerated the database secret, thus killing the integration.

    #60765

    In reply to: PHPBB3 Converstion

    Sam Bauers
    Participant

    Import/Export is being improved as part of a Google Summer of Code project. We will hopefully have some results from that to share by the end of it.

    The basic idea is to create export plugins for other forum software which can export to a standard format. Then we will have one importer to import that standard format into bbPress.

Viewing 25 results - 57,426 through 57,450 (of 64,448 total)
Skip to toolbar