Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 48,001 through 48,025 (of 64,471 total)
  • Author
    Search Results
  • #79943
    chrishajer
    Participant

    What version of bbPress has a file bb-admin.php in it?

    Just for reference, here is the error I am seeing right now:

    Fatal error: Call to undefined function bb_get_forums() in /home/content/m/i/c/michiganpoker/html/bb-admin.php on line 4

    #79941
    aequity
    Member

    Hi John:

    I downloaded from this website, the following page:

    https://bbpress.org/download/

    I downloaded the “Latest 1.0 zip” version….

    Please advise,

    A.

    #79940
    johnhiler
    Member

    Hold on a second, I don’t get why your bb-config.php file was trying to deeply integrate with WordPress… that line’s not part of the standard bbPress install, as far as I know:

    https://trac.bbpress.org/browser/trunk/bb-config-sample.php

    What URL did you download the zip file from?

    #32053
    yutt
    Member

    I’m running into an odd error:

    Warning: mysql_real_escape_string(): 16 is not a valid MySQL-Link resource in /forums/bb-includes/backpress/class.bpdb.php on line 394

    This happens when I using an external function I made to create threads which uses bb_insert_topic. It seems to only happen ever other thread created. If I just create one thread, it never happens, if I create three threads in a row, it will happen on the second but not the first or third.

    My function is fairly straight-forward:

    $topic_id = bb_insert_topic(array('topic_title' => $topic_title,'topic_poster' => 5,'forum_id' => 1));

    Is this a bbpress bug?

    #80433
    johnhiler
    Member

    When you say deep integration, do you mean you’d like to be able to call WordPress functions from inside of bbPress?

    Or do you mean that you’d like the themes to be very similar…

    #80438

    https://trac.bbpress.org/report

    That bug sounds oddly familiar, so it might have already been reported, but otherwise, you need to file a bug report on Trac

    #79939
    aequity
    Member

    Hi John:

    Great question. I have not WRITTEN anything in WordPress, but WordPress is one of the “canned options” for this website hosting platform (godaddy.com linux).

    I will be pleased to give you the login and pw to admin the site if that would help, you could look at the files, etc. The only thing that I’ve actually uploaded to it is the set of uncompressed bbpress files.

    Please advise. THanks alot

    A.

    #32051
    SimonDorfman
    Member

    WordPress info:

    I have wordpress Version 2.8.4 set up following these directions:

    http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory

    …so the wordpress folder is located here: http://www.example.com/cms/

    …but the world sees the blog here: http://www.example.com/

    I have permalinks set up with Day and name (a.k.a.: /%year%/%monthnum%/%day%/%postname%/)

    bbPress info:

    I installed bbPress 1.0.2 here: http://www.example.com/forums/

    The problem:

    I’m having some problems with this setup which I think are being caused by mod_rewrite.

    I try to login at https://www.example.com/forums/ (using the login and password emailed to me after installation) and it seems to accept my login, but then tries to take me to this url: https://www.example.com/forums/forums/ and then shows a wordpress 404 not found page.

    Any ideas?

    Thanks very much in advance for any help!

    #32049
    OKTeaRoom
    Member

    Hi,

    I want to attempt a deep integration with my wordpress theme and I’m just wondering if there is a definitive set of instructions or thread on here that goes over what to do. I’ve seen a few, but they were started over 2 years ago.

    Are those still the best/most relevant?

    Thanks for your time. I know some people here have been on this journey with bbpress for the 2 years so they would know the answer to this question the best.

    Bob

    #32048
    mrmacmac
    Member

    I’m planning on launching a bbPress forum sometime in the months ahead, but want to add a few important features.

    1) I’d like to add ‘avatars’ beside each forum, just like vbulletin and other forum setups let you do. Is this possible?

    2) I’d like to tie-in ‘recent comments’, ‘new threads’, etc. lists in a widget on my blog. Something that updates in real time as posts are made… Just a way to funnel more folks from the blog into the forums… is this doable as well?

    Any advice is greatly appreciated!

    James

    #32047
    sadnem
    Member

    I installed bbpress 1.02 on a shared database with wordpress everything is ok except the plugins page that shows blank, What can i do to solve it. Thank you.

    Regards, Sadnem.

    #80374
    xarzu
    Participant

    I put in something for the Secret Key but it says “Error! Not equal secret keys in WordPress and bbPress”.

    Why and how do I fix this? I am on the WordPress side doing bbPress syncronization. Do I need to go to

    the bbPress side and put the same Secret Key somewhere?

    #32046
    xfatpanda
    Member

    I worked with wordpress for a while, but I’m really new to BBpress. I can’t find detail documents for BBpress like wordpress does.

    If I want to use different templates for different categories in wordpress, I can use the following script.

    <?php

    $post = $wp_query->post;

    if ( in_category(‘1) ) {

    include(TEMPLATEPATH . ‘/single-1.php’);

    }

    elseif ( in_category(‘2’) ) {

    include(TEMPLATEPATH . ‘/single-2.php’);

    }

    else {

    include(TEMPLATEPATH . ‘/single-3.php’);

    }

    ?>

    But I don’t know how to make it in BBpress, could anyone help me out? Thanks a lot!

    #32045
    tahoekid
    Member

    I am running BBpress V 1.0.2 and for some reason some members are having an issue with links going to the wrong post. I cannot replicate the error in any browser with my admin user but I can log in as one of the users that is having the issue and see it via their login. Has anyone ever seen the issue? I do have a long list of plugins that is seems any one could the the culprit but it seems really odd that only some members are having the issue.

    http://easyloungin.com/

    #80413

    I am currently attempting something similar. I have an integrated WP and bbPress but want to switch to WPMU. I’ve successfully imported the user tables through phpMyAdmin. There are three columns you need to add to the wp_users table:

    display_name - varchar(250) - blank default value
    spam - tinyint(2) - default value = 0
    deleted - tinyint(2) - default value = 0

    And in wp_usermeta table you need to do a SQL search and replace to change all values that have wp_ to wp_1_ (because the main blog in WPMU has got that table prefix)

    UPDATE wp_posts SET meta_key = replace(meta_key, 'wp_','wp_1_');

    #76595

    this is a popular demand…

    maybe take a look at some old threads, like this one:

    https://bbpress.org/forums/topic/i-want-to-show-de-wp-profile-instead-bb-profille

    #80425
    johnhiler
    Member

    Do you mean the Role of each user? If so, try this:

    https://bbpress.org/forums/topic/how-to-disable-display-of-member-group

    #80409
    johnhiler
    Member

    Ah I just was noticing that you’re calling four separate CSS files in your bbpress install! That’s a lot… you might want to narrow that down a bit. :-)

    #80408
    johnhiler
    Member

    What is your active theme?

    The CSS that Chris referred to is probably in the subfolder of your active theme… which should be under your /my-templates/ folder.

    https://bbpress.org/documentation/themes/

    #80407
    christianrharris
    Participant

    Got it, I was looking in my BBpress themes folder instead of wordpress themes folder. Thanks!

    #80412
    circuit
    Member

    +1 for this question. I would also like to know..

    #80373
    xarzu
    Participant

    Ah Ha!!

    I just got the bbPress url working!! (happy emoticon here) It is good to see it say

    bbPress url Everything is ok!

    It is a little tricky. The trick is that the plugin php for bbpress and for wordpress have different file names and you do NOT use the exact same zip file for both plug ins.

    Now I just need to know what the secret key in wordpress and bbpress is and where to find it. This is the new error.

    #80372
    johnhiler
    Member

    Hopefully the plugin developer can help you… his contact information is here:

    https://bbpress.org/plugins/topic/wordpress-bbpress-syncronization/

    #80371
    xarzu
    Participant

    Does the plug in work?

    My problem is that after “URL is incorrect or connection error, please verify it (full variant): ” it has a url address to a file that is mixed up. How do I clear it out? And no matter what I put in the field for the the bbPress url, it does not change it.

    #79938
    johnhiler
    Member

    What is installed on your server… only bbPress? Or do you also have a WordPress install somewhere on there…

Viewing 25 results - 48,001 through 48,025 (of 64,471 total)
Skip to toolbar