Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 56,701 through 56,725 (of 64,431 total)
  • Author
    Search Results
  • #65227
    matjack1
    Member

    thank you!!

    works also for me! :-P

    #65881
    750284
    Inactive

    Thanks… that worked.

    Of course, after that I decided I wanted to add a field.

    I found this plug-in which you can also use to remove fields by actually modifying the profile fields, which worked equally well, plus allowed me to add a few fields.

    https://bbpress.org/forums/topic/plugin-allow-additional-or-custom-profile-fields?replies=8

    #3625
    parthatel
    Member

    I would like to edit the design and text of when you log in to bbPress, which says “Welcome, username! Logout.” Where do I edit this? Thanks.

    #65880
    chrishajer
    Participant
    #3624
    750284
    Inactive

    How do I remove some of the fields that are on the registration form? I’m using bbPress for a support forum and it doesn’t make sense to ask people things like their occupation and interests.

    I don’t really care if there’s not a plugin to do it (although that’d be nice), but I just can’t find where the profile_info_keys are so that I can edit them.

    #65869
    _ck_
    Participant

    Okay, some bbPress users may be able to get it to work with WordPress 2.6 by adding to your wp-config.php

    @define('ADMIN_COOKIE_PATH', '/blog/wp-admin');

    where “blog” is your blog’s actual path. If it’s in the webroot, just take out “blog” entirely and leave '/wp-admin'

    #65867
    _ck_
    Participant

    We might have to sit tight for a 0.9.1 release or something like that.

    I figured out a work-around to get into admin area on WP 2.6 but this will “knock out” your bbPress login as you switch back and forth:

    https://wordpress.org/support/topic/188964/page/2?replies=41#post-803992

    #65865
    Erunafailaro
    Member

    So what next?

    Is this an issue of configuring wp 2.6 and bbpress 0.9.0.2 correctly to fix this problem?

    Or is a software-update necessary?

    #65864
    _ck_
    Participant

    I wonder if a newer bbPress build will be required which can be taken from trac (or via svn).

    Let me tinker a bit and see if they changed cookie methods (yet again, sigh)

    CONFIRMED: WP 2.6 breaks cookie sync

    and I get a endless-loop login by WP 2.6

    Many people seem to confirm similar cookie problems:

    https://wordpress.org/support/topic/188964

    https://wordpress.org/support/topic/188870

    #3622
    #65832
    737705
    Inactive

    Yeah I’ve tried what you’ve tried there with the re-directs and yep, it just dies.

    But no meta-redirects are used in my sites at all. For experimentation I tried the domain with two different domain bindings, multiple domain bindings. But no difference.

    I tried an older version of bbpress, same problem. I installed bbpress fresh into a different domain, same problem.

    I noticed this guy here had a similar prob a while back:

    Forum and topic pages redirects to page 1

    But never said how he solved it, I might join up to his forum and ask him….

    But yes this is driving me crazy…on a plus note when I finally fix it I can fresh install bbpress in about two minutes ;-)

    Any other suggestions from folk greatly appreciated. And thanks for ongoing help Chris.

    #65844
    744478
    Inactive

    Well, wasn’t able to wait anymore. Users were complaining. I removed bbpress but thanks anyways.

    #65768
    hinch
    Member

    I hadn’t read the guide on merging with wordpress – I am building it into a CMS built for a client.

    I had already adjusted pluggable.php instead of simply editing bb-config and adding the cookiepath, d’oh!

    I actually have a working solution now. Instead of ussing about with automatic login the main website can generate a cookie that BBpress likes. I did have to modify wp_validate_auth_cookie and wp_generate_auth_cookie to include my own hash and adjust the config as pointed out above but otherwise everything is unmodified… so far!

    #65827
    737705
    Inactive

    Mod_rewrite doesn’t work on IIS without third party software and I think they are all a little buggy on IIS7.

    Annoying but true, so this is just using Bbpress with the normal query string setting.

    I will try an older version of bbpress later today just to see what happens.

    #65784
    chrishajer
    Participant
    #50096
    chrishajer
    Participant

    You need to add this to the top of your wp-config.php right after <?php:

    require_once('/path/to/bbpress/bb-config.php');

    I would use the full server path to the bb-config.php file, not a relative path like ./bbpress/bb-config.php (rumor is that full paths work better) and not a URL like http://www.example.com/bbpress/bb-config.php (URLs won’t work at all here).

    That’s it, just one step. Good luck.

    #65825
    chrishajer
    Participant

    Older versions are available. Pick your release from here:

    https://trac.bbpress.org/browser/tags

    #65847
    chrishajer
    Participant

    I think you want the Hidden Forums plugin:

    https://bbpress.org/plugins/topic/hidden-forums/

    #65849
    chrishajer
    Participant

    Can you past that code into something like pastebin or pastie? The formatting is lost displaying it here.

    Thanks.

    http://pastebin.com/

    http://pastie.org/

    parthatel
    Member

    ok, so I added require_once('path/to/bbpress/bb-config.php'); to my wp-config.php file. I then added the bbpress discussions code:

    <table id="latest">

    <tr>

    <th><?php _e(‘Movie’); ?> — <?php new_topic(); ?></th>

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

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

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

    </tr>

    <?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 ?>

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

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

    <td><?php bb_topic_labels(); ?> “><?php topic_title(); ?></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; // $topics ?>

    </table>

    I added that code to my index.php file in my wordpress theme and this is what I get as the output in the browser:

    <table id="latest">

    <tr>

    <th>Movie — Add New »

    </th>

    <th>Posts</th>

    <th>Last Poster</th>

    <th>Freshness</th>

    </tr>

    </table>

    Obviously, there is something wrong. Does anyone know what?

    #3618
    biodrama
    Member

    Is it possible to create a password protected forum with BBPress? If so, what is the easiest way?

    #50095
    parthatel
    Member

    ok, so what exactly are the steps to load bbpress into wordpress?

    #65824
    737705
    Inactive

    Well the plot thickens…..

    I had a look at your suggestions and there doesn’t appear to be anything inputted wrong.

    So as an experiment I did a clean install of bbpress on my server with no mention of a WP integration and a clean database and exactly the same thing happens…..

    Any ideas what I can try to stop this? This is pretty weird….

    Is it possible to download older versions of Bbpress to test those….?

    #65783
    hyperhookup
    Member

    I managed to find this in the forums here but I don’t the query string I need to make inorder to create a new user and I changed my password in the beginning so I don’t even know if it applys. Any suggestions?

    Edit: Here is the link

    https://bbpress.org/forums/topic/recover-my-admin-password

    #65823
    chrishajer
    Participant

    Wow, that most certainly is a problem.

    Two thoughts.

    1. If I disable “meta redirects” in FF with the web developer toolbar, it does not keep redirecting, it just dies. Are you trying to redirect people from the bbPress profile page to the WordPress profile page, and somehow that is typed wrong? Like in journal/messageboard/profile.php there is a redirect that sends the browser to WordPress journal/wp-admin/profile.php and it’s not working for some reason?

    2. There is some weird test cookie stuff being sent, although I doubt it has any effect on this problem. Never know though.

    wordpress_test_cookie
    WP+Cookie+check
    www.louisecooper.com
    /journal/

     

    I suspect it’s something with a refresh bouncing the user back and forth.

Viewing 25 results - 56,701 through 56,725 (of 64,431 total)
Skip to toolbar