Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress'

Viewing 25 results - 20,851 through 20,875 (of 26,865 total)
  • Author
    Search Results
  • #70364
    crios
    Member

    I integrated 2.8 & 1.0.1 and it seems to be working beautifully.

    I created a walk through for myself (based off of the screencast), you can see it here. I thought I would post it here for anybody else that might want a set of typed instructions. Maybe this topic should be sticky or put a similar set of instructions on the documentation page?

    1. Install WP 2.8 on domain, in this case http://example.com (I’m going to skip the WP install. I know how to do this.)

    * database: exampledb

    2. Open wp-config.php in a text editor.

    3. Go to https://api.wordpress.org/secret-key/1.1/ and copy the provided keys (the entire text).

    4. Paste the copied keys into wp-config.php above the text “/* Stop editing */.”

    5. Save wp-config.php to web host.

    6. Install bbPress files into a subdirectory. In this case http://example.com/forum. (I’m going to skip the bbPress install. I know how to do this.)

    7. Fill in step 1 of bbPress setup.

    * database: exampledb (use same database as WP install.)

    8. Step 2 of the bbPress install.

    9. Check “Add integration settings.”

    10. Check “Add cookie integration settings.”

    11. Open wp-config.php again and copy and paste “AUTH_KEY” , “SECURE_AUTH_KEY” and “LOGGED_IN_KEY” (just the long string of letter, numbers and symbols in between the quotes) into the appropriate fields in the bbPress Step 2 page.

    12. Go to http://example.com/wp-admin/options.php (there should be a link in the ? section of the salt fields)

    13. Find the appropriate salts and copy and paste them into the appropriate fields in the bbPress Step 2 page.

    * If there is no secure_auth_salt leave it blank.

    14. Check “Add user database integration settings.”

    15. Look in wp-config.php again and copy the “table_prefix” into the appropriate field on the integration page. (in my case it was not just wp_ , it was wp_xxxxxx_ (the x being other numbers and letters.).)

    16. Click the save button and you should see “Your WordPress integration cookie and database settings have been successfully validated. etc…”

    17. Click the Step 3 button.

    18. Fill in the Site name: Example Forum.

    19. Check the URL (should be http://example.com/forum/).

    20. Select a Key Master (if integration was successful the WP admin should show up here and can be selected).

    21. Fill “First forum name” (First Forum).

    22. Click “Save.”

    23. Click “Complete Installation.”

    24. Go to the brand new forum.

    25. I was already logged in to WP so when I went to bbPress, again I was already logged in.

    26. Click on “Admin”

    * It shouldn’t work.

    27. Click “Log Out.”

    28. Log back in to bbPress as the admin.

    29. Click on “Admin.”

    30. You should be able to enter the Admin page of bbPress now.

    31. Go to “Settings” / “WordPress Integration.”

    32. Setup the “User Role Map”.

    * WP Admin: Keymaster

    * WP Editor: Moderator

    * Everybody else is a member.

    33. Click Save.

    34. Go to the WP install (http://example.com)

    35. Install bbPress Integration (WP Plugin): 1.0

    36. Activate the integration plugin.

    37. Go to “Settings” / “bbPress Integration.”

    38. Check the “bbPress URL.”

    39. Leave “plugins URL” alone.

    40. Check WordPress type.

    41. Click Save.

    42. Scroll down to “Manual Cookie Settings” and copy the code in the grey box.

    43. Open wp-config.php and paste the copied code above the text “/* Stop editing */.”

    44. Save wp-config.php to the web host.

    45. Voila everything should be set up!

    46. log in and log out of WP and bbPress and move back and forth between the two to make sure that the integration is working.

    #75891
    Marcomail
    Member

    i’d check in bbpress if a user is in a specific wordpress category or not

    #15265
    Marcomail
    Member

    if i use wp-blog-header.php for using a wordpress function, the forum will be more slow ?

    #15264

    Topic: BuddyBar in bbPress

    in forum Plugins

    BuddyBar in bbPress

    It requires “deep integration” which I know I will catch hell from _ck_ for requiring, but for anyone that’s integrating BuddyPress and bbPress, and wants to have their BuddyBar in their forums, this is my solution.

    Happy testing!

    #75881

    Won’t work. What would end up happening is your user tables would be out of alignment.

    What do you do when that user WANTS to register at your WordPress site then? Just curious…

    Best thing to do, is create a plugin on the bbPress side of things to add a usermeta value for that user that you can check on the WordPress side of things, and disallow access based on that usermeta value existing.

    #75883

    In reply to: Integration Woes

    Unless I misread this, all of your salt values are wrong. You shouldn’t need to generate your own hashes or salts, as these should be created in WordPress for you once you setup your keys.

    #15262

    Topic: Integration Woes

    in forum Installation
    jchildrose
    Member

    OK, I have sort of a weird problem that I am hoping I can get some help with.

    I have multiple WP sites integrated with each other – 1 install on the root domain, and numerous installs on subdomains.

    In order to integrate users and cookies to maintain a login valid across all the installs the Authentication Unique Keys section in my wp-config is set up like this:

    define (‘COOKIE_DOMAIN’, ‘.mydomain.com’);

    define(‘COOKIEPATH’, ‘/’);

    define(‘AUTH_KEY’, ‘mygeneratedkey’);

    define(‘SECURE_AUTH_KEY’, ‘mygeneratedkey’);

    define(‘LOGGED_IN_KEY’, ‘mygeneratedkey’);

    define(‘NONCE_KEY’, ‘mygeneratedkey’);

    $baseurl = ‘http://www.mydomain.com’;

    $cookiehash = md5($baseurl);

    define(‘COOKIEHASH’, $cookiehash);

    define (‘AUTH_SALT’,’AUTH_SALT’.COOKIEHASH);

    define (‘LOGGED_IN_SALT’, ‘LOGGED_IN_SALT’.COOKIEHASH);

    define (‘AUTH_COOKIE’, ‘AUTH_COOKIE’.COOKIEHASH);

    // define (‘SECURE_AUTH_COOKIE’, ‘SECURE_AUTH_COOKIE’.COOKIEHASH); // If you use connection SSL

    define (‘LOGGED_IN_COOKIE’,’LOGGED_IN_COOKIE’.COOKIEHASH);

    define (‘TEST_COOKIE’, ‘TEST_COOKIE’.COOKIEHASH);

    As a result, I can’t find the salts needed in wp-admin/options.php as they are not listed. I’ve tried using the same settings in bbpress as above in the bb_config file (see below), but no love. I’ve also tried changing them to BB_%WHATEVER% which doesn’t seem to work either.

    define (‘COOKIE_DOMAIN’, ‘.mydomain.com’);

    define(‘COOKIEPATH’, ‘/’);

    define( ‘BB_AUTH_KEY’, ‘mygeneratedkey’ );

    define( ‘BB_SECURE_AUTH_KEY’, ‘mygeneratedkey’ );

    define( ‘BB_LOGGED_IN_KEY’, ‘mygeneratedkey’ );

    define( ‘BB_NONCE_KEY’, ‘mygeneratedkey’ );

    $baseurl = ‘http://www.mydomain.com’;

    $cookiehash = md5($baseurl);

    define(‘COOKIEHASH’, $cookiehash);

    define (‘AUTH_SALT’,’AUTH_SALT’.COOKIEHASH);

    define (‘LOGGED_IN_SALT’, ‘LOGGED_IN_SALT’.COOKIEHASH);

    define (‘AUTH_COOKIE’, ‘AUTH_COOKIE’.COOKIEHASH);

    // define (‘SECURE_AUTH_COOKIE’, ‘SECURE_AUTH_COOKIE’.COOKIEHASH); // If you use connection SSL

    define (‘LOGGED_IN_COOKIE’,’LOGGED_IN_COOKIE’.COOKIEHASH);

    define (‘TEST_COOKIE’, ‘TEST_COOKIE’.COOKIEHASH);

    All of the users can login to bbpress using the same username and password as on the wp sites, but the cookie integration doesn’t work, and again – I cant find the correlating values in wordpress.

    Does anyone have any suggestions?

    #15260
    Driftless
    Member

    Hi –

    I want any user who I register on my WPMU site to automatically get the cookie-share-log-on-goodness that bbpress provides.

    HOWEVER!!!

    I do NOT want any user who registers at my bbpress site to get a WPMU account. I don’t even want them to get a “subscriber” account.

    Any ideas?

    #50397
    Croyd
    Member

    I have a site with a wordpress/bbpress integration using a modified Atahualpa/Kakumei theme. My wordpress is version 2.8.1 & my bbpress is version 0.9.0.5. and it all works fine.

    I want to upgrade to the latest version of bbpress( version 1.0.1 ) but when I tested it I get backslashes before any single or double quotes no matter where I’m at in bbpress. It happens in topic titles, topic contents, when putting in the name for the site etc..

    Both work fine with the integrated logins and cookies. The problem only comes after I’ve put my reference to wp-blog-header.php in the bb-config.php file.

    I could do the hack that was suggested earlier but the downfall to that is that you won’t be able to have backslashes at all in anything.

    I’m thinking maybe the problem is that bbpress is using wordpress’s apply_filters function instead of its own, but that is a guess.

    Anyone got any ideas?

    Oh and besides the bbpress-integration plugin in wordpress i’m not using anything else on the test I did.

    @toosalty & @navjotjsingh

    WordPress 2.8 integrates easily with bbPress 1.0

    I just wrote a post today : http://blog.ashfame.com/2009/07/integrate-bbpress-10-with-wordpress-28/

    I will also be writing a post on how to upgrade existing integrated installations (most probably tomorrow morning). Let me know if you are facing any issue, I will try to help.

    P.S. – No plugin is now needed for integration. ;)

    #15253

    Fistly excuse my english ….

    Hi, i have integrated bbpress inside my wordpress installing on the same database.

    The problem is that i have made all the integration except the user relation, so now i can logon like admin user on bbpress but i can’t change nothing :-( it seems to be a normal user

    Can i do manually (changing the database) to assign admin user as administrator ????

    #75858
    johnhiler
    Member

    You could do that with a third plugin for sure. I haven’t automated it because rebilling through Paypal is a pain… so I have someone manage it manually.

    I think WordPress MU has a plugin that does something similar. Maybe you could adapt that?

    #75784
    deadlyhifi
    Participant

    mmm, just noticed that cookies with _utma, _utmb etc. state they come from

    .MYWEBSITE.com

    whereas the “wordpress_logged_in_NUMBER” states it’s website as

    www.MYWEBSITE.com (without the http this forum is auto adding it)

    could the fact that it has www at the start be the issue?

    My test site, on a subdomain, shares the same source – but then because its a subdomain it doesn’t have the www at the start.

    thanks for your continued replies ck.

    #75782
    deadlyhifi
    Participant

    They definitely have a different name.

    wordpress_logged_in_TWOdifferentVALUES

    tried to do the clear cookies thing in a function but, even though it’s running correctly, the cookie reset is getting ignored. Can’t figure out why :(

    Navjot Singh
    Participant

    I also can’t login to both installs simultaneously. I am using WordPress 2.9 rare and BBPress 1.0.1 version. Please help.

    #15246
    Demen
    Member

    Here is what I have thus far. bbpress is integrated with WordPress, So login is synonymous on both. However, I would like users to only be able to register from WordPress. I know it is pretty easy to just change the register link on bbpress to that of the WordPress registration page, but I also want to drop bbpress’s capability to send an email on either “Registration Mail” & Approval Mail settings. It is no longer needed if the user registers on the WordPress page and both are pulling user info from the same table.

    Does this matter if I change the link to the WordPress registration page,and the settings are still available? And if so how would I go about disabling this?

    #15242
    DKB
    Participant

    Hi, when i click on a username it says:

    “Username not found. Go back to xxxx/forum”

    I have bbPress 1.01 and wordpress 2.8

    How can i solve this? Thanks in advance

    #75753
    johnhiler
    Member

    Wow… that’s incredibly aggressive given that 1.0 hasn’t had time to be field tested, and also the state of 1.0 plugins.

    Sam, can 0.9 be restored as an easily available option? It can be played down if you’d like – even something low key like the WordPress release archives would be great:

    https://wordpress.org/download/

    #75779
    _ck_
    Participant

    If the new cookie has a different name, you should not be having a problem because bbpress should not even be looking at the old cookie?

    You are getting a header error because you would have to put it at the very, very top of header.php before doctype – if that doesn’t work, you’d have to add it via a mini-plugin, put it into a file called function.php in your template folder

    add_action('bb_send_headers','delete_old_cookie');
    function delete_old_cookie() {
    setcookie('wordpress_logged_in_REPLACEDcabef','',time()-3600);
    }

    #75778
    deadlyhifi
    Participant

    Thanks _ck_. I’m sure it’s easy when you know how.

    The cookie now has a different name.

    my old cookies are:

    $bb->authcookie = ‘wordpress_REPLACEDcabef’;

    $bb->secure_auth_cookie = ‘wordpress_sec_REPLACEDcabef’;

    $bb->logged_in_cookie = ‘wordpress_logged_in_REPLACEDcabef’;

    I was messing with

    setcookie('wordpress_logged_in_REPLACEDcabef','',time()-3600)

    just placing in the head of my page but I get a headers already sent message.

    #75644
    ovizii
    Participant

    I guess the 1.0.1 update fixed it so far. still got two remaining issues:

    – the feed still shows every topic/post double

    – my key master still has (Inactive) after his name, refreshing sometimes shows him as (key master) but rarely although the integration works, wordpress realizes the user is a keymaster and logged in I can go to the admin part of wordpress and bbpress without hickups, but when viewing a key master’s psot, it still says: Inactive :-(

    clarklab
    Member

    Are new users created in WP left as inactive (no role) until they sign in? We saw a bunch of users marked as inactive, but plenty of users posting just fine.

    When I went into WordPress Integration Settings – User Role Map everything is set as it should be. Clicking ‘Save Changes’ (without actually making any changes) automatically switched all users marked inactive to member.

    We had someone report they were unable to login so I went to check the user’s account and that was when I found his inactive role along with dozens of other users.

    When trying to replicate it myself with new, test registrations any user I can create that shows up inactive is immediately switched to member on the first log in.

    The main reason I ask if because the number of inactive users seemed very high and simply clicking ‘Save Changes’ and having them all switch in unison seems a bit odd.

    #74435
    punktoronto
    Member

    Has this been solved? I’ve been trying to figure it out as well. Everything I’ve found is for wordpress-mu and I’m not sure what needs to be changed to use it with regular wordpress.

    I found this http://insecure.no/2009/01/wordpress-and-bbpress-nice-url-rewrite-for-nginx/ it sort of works. pretty permalinks work but any attached files such as the css sheet or jquery.js returns a 404 not found error. Any Ideas?

    # SEO friendly URLs for bbPress

    #

    location /forums/ {

    root /path/to/YOURDIRECTORY/public_html/forums;

    index index.php;

    if (!-e $request_filename) {

    rewrite ^/forums/topic/(.*)$ /forums/topic.php?q=$1 last;

    rewrite ^/forums/forum/(.*)$ /forums/forum.php?q=$1 last;

    rewrite ^/forums/profile/(.*)$ /forums/profile.php?q=$1 last;

    rewrite ^/forums/view/(.*)$ /forums/view.php?q=$1 last;

    rewrite ^/forums/tags/(.*)$ /forums/tags.php?q=$1 last;

    rewrite ^/forums/rss/(.*)$ /forums/rss.php?q=$1 last;

    rewrite ^/forums/bb-admin/ /forums/bb-admin/index.php last;

    rewrite ^/forums/ /forums/index.php last;

    break;

    }

    }

    #75769

    John,

    I do not have a WordPress install attached to bbpress. The upgrade went smoothly except for one error that said I already had forums. Other than that, everything seemed to work fine except for the registration. For registration, I am using the plugins “approve user registration”, “terms of service”, and “human test”, but I had deactivated all of these prior to upgrade and then again when testing the default theme.

    #75768
    johnhiler
    Member

    Ah ok.

    While we wait for someone to weigh in on this, quick obligatory question: are you using WordPress as well? If so, what version… and have you integrated signin?

Viewing 25 results - 20,851 through 20,875 (of 26,865 total)
Skip to toolbar