Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'forum'

Viewing 25 results - 18,101 through 18,125 (of 20,259 total)
  • Author
    Search Results
  • Burt Adsit
    Participant

    In 1.0.2 the support for the bbpress helper plugin was pulled out. This ticket: https://trac.buddypress.org/ticket/853 has the essentials for re-enabling the helper plugin support in 1.0.2.

    I stuck the ticket’s attached code into bp-custom.php and it works from there fine. I don’t see any need to hack up a bunch of core files. This is going to be a temporary situation.

    We need to still run the bbpress helper plugin and the support code in bp 1.0.2. Nothing is gonna work right otherwise.

    Burt Adsit
    Participant

    I was just talking about this issue with jjj on irc. This bp helper plugin provides data that isn’t normally sent over to bp as well as escaping the html <> brackets. plrk is right. The patch only works in the forum templates not the topic templates. I can’t patch the topic templates because it’s not getting user id info without the bp helper plugin activated.

    #49328

    In reply to: BuddyBar for bbPress

    Rohan Kapoor
    Participant

    Anyone good with .htaccess rewrite rules?

    I stuck the following in a blank .htaccess but it doesn’t seem to be executing.

    RewriteEngine On

    RewriteCond %{HTTP_HOST} ^[^.w{3}]+.zyrot.com$
    RewriteRule ^$ %{HTTP_HOST} [C]
    RewriteRule ^([^.w{3}]+).zyrot.com$ http://wpmu.zyrot.com/forums/ [R=301,L]

    What I’m trying to do is get .htaccess to execute forums.zyrot.com as wpmu.zyrot.com/forums/

    Thanks

    EDIT: I managed to get it work a little like this:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{HTTP_HOST} ^[^.w{3}]+.zyrot.com$
    RewriteRule ^$ %{HTTP_HOST} [C]
    RewriteRule ^([^.w{3}]+).zyrot.com$ http://wpmu.zyrot.com/forums/ [R=301,L]
    </IfModule>

    My only problem is that i want it to appear as forums.zyrot.com. Any ideas people?

    #49327
    tiptap
    Participant

    Ok, followed this to the letter. and it pretty much works perfectly.

    only problem is in the ‘Active Forum Topics’ it shows all my posts, but doesnt recognise who posted it or show my gravatar.

    If i few the posts in the actual forum /forum/ it shows who its recognises admin posted it and shows my gravatar

    any suggestions?

    cheers

    #49310
    r-a-y
    Keymaster

    Try this:

    https://buddypress.org/forums/topic.php?id=1478&page=2#post-7670

    It worked for me when I had a similar problem that you’re experiencing, although not identical regarding the IXR class.

    However I’m using WPMU 2.7.1 and not 2.8.1.

    #49308

    In reply to: BuddyBar for bbPress

    Brian Neil Katz
    Participant

    Woo Hoo! Thank you for everyones help : @JJJ and @Rohan

    http://www.wpmeetups.com

    http://www.wpmeetups.com/forums/

    Fully Integrated with the following:

    1) 2.8.1 WPMU (latest trunk – 1867)

    2) BuddyPress 1.1

    3) bbPress 1.01 (latest trunk – 1361)

    4) BuddyBar 1.03

    5) Modification of of two core files

    a) wpmu-functions.php b) capabilities.php

    Thanks Again

    plrk
    Participant

    The regex is missing some slashes though… if someone needs help figuring the proper regex out, contact me (through writing a reply to this topic, par example) and I’ll give it to you.

    plrk
    Participant

    The hack:

    <?
    // Fulhack for fixing obscure [p] bug: see
    // https://buddypress.org/forums/topic/p-showing-up-in-group-forums-and-activity-with-bp-102-and-latest-phplibxml

    function fulhack_for_fixing_p_bug($string) {
    $string = preg_replace("#\[a href=\"([^<]+)\"\]([^<]+)\[/a\]#i", "<a href=\"\\1\" target=\"_blank\">\\2</a>", $string);
    $string = str_replace("[p]", "<p>", $string);
    $string = str_replace("[/p]", "</p>", $string);
    $string = str_replace("[ol]", "<ol>", $string);
    $string = str_replace("[/ol]", "</ol>", $string);
    $string = str_replace("[ul]", "<ul>", $string);
    $string = str_replace("[/ul]", "</ul>", $string);
    $string = str_replace("[li]", "<li>", $string);
    $string = str_replace("[/li]", "</li>", $string);
    $string = str_replace("
    ", "<br />", $string);
    return $string;
    }
    add_filter( 'bp_get_the_topic_post_content', 'fulhack_for_fixing_p_bug' );
    ?>

    #49298
    3474163
    Inactive

    …other than maybe a PHP memory limit error? Or maybe the comment.php file is corrupt?

    Are you using deep integration by chance?

    hey,

    thanks for your quick answer, i don’t do anything special, the message appears at the top, when i click on the forum setup.

    i downloaded the wpmu package again and inserted the comment.php in the wp.includes folder, to see if the file is corrupt, but the error message is still there…

    what is a php memory limit error and how do i fix it?

    what do you mean with deep integration?

    i installed wpmu, than added buddypress vía the plugin page, than installed bbpress manually (in a wpmu subfolder called “forums”) and added some other plugins…

    ah, and wpmu and bbpress share the database…

    but, so far i haven’t used any special integration plugin.

    greets

    loligco

    plrk
    Participant

    Burt was told via IRC that I am running 1.0.1 (as it says in my starting post).

    However, we weren’t able to squash the bug. I am working on a “fulhack” (a Swedish programming term that is very useful – literally “ugly hack”) that will work around it.

    #49294
    Jeff Sayre
    Participant

    Well, that could be a WPMU 2.8.1 bug. You should go to the Mu forums and search there. If you cannot find anyone reporting the same issue, then please start a new thread there explaining the issue.

    #49287
    Jeff Sayre
    Participant

    @grgrammon

    Since the OP of this thread has not been active on these forums for some time–not to mention that this thread is over 4 months old–you more than likely will not get a response from them.

    Your best bet when dealing with 3rd-party plugin issues is to contact the plugin dev directly and ask them for support.

    #49286

    In reply to: nginx re-write rules

    Jeff Sayre
    Participant

    @Indojepang

    This is not a BuddyPress issue nor a WPMU issue. It has to do with properly setting up a Nginx web server. But, your best bet is to go search the WPMU forums. If you can’t find an answer, post a new thread.

    #49280
    Jeff Sayre
    Participant

    @Jatinder

    First of all, since this post has not seen any activity for 3 months, it is better to start a new thread as most people that can help you will often ignore posts marked resovlved, preferring to spending their time focusing on threads that stll are unresolved. Please read this for more information.

    Second, read this and see if you can find your answer.

    #49274
    Jeff Sayre
    Participant

    @kipperman

    I’m sorry that your having issues getting BuddyPress up and running.

    One request first: since this post is marked as resolved and is a month old, in general it is better to start a new thread as most people that can help you will often ignore posts marked resovlved, preferring to spending their time focusing on threads that still are unresolved. Please read this for more information.

    Concerning your issue, this is a known bug that has been discussed here. Basically, BuddyPress 1.0.3, the next release coming very soon, will take care of this issue. So, in the meantime, you may need to stick with WPMU 2.7.1 and BP 1.0.2.

    Also, before upgrading BuddyPress and WPMU, it is very important that you first deactivate all BuddyPress-dependent plugins. Then deactivate BuddyPress itself. Finally, it is recommended that you deactivate all other non-BP related sitewide plugins as well. Once finished upgrading WPMU, you then upgrade and reactivate BP. Then, you reactivate the other BP-dependent plugins.

    #49272

    In reply to: BuddyBar for bbPress

    Brian Neil Katz
    Participant

    @Rohan Thanks for the help with the modification of the two core files:

    1) wpmu-functions.php

    2) capabilities.php

    No longer receiving a ‘white screen; however I do not see the Buddy Bar?

    http://www.wpmeetups.com

    http://www.wpmeetups.com/forums

    Any idea? I thinking I left something out?

    #49269

    Using Comment Form Quicktags (which puts it for the blog), I was able to tweak a little and get it to work by manually editing files.

    For the Wire, I edited my theme’s membertheme/wire/post-forum.php from

    <textarea name="wire-post-textarea" id="wire-post-textarea"></textarea>

    to

    <script type="text/javascript">edToolbar();</script>
    <textarea name="wire-post-textarea" id="wire-post-textarea"></textarea>
    <script type="text/javascript">var edCanvas = document.getElementById('wire-post-textarea');</script>

    In theory the plugin should be hackable, but adding this:

    add_action('wire-post-textarea', array(&$this, 'detect_end'));

    to

    /**
    * Start to detect <textarea>.
    */
    function detect_start($file) {
    ob_start(array(&$this, 'add_tags'));
    $this->ended = false;
    add_action('comment_form', array(&$this, 'detect_end'));
    add_action('wp_footer', array(&$this, 'detect_end'));

    return $file;
    }

    didn’t work so I’ll have to keep poking around.

    Burt Adsit
    Participant

    I installed 1.0.2 and then the patch. That works as well. Perhaps the difference is in the bbpress versions. Are you running v1.0 or v1.0.1 of bbpress?

    #49264

    For the forums, it’s Comment Quicktags

    For the blog, there are a lot more options.

    There isn’t one, yet, that works with all components (groups, wire, etc).

    Graeme
    Participant
    #49251

    In reply to: BuddyBar for bbPress

    Brian Neil Katz
    Participant

    I completed installation of the following

    WPMU 2.8.1, (trunk 1867)

    BuddyPress 1.1

    bbpress 1.01, (trunk 2311)

    BuddyBar 1.0.3

    Site:

    http://www.wpmeetups.com

    http://www.wpmeetups.com/forums/

    Integration has been successfully set-up between Forums and BuddyPress Group Forums.

    Problem: Insertion of the following in bb-config.php: (generates a white screen)

    <php

    if ( !defined( ‘ABSPATH’ ) & !defined( ‘XMLRPC_REQUEST’ )) {

    define( ‘WP_USE_THEMES’, false );

    include_once( ‘/var/www/vhosts/wpmeetups.com/httpdocs/wp-blog-header.php’ );

    header( “HTTP/1.1 200 OK” );

    header( “Status: 200 All rosy” );

    }

    Question: Will the following correction to 2 core files correct this problem:

    You’ll actually need to patch two CORE files, to make this work now.

    wp-includes/wpmu-functions.php on line 317 and line 352

    Change _init to __constuct (__construct)

    And then in wp-includes/capabilites.php on line 84 and 99

    Change _init to __constuct (__construct)

    Ugh… I hope this is fixed soon.

    plrk
    Participant

    Unfortunately, the patch does not work for me. I am however not running from the trunk, I am running 1.0.2. I suppose something differs that affects this issue…

    ipstenu: no, I am not running any bbCode plugins.

    r-a-y
    Keymaster

    If you are properly integrated, your BP display name should sync up with bbPress’ post_author() function… you shouldn’t have to do anything… at least that’s the case for me.

    (I’m using deep integration)

    #49238
    Brian Neil Katz
    Participant

    I completed installation of the following

    WPMU 2.8.1, (trunk 1867)

    BuddyPress 1.1

    bbpress 1.01, (trunk 2311)

    BuddyBar 1.0.3

    Site:

    http://www.wpmeetups.com

    http://www.wpmeetups.com/forums/

    Integration has been successfully set-up between Forums and BuddyPress Group Forums.

    Problem: Insertion of the following in bb-config.php: (generates a white screen)

    <php

    if ( !defined( ‘ABSPATH’ ) & !defined( ‘XMLRPC_REQUEST’ )) {

    define( ‘WP_USE_THEMES’, false );

    include_once( ‘/var/www/vhosts/wpmeetups.com/httpdocs/wp-blog-header.php’ );

    header( “HTTP/1.1 200 OK” );

    header( “Status: 200 All rosy” );

    }

    Question: Will the following correction to 2 core files correct this problem:

    You’ll actually need to patch two CORE files, to make this work now.

    wp-includes/wpmu-functions.php on line 317 and line 352

    Change _init to __constuct

    And then in wp-includes/capabilites.php on line 84 and 99

    Change _init to __constuct

    Ugh… I hope this is fixed soon.

    #49236

    There are two plugins that you’ll need to sync up the cookies; one of them is included with BuddyPress under bp-forums/bbpress-plugins/, this one gets copied into your bbPress/my-plugins/ folder. The other you will want to download from the WordPress plugins repository (wordpress.org/extend/) and install and activate in your WordPress admin.

    Once you have each plugin installed, one for each platform, configure them and follow the directions for each one, and then report back. :)

Viewing 25 results - 18,101 through 18,125 (of 20,259 total)
Skip to toolbar