Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 48,301 through 48,325 (of 64,454 total)
  • Author
    Search Results
  • #78453

    In reply to: bbPress MU

    johnhiler
    Member

    Since Sam stepped down as bbPress lead a short while ago, we haven’t heard who will be replacing him (or how many resources Automattic will devote to the product). Hopefully we’ll get an update sooner rather than later!

    #78452

    In reply to: bbPress MU

    Rohan Kapoor
    Member

    Do we have an updated status on bbPress Channels yet?

    #79868
    chandersbs
    Member

    The reason for me asking this question, is the gazillion topics in this forum about integrating WP with bbpress. A lot of users have problems doing it. I tried it as well on my localhost, and couldn’t get it to work. I was also thinking what is the greatest benefit, so that’s why I asked.

    I was wondering, if you integrate WP with bbpress, does that mean that plugins that work on bbpress will also work on bbPress?

    Like, WP has this very cool, SEO for all plugin, you can edit page title, description etc. will this plugin work for bbPress topics?

    If WP plugins don’t work for bbPress, then I really don’t see any great benefit for going through all that trouble of integrating…

    #79883

    In reply to: Link Cloaking

    <?php
    /*
    Plugin Name: Remove Links (conditional)
    Description: Removes links for non-registered users. Based on <a href="http://ckon.wordpress.com/2007/07/12/bbpress-plugin-bb-tweaks/">bb tweaks</a>.
    Plugin URI: https://bbpress.org/forums/topic/hide-links
    Version: 0.01
    */

    function bb_strip_links( $text ) {
    global $topic;

    $forums = array(
    1,
    2,
    3,
    );

    if ( !in_array( $topic->forum_id, $forums ) )
    return $text;

    if ( !bb_current_user_can( 'write_post' ) )
    $text = preg_replace('|<a (.+?)>(.+?)</a>|i', __('(Login or register to download)'), $text);

    return $text;

    }

    add_filter('post_text', 'bb_strip_links');

    ?>

    #31900
    brad_langdon
    Member

    Can anyone tell me what this means and how to fix it?

    Warning: include() [function.include]: Filename cannot be empty in /home/harrismarine/harrismarine.co.nz/bbpress/bb-includes/functions.bb-template.php on line 45

    Warning: include() [function.include]: Failed opening ” for inclusion (include_path=’.:/usr/local/php5/lib/php:/usr/local/lib/php’) in /home/harrismarine/harrismarine.co.nz/bbpress/bb-includes/functions.bb-template.php on line 45

    #79867
    Elias
    Member

    For normal site-users it can be nice, that they’re logged in at WordPress if the’re registered and logged in at bbPress. The WP comment form is simpler for the logged-in-users, they don’t have to type their name, mail adress and homepage. If you configure your WordPress in a way which requires registration of commenters, there is an additional benefit for administration. There are always some hand-registered SEO-spammers, and it makes you less work if you have only one user database. The mapping of WP user roles to user roles in bbPress may save some work too.

    For most installations, the integration isn’t needed. Always remember that the bbPress installation with integration is significantly more complicated than a normal bbPress installation and may lead you to incompatibility issues with future WP releases. Think about it before doing. I love it, but it is a little hard sometimes…

    #79703

    In reply to: Need A Project ShowOff

    kernow
    Member

    I browse the bbpress forums from time to time. In the dark cold winter I hope to work through a few books and try them out.

    #79840
    johnhiler
    Member

    If you’re looking for support for a lot of bbPress plugins, your best best is usually to stay on the 0.9 branch. 1.0 won’t have a lot of plugins supported for months, if at all…

    #79866
    chrishajer
    Participant

    Many people want integration so that your users can log in to either bbPress or WordPress and not have to log in again when they switch from blog to forum, or forum to blog.

    Others want ‘deep integration’ so they can use WordPress functions (like get_sidebar, get_footer and get_header) in their bbPress installation. Sometimes they want deep integration to make the two themes look similar or identical. Sometimes they want to be able to pull WordPress information into bbPress or vice-versa.

    I integrated a forum with a blog one time but I normally have no use for it. It’s not worth the trouble for me, and I don’t need integration of users or functions.

    #79823
    amylmc
    Member

    Yes. My dashboard looks like that. But I can’t see or activate new themes I’ve uploaded per the directions on the bbpress.org site. I can’t make color changes or change the look at all.

    #31898
    chandersbs
    Member

    Can someone tell my why its a great thing to integrate these two?

    #79702

    In reply to: Need A Project ShowOff

    I just asked for a feedback on the site as per the design and implementation of WordPress & bbPress. And my main target are Indian students only. If you want to contribute, then why not sign up? I would love to see you in NAP forums.

    #79822
    chrishajer
    Participant

    amylmc – does your dashboard look like this?

    http://chrishajer.com/bbpress/bbpress-1.0-dashboard.png

    If it doesn’t, then the user you’re logging in as is not the keymaster and does not have all the proper permissions.

    #79326

    In reply to: Widgets for bbpress?

    chrishajer
    Participant

    Marius- please stick to one topic per post. I thought this was about widgets then I see this comment about removing the tags bar. If you want to remove the tags, just look in your template files for wherever the tag cloud is displayed, and remove that code. I don’t see a link to your forum so I can’t tell you exactly what to remove.

    I think tags are normally attached to each topic, and also to the front page, and you would need to remove the places where tags can be added as well. Just find those sections in your template files, and delete them or comment them out. Make a copy of all the files first in case you make a mistake and need to revert back.

    #79839
    chrishajer
    Participant

    Have you tried Polldaddy for bbPress?

    https://bbpress.org/plugins/topic/polldaddy-for-bbpress/

    It says compatible up to 1.0-alpha-2 but maybe it will work? If not, maybe you can find someone to fix it for you.

    #79325

    In reply to: Widgets for bbpress?

    Marius-
    Member

    I’m fully aware of the theme I’m using. I just want to know how to remove the tags. Their just ugly and unecesary.

    #31896
    Marius-
    Member

    Last time I tried out BB Polls and it didnt work. Users said it were made for an older version of bbpress. Is there any poll-plugin that works for BBPress v1.02?

    My forum is growing, and I really feel the need to have polls now.

    #79828

    “Currently, plug-ins for both WordPress and bbPress, WordPress’ forum software solution are available.”

    *sigh*

    Apparently the bbPress plugin is still in alpha, as of about 10 days ago:

    http://forum.gigya.com/forum/Default.aspx?g=posts&m=1619

    The WordPress one is released though, so maybe it’d be fine under a WP/bbP integration setup

    #31894
    Silvanovicz
    Member

    Hi guys – just came across this Gigya platform, which allows users to login via Facebook Connect, Twitter and other platforms. The site references bbPress as well (saying the plugin works for both WordPress and bbPress), but I can’t actually much documentation about the bbPress side of things.

    I know a lot of you guys are keen for some sort of Facebook Connect plugin, so thought this might be the one to explore? Has anyone tried this product yet and is it any good?

    http://blog.gigya.com/?p=911

    #77626
    xdaniel
    Participant

    ok, I made a fresh installation of 0.9.6. in another directory. the only difference was the prefix. both installations use the same database.

    updating the new installation to 1.0.2 worked fine and without any problems. both bb-config.phps are identical.

    but upgrading the older installation, which I upgraded some times from earlier bbpress versions and which has some plugins, does still not work. “ERROR: Could not establish a database connection”.

    #79819
    jivago
    Member

    Hello, I’ve had the same problem today with a fresh installation of bbPress and WordPress.

    I found the solution changing the root nicname, not called admin.

    The nicname of bbpress was not like in wordpress despite having given correctly in the installation.

    #79817
    amylmc
    Member

    I uploaded a template called Green Night into my my-templates folder as ‘themes and templates’ recommends. I would like to apply it.

    I am new to bbpress, so I’m unsure what all admin should be able to do… but do not have any options under appearance, there is not pull down menu.

    #79804
    chrishajer
    Participant

    The constants have different names in wp-config.php and bb-config.php. Just copy and paste the VALUES not the whole line.

    bb-config.php:

    define( 'BBDB_NAME', '123456789' );
    define( 'BBDB_USER', '987654321' );
    define( 'BBDB_PASSWORD', 'goodpassword' );
    define( 'BBDB_HOST', 'localhost or something else' );

    wp-config.php:

    define('DB_NAME', '123456789');
    define('DB_USER', '987654321');
    define('DB_PASSWORD', 'goodpassword');
    define('DB_HOST', 'localhost or something else');

    For bbPress, the constants are name BBDB_ and for WordPress they’re just DB_. You can copy and paste the values, but make sure you don’t change the names from BBDB_ in your bb-config.php.

    #79814
    chrishajer
    Participant

    What are the permissions on the my-templates folder, and the template folders inside that folder? They should be 0755, but bbPress was creating them with the wrong permissions in the past. Maybe it’s a permissions problem.

    #31892
    amylmc
    Member

    I have read what’s available on this topic. I am logged in as admin and keymaster is selected in my profile. I still cannot see a Presentation Panel in the Dashboard and I would like to activate a theme I’ve add to my-templates in the bbpress root. Can someone please help me troubleshoot?

    thank you.

Viewing 25 results - 48,301 through 48,325 (of 64,454 total)
Skip to toolbar