Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 40,526 through 40,550 (of 64,515 total)
  • Author
    Search Results
  • #78902
    anmari
    Participant

    For the info of anyone chancing up on this.

    wrt The plugin that justin mentions above. After integrating bbpress and wp 3.0.1, i had my existing members showing up in bbpress as inactive. Not: inactive (no role)

    I changed the plugin as follows: – added the else line

    function inactive_to_member() {

    $userID = bb_get_current_user_info( 'id' );
    $user_obj = new BP_User( $userID );
    $user = bb_get_user( bb_get_user_id( $userID ) );
    if(empty($user->capabilities)) {
    $user_obj->set_role('member');
    }
    else if (is_array($user->capabilities) and ($user->capabilities['inactive'])) $user_obj->set_role('member');
    }
    add_action ('bb_head', 'inactive_to_member', 5, 0);

    #94627

    @DeysonOrtiz – Sounds like you’re missing some files or something didn’t get moved/downloaded completely.

    I’d say give it another shot and try again.

    #94626

    DeysonOrtiz: Yes Mark I see the bbpress.php file and every other file […]

    Well if thats the case, then I see no reason why it shouldn’t show up in WordPress at all, ready for you to activate and start playing about with! Very odd…!

    #94625
    DeysonOrtiz
    Participant

    Yes Mark I see the bbpress.php file and every other file that I downloaded from here :

    https://trac.bbpress.org/browser/branches/plugin.

    Thank you :)

    ccw32
    Member

    I’m not a programmer – just someone with a website who wanted to add an ‘easy’ to install forum. After my help from Yahoo, who hosts my site, it is up and running but it’s so boring looking. I can’t find the other templates that bbpress is supposed to offer. Does anyone know where they are? Can you customize with your site’s logo and URL? Thanks.

    #97754
    Commentguerir
    Participant

    I need to develope a plugin that, at the end, post email notification to no anonymous post in bbpress trunk version (like subscribe to comment in wordpress).

    #102854
    Commentguerir
    Participant

    I need to develope a plugin that, at the end, post email notification to no anonymous post in bbpress trunk version (like subscribe to comment in wordpress).

    #97751
    mr_pelle
    Participant
    #102851
    mr_pelle
    Participant
    #94624

    John James Jacoby: For people running into issues on Windows local installs, svn up and test the most recent trunk. The solution isn’t very pretty but appears to work on all server configs.

    I love this (ugly) solution, thanks for taking the time to do what you did, and if what Ryan Boren did in a particular change in WordPress helped too then grand! :) With this, you can tell Automattic made a good call adding you to the team (congratulations again!)

    Rich Pedley: Works OK for me, I never thought of just changing that portion (doh).

    You always think about it after you see the change made, I’m sure I’d been playing about with that at one stage but had nothing like the final ”solution” shows … least we’ve got JJJ to help us! ;)

    DeysonOrtiz: I dropped the ‘plugin’ folder into the wp-content/plugins folder and then changed the folder named ‘plugin’ to bbpress.

    By rights it should show up fine in either folder. So inside the /wp-content/plugins/bbpress/ directory do you see a bbpress.php file? Can you just double check all the files needed to run the bbPress Plugin have been uploaded! :)

    #94623
    Rich Pedley
    Member

    what is in the bbpress directory?

    #94622
    DeysonOrtiz
    Participant

    Hello,

    It seems the plug-in does not show up in my Plugins-admin page.

    I dropped the ‘plugin’ folder into the wp-content/plugins folder and then changed the folder named ‘plugin’ to bbpress.

    Am I missing something

    I am really excited to see this work! :)

    Thank you.

    #36208
    Ownerer
    Member

    Hi all.

    Just set up a BBPress and WPMU integration. Finally got access to bb-admin files after a bit of tinkering around with the MySQL tables. I had to set a bb_capabilities value and set it Administrator, rather than the Keymaster I made etc. etc. I mention this only as it could be of relevance, I doubt it, but there we are!

    I can now login, set up forums, admin them, people can register on the WP site, login at the forums, it’s all going great. Or so I thought.

    When I go to the bb-admin pages, everytime, this hasn’t just started occuring, I get the following error messages:

    Warning: Division by zero in /home/unibbco/public_html/bbpress/bb-includes/functions.bb-statistics.php on line 214

    Warning: Division by zero in /home/unibbco/public_html/bbpress/bb-includes/functions.bb-statistics.php on line 194

    Warning: Division by zero in /home/unibbco/public_html/bbpress/bb-includes/functions.bb-statistics.php on line 174

    Warning: Division by zero in /home/unibbco/public_html/bbpress/bb-includes/functions.bb-statistics.php on line 244

    Any idea on why this is and how I can fix it?

    The forums have 3 users, no posts, only one forum.

    Thanks in advance for any assistance! :)

    #85215
    gadamiak
    Member

    We need to create a basic import plugin. — This I have done, it’s experimental and I’d like some more eyes on the code before calling it “done”

    I’ve looked for it but haven’t found it. I guess it hasn’t been published yet?

    I ask for help in making a single-use script to import topics and posts into existing BBPress installation.

    I need to import a legacy Q&A (hundreds of them) stored in a flat file. I need to handle fields missing in the source, which contains: Q poster, Q poster’s e-mail (optional), Q post date, Q content, A content. I want to import those and fill the missing fields with arbitrary values.

    I chose to use API to do the task, which is a right choice, what was pointed above. I converted the source file manually and imported it into a multi-dimensional array. Then I want to use functions bb_insert_topic and bb_insert_post in a simple loop:

    $topic_id = bb_insert_topic(array(...));

    bb_insert_post(array('topic_id' => $topic_id, ...);

    The problem is: I can create topics/posts only for current user. Any poster_ parameters passed to bb_insert_ are ignored. In other words, I can’t create anonymous topics/posts with poster credits I specify. I guess I’m missing a setting or constant?

    The PHP script is located in the root folder of BBPress. I do require('./bb-load.php'); and log in to my keymaster user in the browser. All of $bbdb, $bb and $bb_current_user are populated (I used FirePHP to debug).

    What am I missing?

    #94621
    Rich Pedley
    Member

    Works OK for me, I never thought of just changing that portion (doh).

    Thanks.

    #94620

    For people running into issues on Windows local installs, svn up and test the most recent trunk. The solution isn’t very pretty but appears to work on all server configs.

    #94619
    Rich Pedley
    Member

    That doesn’t work though – then you’d have to put the forum in that subsite as well.

    So I’ll raise a ticker for the roles.

    #94618

    That’s in the plans but feel free to open a trac ticket. I’d like to work within the existing WordPress roles and caps if possible, but also understand it might be nice to have dedicated forum admins and moderators.

    My immediate thought would be to enable WordPress multisite and use a dedicated site with dedicated ‘staff’ for the forums, but I also understand that’s only one particular use-case and isn’t optimal for everyone.

    #36204
    accesslc
    Member

    Hi Everyone,

    First of, hello bbPress world!! I am a newbie here and am about to install bbpress on one of my wordpress sites. This is my first time adding a bbpress forum onto a wordpress blog and I have a few basic questions. I have browsed through several of the posts but have not really found a specific answer, so here goes my questions:

    1) Should we be creating a separate database for bbpress or share the one we are using our worpdress on?

    2) Is it recommended using a bridge so wordpress users can be members of the blog and forum without having to create 2 separate accounts, one for blog and another for forum?

    Thanks,

    Alex

    #94617
    Rich Pedley
    Member

    Can I suggest that in the core plugin some new roles are added:

    Forum Mod & Forum Admin.

    Admin may not be quite as useful, but Moderator surely will be.

    #94616
    Rich Pedley
    Member

    Couple of things:

    sub forums currently don’t list on the main forum page – intentional?

    currently the default order position for forums is 0, unless you are going to add in a better method for organising these, could I suggest a default order value slightly higher – or is this better served by a plugin.

    style.css

    would it be better to have an additional forum.css imported into this to keep the style for the forum separate, and making it slightly easier for people to copy the whole thing (minus style.css) to an existing theme?

    Normally I’d also suggest importing the standard style.css from twentyten, but that may be difficult.

    #97557

    i think this might help you https://bbpress.org/plugins/topic/support-forums/ i havent tried it yet.

    #102657

    i think this might help you https://bbpress.org/plugins/topic/support-forums/ i havent tried it yet.

    #97660

    i had to build a plugin that sent all of the emails to another server. I am going to publish this plugin here.

    #102760

    i had to build a plugin that sent all of the emails to another server. I am going to publish this plugin here.

Viewing 25 results - 40,526 through 40,550 (of 64,515 total)
Skip to toolbar