Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 56,676 through 56,700 (of 64,063 total)
  • Author
    Search Results
  • #51735
    mciarlo
    Member

    How can this be done in bbPress 0.9.0.2?

    #52003
    cordoval
    Member

    After spending some days I found a clear well laid out solution here: https://bbpress.org/forums/topic/profile-user-specified-fields#post-2670

    #65301
    chrishajer
    Participant

    Does any of this help?

    https://bbpress.org/forums/topic/cookie-sharing-between-wp-and-bb

    I think since you’ve moved stuff around, you probably want to delete your cookies or try a new browser without any of the old cookies in it already.

    #63636
    italways
    Member

    sorry it is on my local test machine. furthermore, it happens when you try to delete the tag from one topic, you must be a admin user.

    The only thing special is that my bbpress is integrated with my wpmu, I logged in using my wpmu admin account (mapped to bbpress admin group already), when I try to delete the tag from one topic, the error occurs, but it is ok when I manage the tags on bbpress backend, I can delete any tag there.

    #63462
    timskii
    Member

    All the integration code assumes you start with a blog and want to add a forum. However, if you start with a forum, chances are the forum’s user database will be far larger than the blog. The technique below outlines how I did it. This is entirely at your own risk. I’ve not gone over the standard things, like shared secret keys: I’m assuming you’ve read the basic integration guides.

    0. You’ll need to be familiar with .htaccess, SQL at raw database level, and template hacks. If your level of expertise is “pressing buttons”, stop reading here. This is very easy to mess up, so make plenty of backups. Ideally test the whole conversion first, and probably prepare scripts to run if a lot of database changes are needed.

    1. Block public access to the blog and forum for all except your IP using .htaccess.

    2. In the database, rename wp_users and wp_usermeta. These won’t be used, but you will need them later to cross-reference old posts to new authors. I’m assuming a standard install that uses wp_ and bb_ as prefixes.

    3. Copy bb_users and bb_usermeta to wp_users and wp_usermeta respectively. Keep the original tables for now.

    4. Add the missing column via SQL: ALTER TABLE wp_users ADD user_activation_key varchar(60) NOT NULL default '';

    5. Delete the WordPress install, but keep the old database tables (and plugins and themes). Install WordPress in its former position. Use an entirely new user name as your new WordPress admin. (The purpose of deleting and then installing WordPress is to create a genuinely new admin user in the table. For me, this was faster than manually adding an admin user and making sure all the correct permissions were set. You mileage may vary.)

    6. How much extra work you need to do to your old WordPress tables depends on the number of authors that were active on WordPress: Using SQL, you’ll need to change all the old author IDs in wp_posts and wp_comments to match that author’s ID from the forum. It is possible there are other user references deep in the system, so be careful. I had little complexity to deal with. If your were the first to register for both your forum and blog, the important IDs may match perfectly already.

    7. Most WordPress templates use the user’s display_name. This is unfortunately, because BBPress tends to use user_login. The result is that most WordPress references to user names will appear blank. You’ll either need to populate the display_name column, or hack around with your WordPress templates so that they use user_login. Template call get_the_author_login() is perfect for authors, but for comment references I had to use get_usermeta($user_id,’user_login’) or comment_author_link() where $user_id was 0. Messy. Since the admin side of WordPress uses display_name anyway, it is probably a lot easier to populate that column.

    8. Your WordPress install should be now more-or-less working. Let’s return to the forum!

    9. It is very easy to accidentally destroy the forum Keymaster, locking yourself out of the forum before integration is complete. If this happens, edit the table bb_topicmeta by deleting the final few lines with meta_key starting “wp_”.

    10. On the forum admin, under WordPress Integration: Set the User role map such that Admin links to Keymaster and everyone else is a subscriber, and save. Add “wp_” under User database table prefix and save. Hit the User role map button again. Finally complete the cookie setting and save. The order is important – simply filling in all the boxes and saving can wipe out the old Keymaster access before the new one has been set up.

    11. In WordPress, check the user list. I found that some user types did not convert automatically – notably moderators. Hopefully 99% of users will have been automatically assigned as subscribers. If you use a lot of plugins, take care that nothing conflicts. For example two separate plugins trying to write user meta data using the same key name. You may also wish to test a dummy registration and profile change.

    12. Remove the old bb_users and bb_usermeta, and the copies of your original wp_users and wp_usermeta.

    13. Remove the .htaccess blocks, and celebrate your newly integrated setup.

    I’m now having fun trying to marry a second forum to the first WordPress-Forum pair. Everything is easy, until one tries to alter the admin permissions…

    #65296
    os0wski
    Member

    i just want all old entries and comments in wordpress bein changed to topics on bbpress

    is it possible mate?

    #65295
    os0wski
    Member

    ok I changed the absolute path to bbPress but

    when i klick migrate it still doesnt copy old entries to my bbpress!

    why?

    #65292
    chrishajer
    Participant

    Does this do what you’re looking for?

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

    #65290

    In reply to: Install problems

    Sam Bauers
    Participant

    What version of bbPress?

    Trunk is a bit broken.

    The last release (0.9.0.2) should be fine.

    #3457
    enquirer32
    Participant

    Hi there. I’ve just moved my whole installation directory for WordPress and BBPress. I thought I had followed all the directions and WordPress works fine. But when I go to the BBPress installation (A sub-directory of WP) it no longer automatically logs me on. I’ve edited any relevant config files. What do you think is the problem?

    #56492
    bobbyh
    Member

    Lateral, look at the top of this page. See where it says EXTEND? Click that and then search…

    I just did that for you, and here’s the plugin:

    * https://bbpress.org/plugins/topic/bb-ratings/

    #65225
    tdjcbe
    Member

    Thanks for this. It fixed our issue with the login cookies.

    #3456
    os0wski
    Member

    i want to integrate my wordpress with bbpress forum as when i write a post i automaticly add a topic on bbpress and comments are the same as posts (you see both comments and posts in both wordpress and bbpress)

    is it possible? does anyone know how to integrate bbpress in such way?

    cheers

    #65262
    kineda
    Member

    Try this:

    http://www.kineda.com/how-to-integrate-wordpress-and-bbpress-in-3-simple-steps/

    Be sure your cookie settings match in your config files.

    #65261
    codeoncrack
    Member

    Another update…

    When trying to login to bbPress, it logs me into WordPress, but not bbPress. So, the bbPress login and out features are setting correctly the WordPress session info, but not the bbPress session info.

    hernano
    Member

    My report is bogus:

    -the user_url has nothing to do with the issue, in fact it occurs with almost any .php part of bbpress:

    http://www.site.com/forums/register.php?http://www.google.com

    throws the warning message.

    -the warning of course is shown depending on the current php configuration regarding error reporting

    #3453
    hernano
    Member

    none of the scripts inside bb-templates should be +x

    otherwise users will be able to execute them and a path will be disclosed.

    example:

    http://www.site.com/forums/bb-templates/kakumei/register-success.php

    returns an error and a path is disclosed:

    Fatal error: Call to undefined function: bb_get_header() in /server/path/disclosed/forums/bb-templates/kakumei/register-success.php on line 1

    comment:

    I had to +x all my files in my hosting environment to make bbpress work; this directory and its content should not be +x’ed.

    (bbpress will still work if this directory is not +x’ed)

    this is primarily ‘my fault’ but since I think what I did (+x’ing everything to make bbpress work) could have been done by others, I’m just making this note here.

    #3452
    codeoncrack
    Member

    After integrating WordPress and bbPress, a single login works correctly, but logout does not work. When I click the logout link from bbPress or WordPress, it does not log me out of bbPress but does log me out of WordPress. Does anyone know why the bbPress logout would not be working?

    #65259
    guymed
    Member

    Sorry, saw it already. xD

    #3451
    guymed
    Member

    Hey guys! I am currently working on a plug-in that will let you use smilies, just like wordpress. Also activated the same way. I am looking through my WordPress.org files, and I found them, the smilies’ images, but not the code. I am new at this so I am gonna need some programming help. Hope it works soon!

    http://guymed.org/

    #65257

    In reply to: Getting A Host

    guymed
    Member

    Ok, I found a PHP host called bluehost. This topic is HALF solved.

    EDIT:

    How do I get my files to work as a bbPress?

    #65254

    In reply to: Getting A Host

    chrishajer
    Participant

    There are literally millions of hosts. I am not going to recommend one. You need one that meets these basic requirements:

    Requirements

    That’s about it. Read some web hosting forums, take the comments with a grain of salt, decide on your budget, then pull the trigger based on the information at hand.

    #3450

    Topic: Getting A Host

    in forum Installation
    guymed
    Member

    Hey guys, I am new at this “self hosted” stuff instead of online hosted. I want a bbPress for myself, but I don’t know where to look to find a host. I us Apache as my server, but need a host. Please help me! Plus I’m only a kid.

    #65095

    In reply to: Kineda.com

    Awesome site Kineda, looks very professional and I love how you could never tell that it’s a bbpress install – like djMotLive would be hard to imagine how much work you’ve put into it.

    What did you use for images in your posts? What is a custom hack created by yourself? or did you use a plugin?

    Thanks,

    Will

    #64973
    sepidol
    Member
Viewing 25 results - 56,676 through 56,700 (of 64,063 total)
Skip to toolbar