Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 52,826 through 52,850 (of 64,396 total)
  • Author
    Search Results
  • #72288
    chrishajer
    Participant

    bbPress is not a plugin for WordPress. Get it out of your WordPress plugin folder. It does not belong in /home/m4inform/public_html/wordpress/wp-content/plugins/bbpress/ it belongs here /home/m4inform/public_html/wordpress/bbpress/ as a sub-directory of WordPress.

    #62764

    In reply to: Announcement Board

    chrishajer
    Participant

    In your template files, wherever there is a call to post_form(); just change it to

    post_form('Custom Title Here'); – you can even put a space in the single quotes and not have any title at all. The “New Topic in this Forum” is part of bbPress, but you can override it in your template wherever post_form is called.

    #4957
    perrymyk
    Member

    New to WordPress and certainly am not impressed with this Plugin.

    Installed new WP v 2.7.1 and uploaded this module bbpress-0.9.0.4 and it fails with the following error message:

    Fatal error: Call to undefined function bb_get_option() in /home/m4inform/public_html/wordpress/wp-content/plugins/bbpress/bb-plugins/akismet.php on line 72

    I just can’t imagine I did something wrong but assume this plugin works.

    Appreciate any pointers.

    #72185
    _ck_
    Participant

    If rewriting a PM plugin I would try to use as much internal stuff that bbPress has as possible. For example use the same hooks actions/filters that the new post form uses (and specify post id #0), which would make it work with many plugins. And run the message through pre_text before saving and then output through post_text when displaying.

    It’s also technically possible to do the whole thing inside of one single file for easy maintenance and make it part of the profile tabs. Look at bb-reputation to see the trick to making profile tabs within a single file, it requires a “wrapper”.

    #71338

    Updating post-count-plus fixed the issue! Thanks a lot! :)

    I thought about linking to profile field but bbPress uses a template tag to retrieve all profile data and I found it not reasonable to change:

    <?php bb_profile_data(); ?>

    #72124
    Patrick Daly
    Member

    I’m having the same issue. Any other suggestions?

    My setup:

    Integrated:

    WP 2.7.1

    bbPress 1.0-alpha-6

    Using the default bb-config charset & collation:

    define(‘BBDB_CHARSET’, ‘utf8’);

    define(‘BBDB_COLLATE’, ”);

    Using the defauly wp-config charset & collation:

    define(‘DB_CHARSET’, ‘utf8’);

    define(‘DB_COLLATE’, ”);

    Using the default language file. In other words, I haven’t changed anything and it should be using the English.

    Database is:

    UTF-8 Unicode (utf8)

    utf8_unicode_ci

    #72287
    chrishajer
    Participant

    If you want to use any type of permalinks, you need to create the .htaccess file with the rewrite rules.

    https://bbpress.org/forums/topic/created-a-new-forum-but-profile-viewedit-not-working#post-24005

    #72275
    chrishajer
    Participant

    Remove the second forum link/page.

    Hardcoding the first forum link in your WordPress header.php is fine. Without any styling, that means it will just be a link to your forum page, and inside WordPress, it would NEVER need to be styled as current, because you’ll never be in WordPress when you are in your forum, right?

    How are you getting the WordPress navigation in the forum? That’s where we need to focus on getting the current class on the forum page tab. If you’re including the WordPress navigation by integrating WordPress inside bbPress, then there needs to be a little work done on getting the current class on the forum tab (since you won’t actually ever be on a page called forum for is_page('forum') or is_page('190') to work properly from WordPress.

    #4956
    batesy
    Member

    Hey guys,

    I just installed bbpress at http://www.halifamous.com/staff for writers of a new blog to discuss ideas for the site. I am able to view the main forum page, and get into the admin section. The problem is that I’m getting a blank page any time I try to click through to the test post or into the ‘Introductions’ forum section I created. I also get a blank page when I try to access my user profile.

    I haven’t touched the code. Any idea why this might be happening?

    Thanks,

    Greg

    #4954
    thindery
    Member

    I am using the StudioPress theme and I have fully integrated bbpress into the theme. I think it looks great, and all the pages seem to be working. View at http:.//mipages.net/forum/ The only problem is that the “forum” tab isn’t hilited when viewing the forum. It always does the “home” one instead.

    In my theme I hardcoded the first forum link to http://mipages.net/forum/

    The second forum link is actually to just a page I created in wordpress called “forum”. I thought I could edit the link in phpmyadmin to http://mipages.net/forum/ somehow but I couldn’t seem to figure it out. So the link for the second forum tab is actually just a page, and not the actual forum.

    So basically I just want one of those forum tabs to be hilited when viewing the forums. It doesn’t matter to me how to get it done. Any suggestions by anyone?

    below is my header code for the forum page.

    Code:
    <div id=”nav”>
    <?php function get_the_pa_ges() {
    global $wpdb;
    if ( ! $these_pages = wp_cache_get(‘these_pages’, ‘pages’) ) {
    $these_pages = $wpdb->get_results(‘select ID, post_title from ‘. $wpdb->posts .’ where post_status = “publish” and post_type = “page” order by ID’);

    }
    return $these_pages;
    }

    function list_all_pages(){

    $all_pages = get_the_pa_ges ();
    foreach ($all_pages as $thats_all){
    $the_page_id = $thats_all->ID;

    if (is_page($the_page_id)) {
    $addclass = ‘ class=”current_page”‘;
    } else {
    $addclass = ”;
    }
    $output .= ‘<li’ . $addclass . ‘>ID).'” title=”‘.$thats_all->post_title.'”><span>’.$thats_all->post_title.'</span>‘;
    }

    return $output;
    }
    ?>

      <?php

      if (is_home()) {
      $addclass = ‘ class=”current_page”‘;
      } else {
      $addclass = ”;
      }
      echo “<li” . $addclass . “><span>Home</span>“;

      if (is_page(‘190’) ) {
      $addclass = ‘ class=”current_page”‘;
      } else {
      $addclass = ”;
      }
      echo “<li” . $addclass . “><span>Forum</span>“;

      echo list_all_pages();?>

    <div class=”cleared”></div>
    </div> <!– Closes Nav –>

    I changed the code to use the function is_page() when trying to identify it as a forum because that is what it looked like I needed to use, but I’m still pretty new to wordpress functions. the “190” is the id of the entry in my wp_posts table that contains the guid of http://mipages.net/forum/ (the link itself)

    So I know it is kind of working, because it is grabbing the right url and everything, I just can’t get it to recognize that is is viewing that current page to add the class.

    Help anyone! As soon as I can get this resolved I’d like to publish the modified theme files so other users can easily implement bbpress with their studiopress theme.

    #4953
    justasc
    Member

    We are looking to work with developers that can help us develop an authentication plugin for bbPress. If you are interested, please contact me at andrew.s.chen[@]gmail.com

    –Andrew

    #67725
    feastoffools
    Member

    I’d love to see WordPress, Bbpress and Facebook Connect working beautifully in unison. Will this dream come true? Any suggestions?

    #72072

    You should be able to delete and edit from the post view, not the admin view.

    What version of bbPress?

    #4918

    1) just installed have 2 members a few topics but none of the topics are appearing in the admin area of the bbpress… so i can’t do things like delete or edit or such…

    is there a way to fix this?

    2) also what are the proper file/directory permissions for bbpress is there a map for this for best security practices?

    #72182
    _ck_
    Participant

    Technically the plugin has been abandoned by the original author.

    I don’t think the download can be disabled but Sam or Michael might be able to move it on the SVN from the trunk directory to a tag where the extend section would make a link that would fail to download so that would prevent people from blindly installing it.

    The plugin was written after bbPress .7 had just updated to .8 so there were few other plugins available for the author to model some security against. It’s design is a little dated and spread out across several files makes it hard to maintain (a similar problem that the avatar upload plugin shares).

    #72263
    chrishajer
    Participant

    One point: if your database is on another machine, you will need to edit the advanced settings to put the host name in there. But that’s aside from this problem.

    If bbPress couldn’t write the file, then it’s probably a permissions thing. So, you created the file yourself. That’s OK. But maybe it’s in the wrong spot or has the wrong information in it?

    #71550
    Hiranthi
    Participant

    I integrated bbPress 0.9.0.4 with WP2.7.1 this weekend and everything seemed to work fine (apart from a few bbPress plugins I downloaded). Yesterday two users emailed me that they couldn’t edit their website anymore (in the WP backend, dunno about the bbPress backend, but since I have ’em integrated..).

    For some reason I’m getting an ‘invalid user id’ message when I try to edit it (as administrator) through the WP backend..

    I know that before I integrated with bbPress it did work and I didn’t get the message, so this must be a bbPress issue too.. Guess I’ll have to change it in the db until v1 is stable..

    #72180

    Also: Having it be a plugin means that people who don’t wont those ‘features’ don’t have to disable. It’s the basic idea of bbPress: Simple :)

    #72179
    johnhiler
    Member

    It’s because it is a plugin that we’re all able to patch it without upgrading the entire bbPress install itself!

    I agree that it’d be nice if the top plugins had security audits of some kind. Thank goodness a user reported this and another one fixed it though – that’s exactly how open source communities should work (ideally). Thanks merlin214365 and _ck_!

    I do feel dumb for just installing this plugin without even looking at the code. I’m going to do a personal security audit, and report back if any of the plugins I’m using turn up with security holes. Hopefully we can use this incident to improve the overall security of the most popular bbPress plugins!

    Is there then a way that when a registered bbPress member visits the WordPress area of the site, that WordPress will recognize them as registered bbPress members

    Integrated login will do that. If you only want to use the BB side of things, you can use a ‘Hide Dashboard’ plugin for WP (to … hide things ;) ), and then just never link to the WP profile stuff. I’m doing that and the three smarties who know they can login on the WP side quickly learned: Ain’t nutin’ there.

    As for targeting ads, I suspect you can do that, though it’d be a question for the WP side methinks.

    Hide Dashboard: http://www.kpdesign.net/wp-plugins/wp-hide-dashboard/

    #72262
    masterpo
    Member

    thank you Chris for your reply.

    Now I have try a fresh, clean install.

    Step 1 – Database configuration: I put my data, I don’t edit the advanced settings, I click on “Save configuration database file” and I got this message:

    Step 1 – Database configuration

    !

    Your settings could not be saved to a configuration file. You will need to save the text shown below into a file named bb-config.php in the root directory of your bbPress installation before you can continue.

    So I copy the “Contents for bb-config.php” in a file and i put this one on my site.

    After I follow the instruction:

    “Once you have created the configuration file, you can check for it below”

    I check and i get another time the same error. :(

    What do I do, now? I have not idea! can you give me some further help?

    thank you so much!

    wendel-brume
    Member

    I’m setting up a new website that is using WordPress as a CMS, and probably bbPress as a forum. (I’m toying with phpBB at the moment, but the integration I want here will likely push me to bbPress.) The WordPress area won’t require registration since its content is a series of short videos, and I want guests to be able to view them. Visitors will be invited to join the forums to discuss the videos, and I want them to self-identify their field of occupation when registering. My site is specific enough that the list of relevant occupations can be limited to a known list, so that field will be from a fixed set of possible choices.

    Is there then a way that when a registered bbPress member visits the WordPress area of the site, that WordPress will recognize them as registered bbPress members and somehow pass that information out, so that an adserver (like AdSense) can target the ads it serves more specifically to that visitor based on the occupation they provided?

    #4949
    masterpo
    Member

    hi, i’m trying to install the bbPress 1. alpha version in a subdirectory “forum” of my site.

    But I got an error in the first step of the installation.

    I have created the bb-config.php file and I have uploaded them.

    I check for the file and:

    Parse error: syntax error, unexpected T_STRING in /home/mysite/public_html/forum/bb-config.php on line 1

    so, I’m in trouble…

    anyone please can help me to solve?

    thank you!

    #69720
    H
    Participant

    I figured it out. There were two records for my capabilitues in the database. I don’t know why. When I changed both of them to keymaster, I got admin rights.

    #4946

    A customerd update his blog and forum to 2.7.1 and BB Press alpha and got in trouble with integration… asked me to solve it, i tried and got some result, forcing in DB hash salt key now login and logout in WP or BB reflect in other side but… on multipaged topics on bbpress when I request another page after the first one it ask me to login again and again… coockies lokk correct… I’m loosing my mind on this problem…

    Note the bb theme is made so the content is from BB but sidebars headers and footer is from WP (very old intergation did by someone else time ago)

    Any help?

Viewing 25 results - 52,826 through 52,850 (of 64,396 total)
Skip to toolbar