Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 6,576 through 6,600 (of 7,561 total)
  • Author
    Search Results
  • #47711
    Matt Kern
    Participant

    I just checked what bbpress I was using when I was having success during the beta stage and it was the alpha 6 version.

    Should I still be using this version?

    Why is no one else seeming to have this problem?

    #47709
    Marcin Biegun
    Participant

    wpmu 2.7.1

    subdomain install

    i started with this version of wpmu

    wpmu seems to work fine now and before, it just slowed down extremally without visible reason (previous server was faster but stats shows that this one should be more then enough)

    buddypress 1.0

    upgraded from some beta version (rc2?)

    many plugins but as I said it shouldn’t be a problem because before moving it wasn’t

    i use customized theme, but again – it’s the same ad before moving to new server

    i’m running bbpress (1.06),

    errors – many slow queries connected with firestats, tdomf, getting wp_options table and so on

    #47705
    Jeff Sayre
    Participant

    @Svenl77-

    Are you trying to install the BP Skeleton Component on an active site? The reason I ask is that you should use the Skeleton Component for developing your own custom BuddyPress plugins. You use the files, code your own solution, then activate your new custom plugin on your development server and test.

    There is no reason you would need to reupload WPMU, BuddyPress, or bbPress. The Skeleton Component will not provide any functionality on your site. You simply use it as a general template for coding your own custom plugins.

    #47691
    Kieran
    Participant

    Hi Burt

    thanks a lot for letting me know

    I’m WPMU 2.7.1 BP 1.0.1 and BBPress 1.0-alpha-6

    I’m planning for the groups forum to be the main content part of my site and so it would be great for seo purposes if the buddypress urls can include the bbpress rewrite.

    Fingers crossed for the future!!

    Btw I couldn’t get the bbpress RC to work either, works great once I went to 1.0-alpha-6

    #47690
    Sven Lehnert
    Participant

    I tested it with a new installation of buddypress without problems.

    But if try it with my working installation copying all in /wp-content/plugins/ it gives me a blank page. So I get the error before I’m able to activate it.

    I deactivate all plugins. but still the same issue.

    I don’t want to reinstall the hole wpmu bbpress and buddypress site.

    Also all ather plugins I use are working without problem.

    The mu and buddypress site is working correctly.

    Is there a way to find the error?

    Or do i need to reinstal the hole working installation and hope that it will work after?

    #47689
    Burt Adsit
    Participant

    I just don’t think anybody really knows. What version bp, wpmu, bbpress? That’s got to be somewhere around bbpress rc2 though. Not sure when bbpress went with the permalinks options. I can’t help you at the moment. I wiped my dev server’s bbpress, upgraded to bbpress rc2 and can’t get group forums to work at all. I can’t get that to work or wp/bbpress cookie integration. It’s the usual issue with conflicting, incorrect or just plain missing docs on how to make it happen properly.

    We have wordpress config settings, bbpress config settings, bp config settings. After careful and lengthy research, I’ve determined that it all is somehow related to this:

    http://hyperphysics.phy-astr.gsu.edu/hbase/forces/imgfor/fforcon.gif

    I guess I get to wait until Automattic decides that integration of their three products is actually important. This is a back burner issue with my dev server. I just don’t have the time to track down the problem at the moment.

    #47680
    Kieran
    Participant

    A gentle bump! Can anyone help me?

    Is it possible for the url links to Forum posts that are found within BP Groups to be in the permalink style (including the topic title as they are in bbpress)?

    thanks

    #47677
    Matt Kern
    Participant

    is BB v1.0 rc 3 the correct one to be using?

    #47676
    Matt Kern
    Participant

    Thanks Chris. I just did that and the install seemed good but now whenever I try to go to the forum I get

    ” Oh dear!

    bbPress is already installed.

    Perhaps you meant to run the upgrade script instead?”

    Its weird. I did not get stuck at this part with the beta version. I am going to start over again to see what happens.

    #47675
    @ChrisClayton
    Participant

    type in a unique username for it, when i installed bbpress, i chose ‘forumadmin’. you can easily make your ‘admin’ username the keymaster for it later, when its setup.

    #47670
    Matt Kern
    Participant

    Cool. Now maybe you can help me install bbpress if you got it going.

    What a headache.

    Jeff Sayre
    Participant

    is there a back up / restore procedure documented?

    Do you mean for bbPress? Since bbPress uses MySQL as the DB backend, as do the other *presses, I would look at the WP codex: https://codex.wordpress.org/Restoring_Your_Database_From_Backup

    Jeff Sayre
    Participant

    Jessica-

    You mention this:

    Added this code to the bbPress footer (before the closing /html tag):

    <?php wp_footer() ?>

    Did you add the call to wp_footer before the closing html tag, or just before the closing body tag? In other words, it should look like this:

    <?php wp_footer(); ?>

    </body>

    </html>

    Jeff Sayre
    Participant

    Jessica-

    I’ve thought about this some more and I only have one suggestion which might do the trick. Normally I would say this wouldn’t matter. But, I have seen this make a difference is some cases. Since it seems like you’ve tried everything and have deep integration setup and working, it is worth a try.

    If it does not work, then please contact Burt or jjj and ask for their advice. I am not a bbPress-integration expert.

    Try changing these two lines in their appropriate places:

    <?php wp_head() ?>

    <?php wp_footer() ?>

    to this:

    <?php wp_head(); ?>

    <?php wp_footer(); ?>

    Notice the change? It is the inclusion of the semicolon. It could be important to use these here as they indicate the end of a PHP statement. I’ve had theming issues in the past when I’ve left these off on certain PHP statements. It will probably not make a difference, but it is worth a shot.

    Try making those two changes and let me know what happens.

    jfcarter
    Participant

    Okay, still no luck! Can anyone help us get the buddybar added to the forums page? I am currently using the search/login bar, but really need the buddybar to be included.

    Based on the help posted, here’s what I’ve done:

    1. Added this code to the beginning of the bb-config.php file (I have WPMU installed at the root):

    require_once( $_SERVER[‘DOCUMENT_ROOT’] . ‘/wp-blog-header.php’ );

    2. Added this code to the bbPress footer (before the closing /html tag):

    <?php wp_footer() ?>

    3. Added this code to the bbPress header (before the /head tag):

    <?php wp_head() ?>

    4. Added this code to my bbPress header theme:

    <div id=”search-login-bar”>

    <?php bp_search_form() ?>

    <?php bp_login_bar() ?>

    <div class=”clear”></div>

    </div>

    The result: I am getting a white space above the bbPress header where the bar should be and the login bar is showing up in that space. But there is no CSS flowing (I changed the buddybar color) and I don’t see any of the buddybar menu items.

    Hope this helps those who are newly joining the conversation.

    My forums are posted at: http://the-suitespot.com/forums

    Thanks! :)

    #47558
    3167634
    Inactive

    Can not add WordPress MU password in bbpress “WordPress integration” Step 2.

    Problem when installing bbpress 1.0 with WordPress MU 2.7.1 and Buddy Press 1.0.1 is when I get to step 2 during in the installation of bbpress 1.0 “wordpress integration”. I can add in all the database informatino however the password input area is missing for inserting the database password. I have tried to skip this step however when I go into bbpress settings and add in all the information, when this step is completed there is no “Admin settings” inside bbpress (this is missing although I am logged in with “admin”.

    Does anyone have any ideas to fix this problem?

    #47546
    @ChrisClayton
    Participant

    lol,

    maby i should look before i leap? i was trying to use bbpress 9 lol

    as soon as i noticed the tiny version number at the bottom, and uploaded bbpress 1.0 it worked :)

    next time something doesnt work, im going to try opening my eyes :)

    thanks trent for the helpful guide :)

    #47543
    Jeff Sayre
    Participant

    Oaky, bigfunblogs PMed me these answers:

    1. Which version of WPMU are you running?
    WordPress MU 2.7.1.
    2. Did you install WPMU as a directory or subdomain install?
    Directory
    3. If a directory install, is it in root or in a subdirectory?
    Root
    4. Did you upgraded from a previous version of WPMU? If so, from which version?
    No
    5. Was WPMU functioning properly before installing/upgrading BuddyPress?
    Yes
    6. Which version of BuddyPress (BP) are you running?
    BuddyPress 1.0.1
    7. Did you upgraded from a previous version of BP? If so, from which version?
    No
    8. Do you have any plugins other than BuddyPress installed and activated?
    No
    9. Are you using the standard BuddyPress themes or customized themes?
    Yes
    10. If running bbPress, which version?
    No
    11. Please provide a list of any errors in your server’s log files.
    No have any error

    Thanks alot

    I PMed back stating:

    I would reinstall both theme directories. It looks like there is something missing.

    So, copy over a new copy of bphome into /wp-content/themes/

    Then copy over a new copy of bpmember into /wp-content/bp-themes/

    He PMed back this to which I said let’s continue this is the forum:

    I reinstall but it's not working
    i have this problem with all BuddyPress themes
    facebuddy
    shouty
    solitude-theme
    bpskeletonmember
    the home page it's good

    #47528

    Marked as resolved.

    #47520
    mikem1986
    Participant

    Sorted thank John!

    #47512
    Windhamdavid
    Participant

    @jacoby – I experienced similar cookie issues with brain broken and the trunk – got it working by deleting cookiepath and hash and deleting existing cookies- https://bbpress.org/forums/topic/cookie-integration-problem-wp28-bb-10-rc-2 but since this is about lighttpd I’m sure that hempworth’s problem is the lack of mod_rewrite and this may help – https://mu.wordpress.org/forums/topic/1961

    #47510

    Usually the current stable is probably best? I tried for a few hours to integrate bbPress 1.0 trunk last night and something appeared broken in it (could be my brain that’s broken too.)

    The issues you describe are pretty strange, and new ones compared to most. When re-installing, do me a favor and delete your cookies for your site also; lets make this as clean of an installation as possible.

    #47508
    Alex
    Participant

    FYI my PHP version is 5.2.6-1, it’s a fresh VPS so I’m installing the latest stable of everything.

    I might try backing my current config up and starting from scratch again… It might work, but if theres a solution I’d rather not do all of that again!

    Should I go from the current stable versions for each of the installs? WPMU 2.7.1, BP 1.0.1 and bbPress 1.0 RC2? I’ve always used trunk for each but I’ll do stable this time?

    #47506

    mikem1986, you will want to modify the header.php in your bbPress themes directory to get rid of the logo, and the header.php file in your wp-content/themes/bphome directory if you are using the included BuddyPress Home Theme.

    #47505
    mikem1986
    Participant

    Hi Arturo

    Yes i have the version up and running now and have also included the forum bit in the header :-)

    Still would like to change the logo if possible though

Viewing 25 results - 6,576 through 6,600 (of 7,561 total)
Skip to toolbar