Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 56,201 through 56,225 (of 64,430 total)
  • Author
    Search Results
  • #3787
    extrakun
    Member

    Hi, I am using WP 2.6 and I am eagerly waiting to use bbpress with it. Any ETA?

    #66688

    In reply to: bbPress 1.0 alpha

    lstelie
    Member

    Thanks !!

    #66323
    csseur3
    Member

    And I think you are missing the people who will say “oh, we need a plugin for just that! I can’t imagine the others! “

    I have already twenty plugins activated, some of which, as memberlist, which does not change of code (or very little) and they can be integrated safely by default.

    In place of a plugin, a checkbox in the options natives would be better, no?

    As WordPress 2.7 perhaps we should integrate the most simple and the most popular plugins by default, no?

    I thought about it to ensure the development of bbPress and enable it to compete with others. And if there is more interested users = more visitors for the sites of the plugins creators on their “donate” link lol: p

    Please, think at the question^ ^ or create a “plugin integration poll” :p

    Bug fixes are good. New features, too. :)

    #3786
    flywitness
    Member

    i’m new to all this wordpress stuff so forgive me if this is too hackish.

    i installed wp2.6 and bbp1 alpha. they almost integrate. i had a problem getting the admin link to work when i had logged in via wordpress (no problem logging in via bbpress). on investigation i discovered wp login was setting cookies only for itself, whereas bbpress was setting cookies for itself and wordpress.

    my solution tells wordpress to be as polite as bbpress:

    insert the following into wp-config.php replacing {bbpath} with your bbpath:

    define(‘BB_ADMIN_COOKIE_PATH’, ‘/{bbpath}/bb-admin/’);

    define(‘BB_PLUGINS_COOKIE_PATH’, /{bbpath}/bb-plugins/’);

    define(‘BB_MYPLUGINS_COOKIE_PATH’, ‘/{bbpath}/my-plugins/’);

    open wp-includes/pluggable.php and find where the cookies are set – these lines:

    setcookie($auth_cookie_name, $auth_cookie, $expire, PLUGINS_COOKIE_PATH, COOKIE_DOMAIN, $secure);

    setcookie($auth_cookie_name, $auth_cookie, $expire, ADMIN_COOKIE_PATH, COOKIE_DOMAIN, $secure);

    insert the following immediatley after:

    setcookie($auth_cookie_name, $auth_cookie, $expire, BB_ADMIN_COOKIE_PATH, COOKIE_DOMAIN, $secure);

    setcookie($auth_cookie_name, $auth_cookie, $expire, BB_PLUGINS_COOKIE_PATH, COOKIE_DOMAIN, $secure);

    setcookie($auth_cookie_name, $auth_cookie, $expire, BB_MYPLUGINS_COOKIE_PATH, COOKIE_DOMAIN, $secure);

    now wordpress will set the same cookies as bbpress thus allowing full access averywhere.

    like i say, i’m fairly new to this so please correct me if i’m wrong or if this approach has security implications.

    _ck_
    Participant

    It really is that simple – just make HowToGeek’s code into a plugin and install swiftmailer:

    https://bbpress.org/forums/topic/trick-to-fix-some-email-problems-with-08x-plugins-on-09x#post-15776

    That reminds me to fix some of my plugins so they use bb_mail() instead of mail() directly.

    #66796
    _ck_
    Participant

    Private Forums has issues. I am uncertain if he is maintaining it anymore. Try my Hidden Forums instead.

    #66795
    Max
    Member

    I’m using Private Forums by Aditya Naik https://bbpress.org/plugins/topic/private-forums/

    If I deactivate the plugin, the listing on front page doesn’t change.

    #65104

    In reply to: Kineda.com

    thion
    Member

    Sweet Spirits! Now that’s the power of bbPress!

    #66038

    IT IS WORKING!!!!! Thanks for all your help!

    #65103

    In reply to: Kineda.com

    Krystian
    Member

    Well, like everybody said, you have done a great site. I have couple of days trying to show the WP recent posts list on bbPress and I haven’t done it. I would like a clue from the experts. Thanks.

    GOD bless…

    Krystian

    #54697
    Krystian
    Member

    ok, this plugin doesnt work with bbpress 0.9.0.2

    if somebody know how to show the WP recent posts on BBPress please let me know.

    thanks

    Krystian

    chrishajer
    Participant

    I don’t know about a complete solution, but I’ve been able to get this one working.

    Email Authentication Issue

    If it becomes a large enough issue, I imagine someone will create a plugin for it. Until then, this is a work around.

    Integrating something like this does not affect WordPress integration as far as I know. It’s just the email function. I imagine WordPress would have the same issue sending out emails unless you use a plugin like this there as well.

    chrissydunno
    Member

    has anyone seen a complete solution for this issue? many hosts do not allow php mail() function because it doesn’t support smtp authentication

    i’ve seen several posts about swiftmailer, phpmailer alternatives, but none offer a step by step instructions?

    interested in modifying files only from the latest verion bbpress-0.9.0.2.zip

    also, are any of these solutions integrated with wordpress? or when you use them you lose the bbpress user = wp user integration?

    any kind of complete solution would be appreciated by many

    #3784
    csseur3
    Member

    Hello,

    in the actual trunk, there is a bug with the new plugin sort. When i want to activate a plugin, i have this:

    Warning: file(4) [function.file]: failed to open stream: No such file or directory in /home/bbpress/bb-admin/admin-functions.php on line 989

    Warning: implode() [function.implode]: Invalid arguments passed in /home/bbpress/bb-admin/admin-functions.php on line 989

    Warning: Cannot modify header information – headers already sent by (output started at /home/bbpress/bb-admin/admin-functions.php:989) in /home/bbpress/bb-includes/pluggable.php on line 213

    Warning: Cannot modify header information – headers already sent by (output started at /home/bbpress/bb-admin/admin-functions.php:989) in /home/bbpress/bb-includes/pluggable.php on line 213

    bye,

    Fred

    #66037
    mytriniphone
    Member

    ok so what would be the best way to upgrade?

    thanks in advance

    Aaron

    #66036

    I now have a good working intgration between WordPress 2.6 and bbPress 1.0.

    So… errrm… YAY!

    #66035

    ah! ok, thanks

    #64023
    chrishajer
    Participant

    Instead of this WordPress function:

    <?php wp_register(); ?> 

    You would have a link to bb-login.php. Then bb-login handles the whole thing. In the login form, you would add that hidden form field to redirect then after login, as explained here.

    https://bbpress.org/forums/topic/heres-a-trick-to-redirect-user-back-to-topic-after-login#post-14268

    #64022
    mattbaehr
    Member

    How do I change the reg links? In my theme, here is the reg code:

    <li id="meta" class="widget">

    <h2><?php _e('Members') ?></h2>

    <ul>

    <?php wp_register(); ?>

    <li><?php wp_loginout(); ?></li>

    <?php wp_meta(); ?>

    </ul>

    </li>

    What would I do to get it to redirect to the bbpress registration page?

    Max
    Member

    Hello,

    I’m testing bbpress since 2 months and today I recognized the problem, that the forum list on frontpage differs from logged in view to logged out view.

    I have only one forum for moderators, all other forums are open to all, but on the list in logged out view are 3 forums and in logged in view there are all 5 (6) forums.

    If I change the order of the forums, then the list on front page behaves strange and shows less forums than before.

    I have 2 screenshots:

    http://forum.max-fun.de/temp/forum1.jpg – logged in

    http://forum.max-fun.de/temp/forum2.jpg – logged out

    #66288
    chrishajer
    Participant

    I agree on the search. It’s too “in your face now.” I think it should have been in the template files and commented out. People could uncomment it to get the functionality. We’ll never be happy. At least with it there now, people can see it, remove it or style it however they want. This is probably better than there being nothing in the template at all before. That’s typically how WordPress themes are: they have a bunch of useless cr*p in them that I just remove or comment out. It’s easier to remove or modify something that you can see than trying to figure out how to add something you don’t know exists.

    Not sure yet on the bb_meta table. I haven’t looked at the DB schema yet.

    #66792

    In reply to: Theme directory

    thion
    Member

    http://bbshowcase.org/ ;)

    Besides – there’s no point to make a theme directory if there are no themes. Not many people are doing layouts for bbPress and if they’re doing, then it’s really hard work – I know something about it as I’m making “Halloween Evening” theme for bbPress right now…

    #66287
    _ck_
    Participant

    They kinda went overboard with the search. I pointed out there was no link to search so they put in this big honking search box at the top of the page, creating a bunch of useless whitespace around it.

    I asked for meta tables on the forums and instead they convert and consolidated everything into one heaping bb_meta table, breaking some plugins and increasing queries.

    I need to learn to stop making requests. LOL

    #66286
    chrishajer
    Participant

    I just installed r1637 as a test. Installation went well. I can’t believe they added the search by default!

    I will test a little more and post issues to trac.

    #64021
    chrishajer
    Participant

    Could you do this (hidden form field named “re” with the value of the URL to redirect to after submitting the form):

    https://bbpress.org/forums/topic/heres-a-trick-to-redirect-user-back-to-topic-after-login#post-14268

Viewing 25 results - 56,201 through 56,225 (of 64,430 total)
Skip to toolbar