Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\'

Viewing 25 results - 20,026 through 20,050 (of 26,846 total)
  • Author
    Search Results
  • #79819
    jivago
    Member

    Hello, I’ve had the same problem today with a fresh installation of bbPress and WordPress.

    I found the solution changing the root nicname, not called admin.

    The nicname of bbpress was not like in wordpress despite having given correctly in the installation.

    #79804
    chrishajer
    Participant

    The constants have different names in wp-config.php and bb-config.php. Just copy and paste the VALUES not the whole line.

    bb-config.php:

    define( 'BBDB_NAME', '123456789' );
    define( 'BBDB_USER', '987654321' );
    define( 'BBDB_PASSWORD', 'goodpassword' );
    define( 'BBDB_HOST', 'localhost or something else' );

    wp-config.php:

    define('DB_NAME', '123456789');
    define('DB_USER', '987654321');
    define('DB_PASSWORD', 'goodpassword');
    define('DB_HOST', 'localhost or something else');

    For bbPress, the constants are name BBDB_ and for WordPress they’re just DB_. You can copy and paste the values, but make sure you don’t change the names from BBDB_ in your bb-config.php.

    #79760

    In reply to: WordPress Integration

    amylmc
    Member

    I’m struggling with a similar issue. In wp-config.php file, the lines only go through 32 and the below aren’t anywhere in there.

    define(‘AUTH_KEY’, ‘put your unique phrase here’);

    define(‘SECURE_AUTH_KEY’, ‘put your unique phrase here’);

    define(‘LOGGED_IN_KEY’, ‘put your unique phrase here’);

    define(‘NONCE_KEY’, ‘put your unique phrase here’);

    I’m trying to follow the instructions on this particular thread but I do not have lines 55-61 as suggested below.

    Open wp-config line replace your new keys with the one from that link. (lines 55-61)

    Does this mean my wordpress site is not set up for users to login?

    Where do I go from here?

    Thank you!

    #31891
    Mark
    Member

    I’ve tried and tried, but I can’t seem to get my wp_enqueue styles or scripts to fire from within bbpress.

    Deep integration is done via wp-load.php, the header and footers are working fine and my functions.php from the wordpress side is being loaded (since my functions in the footer are running fine). But nothing that I’ve enqueued, script or styles, is working.

    I’ve tried firing them directly (from within either functions.php), originally they were hooked into wp_print_styles and wp_print_scripts respectively. I’ve tried hooking into template_redirect and init. Neither fires.

    Any ideas?

    #79800
    gerikg
    Member

    should be your wordpress site plus the folder name mysite.com/forum

    #79795
    gerikg
    Member

    In WordPress the folders are wp-admin, wp-content, and wp-includes. You should add a folder called forums or forum and upload everything inside of “bbpress” folder you downloaded. Ultimately you will have in the forum or forums folder bb-admin, bb-includes, etc etc. In WordPress you will now have forums (or forum), wp-admin, wp-content, and wp-includes

    #79794
    amylmc
    Member

    I’m very new at this. I’m unclear where specifically to put the bbpress folder so that it will properly interface as an addition to my wordpress blog. Can you please advise in which directory the bbpress folder should sit?

    thank you.

    #79793

    They should be the ones that you use for the database connection for WordPress, yes. If you need to double-check them, look at the wp-config.php and copy them from there.

    #31887
    ibexy
    Participant

    First I had problem realising bbpress was not just a plugin. I dont have to install it in the plugin directory. The installation instructions here did not specify that. It just said “Upload the uncompressed files to your server”. Anyway that is sorted now – I think. I uploaded the bbpress folder and renamed it ‘forums’ to the root of my wordpress installation.

    I tried to install. The first step is asking me for database name, user, and password. Is this for my existing wordpress installation? I assumed so and supplied these details but am getting this error msg:

    There was a problem connecting to the database you specified.

    Please check the settings, then try again.

    #79775
    johnhiler
    Member

    There are a bunch, but two come to mind:

    Superann wrote a very popular plugin which integrates bbPress 0.9 with WordPress 2.6+:

    * https://bbpress.org/forums/topic/bayanimecom-wp26-and-bbpress-09-complete-cookie-integration

    * https://wordpress.org/extend/plugins/wordpress-26-and-bbpress-09-integration/

    And ipstenu has contributed a lot to the community as well:

    * https://bbpress.org/plugins/profile/ipstenu

    * http://ipstenu.org/resume/

    #31884
    Mark-k
    Participant

    The problem seems to be that wordpress adds slashes to the input in its initialization, and them comes bbpress and adds slashes once again, and since the code assumes that slashes were added only once, stange things happen.

    solution that work for me: in bb-settings.php change

    // Sanitise external input

    $_GET = bb_global_sanitize( $_GET );

    $_POST = bb_global_sanitize( $_POST );

    $_COOKIE = bb_global_sanitize( $_COOKIE, false );

    $_SERVER = bb_global_sanitize( $_SERVER );

    to

    if ( !defined( 'ABSPATH' ) ) { // no need to sanitize if wp had done it

    // Sanitise external input

    $_GET = bb_global_sanitize( $_GET );

    $_POST = bb_global_sanitize( $_POST );

    $_COOKIE = bb_global_sanitize( $_COOKIE, false );

    $_SERVER = bb_global_sanitize( $_SERVER );

    }

    #79759

    In reply to: WordPress Integration

    I am reading your email right now. You just sent me the mail yesterday buddy & I thought that you have been sending me emails and somehow I missed all of them.

    #79758

    In reply to: WordPress Integration

    gerikg
    Member

    email me. my user name at gmail dot com

    #79757

    In reply to: WordPress Integration

    c4central
    Member

    None of my wordpress logins can log in to bbpress.

    gerikg, are you for hire? If I give you the credentials to login and change this stuff on my site, will you do it?

    I cannot make this work, and to say it is frustrating is putting it lightly.

    #79756

    In reply to: WordPress Integration

    c4central
    Member

    Okay…I did everything…it doesn’t work.

    I cleared my cache and everything, and when I try to login to bbpress is says user “admin” does not exist.

    I can log in to wordpress just fine.

    I should also note that when I tried to execute step 4:

    4. Get the information from the plugin and put it in line 20 in wp-config and line 13 in bb-config. (if you’re using WPMU take out the HASH line when you put it in bb-config)

    that when I put the information in the bb-config file (at the bottom) I got all sorts of errors in the header of bbpress until I removed that define cookie line.

    Any help?

    #79755

    In reply to: WordPress Integration

    gerikg
    Member

    put all 8

    #79754

    In reply to: WordPress Integration

    c4central
    Member

    Okay, I did that. On the bb-config do I just put in the four keys, or do I put in 8? Like wp-config it only has four to begin with.

    #79753

    In reply to: WordPress Integration

    gerikg
    Member
    define('AUTH_KEY', 'put your unique phrase here');
    define('SECURE_AUTH_KEY', 'put your unique phrase here');
    define('LOGGED_IN_KEY', 'put your unique phrase here');
    define('NONCE_KEY', 'put your unique phrase here');

    replace those with the 8 keys

    you do the same in bb-config.php

    and add “BB_”

    define('BB_AUTH_KEY', 'put your unique phrase here');

    #79752

    In reply to: WordPress Integration

    c4central
    Member

    gerikg, I only have four keys in my wp-config.php file. Plus, I can’t tell what line everything is on because I am using wordpad…It puts EVERYTHING on just a couple of lines. Are you telling me I should add those lines in?

    #79751

    In reply to: WordPress Integration

    gerikg
    Member

    kaz email me my user name at gmail dot com

    c4central replace the four keys with the 8 keys from this link: https://api.wordpress.org/secret-key/1.1/salt

    and I don’t understand “the wordpress admin should be bbpress admin, correct?”

    #79750

    In reply to: WordPress Integration

    kaz1844
    Member

    hey gerikg – Yes, I’ve cleared cache/cookies with each attempt, and tried from multiple machines/browsers –

    #79749

    In reply to: WordPress Integration

    c4central
    Member

    Also, I can only find four keys in my wp-config.php file, I cannot find any of the “salt” keys.

    Does that matter?

    #79748

    In reply to: WordPress Integration

    c4central
    Member

    Also, when you say do not use any www are you referring to when I am entering the settings into bbpress or wordpress, or just when obtaining those keys?

    #79747

    In reply to: WordPress Integration

    c4central
    Member

    Just to make sure I am doing this right, the wordpress admin should be bbpress admin, correct? Everything else I am going to make a member of bbpress.

    I am going to try this now.

    Thanks!

    #79746

    In reply to: WordPress Integration

    gerikg
    Member

    kaz1844, did you clear you cache & cookies…

Viewing 25 results - 20,026 through 20,050 (of 26,846 total)
Skip to toolbar