Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 60,676 through 60,700 (of 64,474 total)
  • Author
    Search Results
  • #59086
    Andrew
    Member

    I still have the cookiepath variable set… can I remove that?

    #59085
    Andrew
    Member

    Now I can’t log in to BBPress. Changing the config.php back.

    Is there something atypical about my install that is creating the problem. How can I just conform to the norm?

    #59084
    Trent Adams
    Member

    Darn copy and paste….;)

    Trent

    #59083
    Andrew
    Member

    I assume you mean….

    $bb->usercookie = ‘wordpressuser_full.hash.number’;

    $bb->passcookie = ‘wordpresspass_full.hash.number’;

    double quotes at end changed to single. Trying now.

    #2110
    jolaedana
    Member

    http://www.musemart.com

    I’ve recently launched a forum attached to my personal portfolio and blog as a resource and critique center for writers, artists, and designers. :) So far, it’s just myself, my husband, and a few friends, but if you’re interested in commenting on work or showing your own, you’re welcome to stop by and join up.

    Thanks to BBPress for making such a simple forum- I got this up and running with the info I’d gleaned about WP in less than a day, and skinned it in a grand total of two hours using the styles I’d already come up with for my WP templates.

    It’s bright, but we like it! Hope to see some of you there. :)

    #59082
    Trent Adams
    Member

    Try adding the following to your bbPress config.php:

    $bb->usercookie = 'wordpressuser_full.hash.number";
    $bb->passcookie = 'wordpresspass_full.hash.number";

    Trent

    #59118
    Trent Adams
    Member

    Try something like this:

    #profile-menu {
    list-style: none;
    position: absolute;
    left: 200 px;
    }

    Trent

    #2109

    Topic: Can we do includes?

    in forum Themes
    silverwing
    Member

    Is there a way to add an include in a bbpress theme? I want to add some content in the pages that will change, and I just want to change one file instead of multiple ones.

    Something like this <?php include (TEMPLATEPATH . '/featured.php'); ?> from my wordpress theme. But have featured.php in my bbpress theme folder.

    #59081
    Andrew
    Member

    I think I see the problem now. BBPress is setting a different MD5 hash than wordpress. This must have to do with the fact it is installed in the subdirectory. Why is my install generating the wrong hash…

    My config.php is set up as above. Ive pasted it below. I included the full URL coding where as you used only the http://www.xxxx.xxxx – I can’t imagine that makes a difference.

    $bb->wp_table_prefix = ‘wp_’; // WordPress table prefix. Example: ‘wp_’;

    $bb->wp_home = ‘http://www.nyquistcapital.com/&#8217;; // WordPress – Options->General: Blog address (URL) // Example: ‘http://example.com&#8217;

    $bb->wp_siteurl = ‘http://www.nyquistcapital.com/&#8217;; // WordPress – Options->General: WordPress address (URL) // Example: ‘http://example.com&#8217;

    $bb->cookiepath = ‘/’; // Added per BBPress Forum Suggestion to ensure WordPress user sharing


    wordpressuser_ed93838a3c2677b2a3d53669c26b039b

    Path: /

    Content:admin

    wordpresspass_ed93838a3c2677b2a3d53669c26b039b

    Path:/

    Content:<HASH>

    And for BBPress

    wordpressuser_34c5633735768bf923be82cd0042b16a

    Path: /

    Content:admin

    wordpresspass_34c5633735768bf923be82cd0042b16a

    Path:/

    Content:<HASH>

    #2108
    Inquirer
    Member

    The Profile Edit links are displaying off the right side of web page

    How doe the postion code need to be set to move the links back onto the web page?

    #profile-menu {

    list-style: none;

    position: absolute;

    right: 0;

    }

    #profile-menu li {

    font-size: 1.1em;

    background-color: #eee;

    padding: 4px 7px;

    display: inline;

    border-top: 3px double #9e9e9e;

    position: relative;

    top: -10px;

    }

    #profile-menu li.current {

    background-color: #ddd;

    border-top: 1px solid #9e9e9e;

    }

    #59080
    fel64
    Member

    Expected behaviour is that signing into one will sign you into the other.

    Can you please do the following:

    Clear your cookies.

    Log into wordpress and record what cookies are set, including domain and path (properties of each cookie).

    Clear your cookies again.

    Log into bb. Again record the cookies set. Are you logged into wp?

    Tell us the cookies set from each case.

    #59079
    Andrew
    Member

    I did the original install as Trent specified above. I also added in fel64’s suggestion. I didn’t see any changes in the behavior as a result.

    Let me reiterate. BBPress and WOrdpress are sharing a user database now. I can sign into BBPress using the name/pw combo of any existing WordPress user.

    What I expected though, is that a user already signed into WordPress would transition into BBPress (for the first time, as a new user) and automatically be logged in. Currently, they need to relogin using the same WordPress username and password.

    Which behavior should be expected? I am looking for a seamless addition of forums for my existing client base….

    Thanks for the great help.

    Trent Adams
    Member

    Right off the cuff, I would do the following until you have it installed correctly:

    1) Remove:

    $bb->WP_BB = true;
    require_once( 'public_html/wp-blog-header.php' );

    2) Change to false:

    $bb->mod_rewrite = false;

    Once you have bbPress installed and integrated with wordpress (logins), then play around with the permalinks and the including bbPRess functions with WP.

    Trent

    I have spent three hours trying to figure out what I’m doing – can someone tell me if this config.php is correct?

    I have placed xxx’s in place of password, etc..

    <?php

    $bb->WP_BB = true;

    require_once( ‘public_html/wp-blog-header.php’ );

    // ** MySQL settings ** //

    define(‘BBDB_NAME’, ‘xqyevao_wrdp1’); // The name of the database

    define(‘BBDB_USER’, ‘xqyevao_wrdp1’); // Your MySQL username

    define(‘BBDB_PASSWORD’, ‘xxxxxxxx’); // …and password

    define(‘BBDB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value

    // Change the prefix if you want to have multiple forums in a single database.

    $bb_table_prefix = ‘bb_’; // Only letters, numbers and underscores please!

    // The full URL of your bbPress install

    $bb->uri = ‘http://teachtheboss.com/forums/&#8217;;

    // What are you going to call me?

    $bb->name = ‘Teach The Boss Forums’;

    // This must be set before you run the install script.

    $bb->admin_email = ‘ronaldp423xxxxx.com’;

    // Set to true if you want pretty permalinks, set to ‘slugs’ if you want to use slug based pretty permalinks.

    $bb->mod_rewrite = true;

    // The number of topics that show on each page.

    $bb->page_topics = 30;

    // A user can edit a post for this many minutes after submitting.

    $bb->edit_lock = 60;

    // Your timezone offset. Example: -7 for Pacific Daylight Time.

    $bb->gmt_offset = -5;

    // Change this to localize bbPress. A corresponding MO file for the

    // chosen language must be installed to bb-includes/languages.

    // For example, install de.mo to bb-includes/languages and set BBLANG to ‘de’

    // to enable German language support.

    define(‘BBLANG’, ”);

    // Your Akismet Key. You do not need a key to run bbPress, but if you want to take advantage

    // of Akismet’s powerful spam blocking, you’ll need one. You can get an Akismet key at

    // http://wordpress.com/api-keys/

    $bb->akismet_key = ‘xxxxxxxx’; // Example: ‘0123456789ab’

    // The rest is only useful if you are integrating bbPress with WordPress.

    // If you’re not, just leave it as it is.

    $bb->wp_table_prefix = ‘wp_’; // WordPress table prefix. Example: ‘wp_’;

    $bb->wp_home = ‘http://teachtheboss.com&#8217;; // WordPress – Options->General: Blog address (URL) // Example: ‘http://example.com&#8217;

    $bb->wp_siteurl = ‘http://teachtheboss.com&#8217;; // WordPress – Options->General: WordPress address (URL) // Example: ‘http://example.com&#8217;

    /* Stop editing */

    if ( !defined(‘BBPATH’) )

    define(‘BBPATH’, dirname(__FILE__) . ‘/’ );

    require_once( BBPATH . ‘bb-settings.php’ );

    ?>

    #59078
    fel64
    Member

    You may have to add

    $bb->cookiepath = '/';

    to your config.php if it doesn’t work straight away.

    #59077
    Trent Adams
    Member

    If you have the same domain so it should be simple. Keep in mind that bbPress will use the WP users after doing this and both programs have to be installed in the same database:

    // The rest is only useful if you are integrating bbPress with WordPress.
    // If you're not, just leave the rest as it is.

    $bb->wp_table_prefix = 'wp_'; // WordPress table prefix. Example: 'wp_';
    $bb->wp_home = www.nyquistcapital.com'; // WordPress - Options->General: Blog address (URL) // No trailing slash. Example: 'http://example.com'
    $bb->wp_siteurl = 'www.nyquistcapital.com'; // WordPress - Options->General: WordPress address (URL) // No trailing slash. Example: 'http://example.com'

    Trent

    #59108
    Trent Adams
    Member

    The favorite topics is part of the core and available with every bbPress installation. You can also find plugins and templates at Pro Forums.

    Trent

    #2105
    Inquirer
    Member

    I just installed bbPress.

    Now, I need to learn how to customize the forum’s appearance.

    Apparently, a lot of customization done through plugins.

    I found the following:

    Using Plugins

    To use a plugin, simply create a directory in your main bbPress directory called my-plugins and put the plugin file in it. bbpress does not currently have a plugin activation/deactivation interface like WordPress’. Any .php file in your /my-plugins directory will be run.

    Looking for plugins? Try our plugin browser http://bbpress.org/plugins/

    I like adding the ‘This topic is one of your favorites’ feature.

    How would I find if this is an available plugin?

    If so how would I find where to download it?

    #59076
    Andrew
    Member
    #54760
    oledole
    Member

    Thanks! That fixed it.

    #54759
    fel64
    Member

    Did it not say what the fatal error was?

    In any case, at a hunch putting

    if( !function_exists('force_balance_tags') ) {

    in front of ck’s code, and

    }

    before the add_filter(... bit, could fix it. I don’t run it myself so this is a long shot.

    #54758
    oledole
    Member

    Looked like a nice tweek-plugin, but it produced a “fatal error” when I activated it. Looks like it has something to do with this suggested code:

    add this to a plugin

    function force_balance_tags($text) {return balanceTags($text, true);}

    add_filter(‘pre_post’, ‘force_balance_tags’);

    When I added this to the bbcode plugin it resulted in the same fatal error when activated…

    #59008
    Inquirer
    Member

    I dropped the bbPress tables in my database and did a reinstall.

    The installation went fine.

    I discovered my original installation falied because of a typo

    I had entered ‘http://mywebsite.com/forums/&#8217;;

    I should have entered ‘http://mywebsite.com/forum/&#8217;;

    On this install I didn’t want to integrate with the WordPress database.

    Now I need to learn how to customize the forum’s appearance.

    Is there a way to change the forum name within Administration or will I have to edit the config.php file and FTP it?

    Is a lot of customization done through plugins and php templates?

    I found this online.

    [The best way to start off is to create a new directory inside the root folder of the bbpress install called “my-templates”. Any php templates place in this folder with the same name as in “bb-templates” will override the original files. For example, if you modify front-page.php and upload it to “my-templates”, bbpress will pull the customized front-page.php file.]

    Fore instance I like adding the ‘This topic is one of your favorites’ feature.

    #59075
    fel64
    Member

    Should be. If they are on the same domain, it is certainly possible. In a small set of cases you will need to add two simple lines of code to your bbpress config.php. What URLs do you (want to) have bbpress and wp at? Tell us and we can tell you what code to add.

    #2104
Viewing 25 results - 60,676 through 60,700 (of 64,474 total)
Skip to toolbar