Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 59,926 through 59,950 (of 64,425 total)
  • Author
    Search Results
  • #55740

    In reply to: Anonymous posting

    Null
    Member

    I suggest NOT TO USE this trac plugin. It isn’t official and wont work correct on the current bbPress release. It is created to work IF some modifications are done in bbPress itself.

    #60413
    fel64
    Member

    Some things you can change in the template, some things are hardcoded. I’m not sure what you mean but if something isn’t done in the template and you think it should be changed (everywhere) then you can report bugs, defects, possible enhancements on trac: http://trac.bbpress.org.

    #2340
    prowsej
    Member

    I am getting a number of spambots registering on my bbPress at http://www.fcgottawa.ca/forum/ I would like to try having an image verification captcha that registrants have to enter in order to register. I searched this forum and didn’t see anybody talking about this – does this exist? It’s a standard part of many other forum packages. Is there a plugin for this functionality?

    Thanks for your suggestions.

    #60074

    In reply to: top 100 bbPress sites

    benbeltran: Your forum is what made me decide on going with bbpress :)

    #2337

    Topic: Inline Images?

    in forum Plugins
    kdma
    Member

    Please take a moment to visit http://alexrabe.boelinger.com/category/nextgengallery/ and take a look at it.

    I want to do that, just with bbpress.

    Anyone have anything like that in the works or know how I can make it work with bbpress? Any help is appreciated!

    #60408

    In reply to: Anonymous Post

    rashantha
    Member

    i am new to bbpress, but adding a calculation field or a random set of graphic letters ie facebook shouldn’t be a difficult problem.

    guess it’s time to look plug in technology. i was attracted to bbpress because of the customization.

    but it looks like small issues can become big headaches like the permalink issue !

    #60407

    In reply to: Anonymous Post

    matt123
    Member

    rashantha-just tackled this one earlier in the week. Check out, https://trac.bbpress.org/ticket/633

    Spam is really an issue, not sure how to solve it. 20 minutes after I set it up I received my first spamming. Maybe you make users fill out a verification number before they can post. Don’t know if any such solution exists. Another option is to get a plugin, name escapes me that makes it so posts must be approved.

    Matt

    #55738

    In reply to: Anonymous posting

    matt123
    Member

    Just wanted to put up a link to where to find the code to make anonymous posting happen. It took me a lot of searching before I found it. Works like a charm only problem is that it tries to let you pm the anonymous person.

    https://trac.bbpress.org/ticket/633

    #60367
    karaboga
    Participant

    Thank you. Yes, I’ve tried that; but nothing changed.

    #2335

    Topic: Anonymous Post

    in forum Installation
    rashantha
    Member

    Hello can you do anonymous post in bbpress.

    i would like my users to be able to post anonymously. if so how do you handle spaming?

    also is anyone aware of any legal issues regarding this.

    #60366
    chrishajer
    Participant

    Did you try recounting from the admin panel?

    Admin > Site Management > Recount

    "The following checkboxes allow you to recalculate various numbers stored in the database. These numbers are used for things like counting the number of pages worth of posts a particular topic has. You shouldn't need to do do any of this unless you're upgrading from one version to another or are seeing pagination oddities."

    (sure wish blockquotes were styled here!)

    #60373
    chrishajer
    Participant

    Yes, it does. I am using that on mine. I can’t recall which version I am running, but the plugin is in English and works fine.

    See for yourself right here:

    http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/wppluginsj/bb-emoticons/

    (that is just the first google result, maybe the plugin exists elsewhere too)

    https://bbpress.org/forums/search.php?q=bb-emoticons

    #55382
    rashantha
    Member

    not a directory issue:

    .htaccess is in lankapod/forum/ folder this is the same folder bbpress is in as well.

    #60365
    wpitn2shape
    Member

    Here is my solution!

    Plugins for WordPress integration

    I hadn’t read that before since the title didn’t seem to suggest it was my problem. I went through all those steps, too. I need to skip down to the good stuff. Heh heh.

    #2333
    gusext
    Member

    Hi all.

    (Sorry for my bad english. I tried to be verbose in order to avoid my bad english affect your understanding)

    I wrote a plug-in, in order to have the best rewrite rules (in my opinion :p ) in the world.

    this plugin achieves two things:

    One: I need to show, in the URL, the logical parent-to-child relation between forums and topics, so

    http://www.example.com/bbpress/topic/my-sweet-dog

    URL has to show the forum that contains the topic, and become

    http://www.example.com/bbpress/forum/pets-discussions/topic/my-sweet-dog

    when performing the rewrite, the rules totally ignore the forum part, so it’s only a visual thing.

    and, more difficult,

    Two: I need to shorten the URL and have fewer subdirectories, so

    http://www.example.com/bbpress/forum/pets-discussions/topic/my-sweet-dog

    has to lose the useless “/forum/” and the useless “/topic/” parts, and become

    http://www.example.com/bbpress/pets-discussions/my-sweet-dog

    ATTENTION: you cannot do the second thing without the first thing. you must be able, in rewrite rules, to discriminate between a topic and a forum. you then will have that forums have one string (the forum slugged name), while topics have two strings (the forum slugged name and the topic slugged name), so you can do that, and /pets-discussion/my-sweet-dog will belong to “My Sweet Dog” topic in “Pets Discussions” forum

    In order to do so, I need to

    – modify forum link creation

    – modify topic link creation

    – modify rewrite rules

    – avoid a forum to have a reserved name, as using bbpressfolder/forumname to reach a forum is risky! I have to prevent a forum from having a slugged name like “bb-admin”!!! here’s a list of reserved words:

    – all words with a dot. those are files, like style.css and so on. the slugged names never have a dot. I have only to avoid rewrite of dotted words.

    – all bbpress subfolders and special folders. these are all that start with

    bb-* , my-*

    – every other reserved word already used by rewrite engine:

    tag, profiles, view, rss

    All this is achieved adding a “r-” string in front of the slugged string. so a forum named “My Forum!” will have “r-my-forum” as slugged name. Unfortunately, this filter operates also for topic names and maybe other things. this mean that a topic named “rss” will have “r-rss” as slugged name. Not so bad, in facts.

    So these are the operations:

    – add a filter to get_forum_link (delete the “/forum” part)

    – add a filter to get_topic_link (add the “forum/slug-forum-name” in the link, and eliminate the “/forum” and “/topic” parts)

    – modify the rewrite rules (I used IIS isapirewrite, but apache is pretty the same)

    – add a filter to bb_slug_sanitize (avoid a forum to have a reserved word as slugged-name, like “rss”, “profiles”, “my-plugins”, etc

    And there is the code for these operations:

    function my_get_forum_link_filter( $link , $forum_id = 0 ) {
    //retrieve the forum object
    $forum = get_forum( get_forum_id( $forum_id ));

    //check for rewrite
    $rewrite = bb_get_option( 'mod_rewrite' );
    if ( $rewrite ) {
    //what kind of rewrite there is? slug use "forum_slug" column, else the column is "forum_id"
    $column = ($rewrite === 'slugs')?('forum_slug'):('forum_id');

    // change /forum/pets-discussions in /pets-discussions
    // this work only if the rewrite module is modded!
    // and this work only if the slugged name will NEVER
    // be a reserved word like "rss" or "bb-images"
    // and this is achieved by a filter on bb_slug_sanitize
    $link = str_replace('forum/' . $forum->$column , $forum->$column, $link);
    }
    return $link; // Very important line!
    }

    add_filter( 'get_forum_link', 'my_get_forum_link_filter' );

    function my_get_topic_link_filter( $link, $topic_id = 0) {
    //retrieve the topic object
    $topic = get_topic( get_topic_id( $topic_id ));

    //retrieve the forum object that is the topic container
    $forum = get_forum( get_forum_id( $topic->forum_id ));

    //check for rewrite
    $rewrite = bb_get_option( 'mod_rewrite' );
    if ( $rewrite ) {
    //what kind of rewrite there is? slug use "forum_slug" column, else the column is "forum_id"
    $column = ($rewrite === 'slugs')?('forum_slug'):('forum_id');

    //create the "forum/pets-discussions" chunk to show the hierarchical relation forum->topic
    $forum_nice_uri = "forum/" . $forum->$column . "/";

    //attach the hierarchical chunk to the link
    $link = str_replace(bb_get_option('uri'), bb_get_option('uri') . $forum_nice_uri, $link);

    // change /forum/pets-discussions/topic/my-sweet-dog in /pets-discussions/my-sweet-dog
    // this work only if the rewrite module is modded!
    // and this work only if the slugged name will NEVER
    // be a reserved word like "rss" or "bb-images"
    // and this is achieved by a filter on bb_slug_sanitize
    $link = str_replace('forum/' . $forum->$column , $forum->$column, $link);
    $link = str_replace('topic/' . $topic->$column , $topic->$column, $link);
    }

    return $link; // Very important line!
    }

    add_filter( 'get_topic_link', 'my_get_topic_link_filter' );

    function my_bb_slug_sanitize_filter( $text_slug, $text_original = '', $length = 0 ) {
    // add "r-" by regex when the string begins with "bb-" or "my-" or is a reserved word
    return preg_replace('/^(my-.*|bb-.*|rss|tags|view|profiles)$/', 'r-$1', $text_slug);
    }

    add_filter( 'bb_slug_sanitize', 'my_bb_slug_sanitize_filter' );

    And there’s the rewrite rules! ATTENTION!!!!! these rules are for IIS isapirewrite, so these are to be modded to work with apache! sorry but I don’t have any apache installation to play with. It’s a simple task, anyway. Every regex guru and regex accolite can do that. Even a regex wannabe can find out googling.

    #	first we rewrite the pages for normal slug-rewrite usage

    RewriteRule /bbpress/tags/([^/?]+)/page/([0-9]+)(?:?(.*))? /forum2/tags.php?tag=$1&page=$2?3&$3: [I,L]
    RewriteRule /bbpress/tags/([^/?]+)/?(?:?(.*))? /forum2/tags.php?tag=$1?2&$2: [I,L]
    RewriteRule /bbpress/tags/?(?:?(.*))? /forum2/tags.php(?1?$1:) [I,L]
    RewriteRule /bbpress/profile/([^/?]+)/page/([0-9]+)(?:?(.*))? /forum2/profile.php?id=$1&page=$2?3&$3: [I,L]
    RewriteRule /bbpress/profile/([^/?]+)/([a-z-]+)(?:?(.*))? /forum2/profile.php?id=$1&tab=$2?3&$3: [I,L]
    RewriteRule /bbpress/profile/([^/?]+)/([a-z-]+)/page/([0-9]+)(?:?(.*))? /forum2/profile.php?id=$1&tab=$2&page=$3?4&$4: [I,L]
    RewriteRule /bbpress/profile/([^/?]+)/?(?:?(.*))? /forum2/profile.php?id=$1?2&$2: [I,L]
    RewriteRule /bbpress/view/([a-z-]+)/page/([0-9]+)(?:?(.*))? /forum2/view.php?view=$1&page=$2?3&$3: [I,L]
    RewriteRule /bbpress/view/([a-z-]+)(?:?(.*))? /forum2/view.php?view=$1?2&$2: [I,L]
    RewriteRule /bbpress/rss/(?:?(.*))? /forum2/rss.php?1&$1: [I,L]
    RewriteRule /bbpress/rss/forum/([0-9]+)(?:?(.*))? /forum2/rss.php?forum=$1?2&$2: [I,L]
    RewriteRule /bbpress/rss/topic/([0-9]+)(?:?(.*))? /forum2/rss.php?topic=$1?2&$2: [I,L]
    RewriteRule /bbpress/rss/tags/([a-z-]+)(?:?(.*))? /forum2/rss.php?tag=$1?2&$2: [I,L]
    RewriteRule /bbpress/rss/profile/([0-9]+)(?:?(.*))? /forum2/rss.php?profile=$1?2&$2: [I,L]

    # then we have a rule for special words, so they are left as they are, and the isapi module does not proceed further

    RewriteRule /bbpress/(my-.*|bb-.*|rss|tags|view|profiles)(/.*)? /forum2/$1$2 [I,L]

    # then we have the forum and topic rules.
    # ATTENTION: we DO NOT rewrite a dottet word, because dotted words can be files like style.css and so on

    # before there are the topic rewrites, that are longer
    # ATTENTION: note that the forum name is totally skipped trough ?: notation. In facts, bbpress doesn't need the forum name when reading a topic
    RewriteRule /bbpress/(?:[^./?]+)/([^./?]+)/page/([0-9]+)(?:?(.*))? /forum2/topic.php?id=$1&page=$2?3&$3: [I,L]
    RewriteRule /bbpress/(?:[^./?]+)/([^./?]+)/?(?:?(.*))? /forum2/topic.php?id=$1?2&$2: [I,L]

    # and after there are the forum rewrites, that are shorter
    RewriteRule /bbpress/([^./?]+)/page/([0-9]+)(?:?(.*))? /forum2/forum.php?id=$1&page=$2?3&$3: [I,L]
    RewriteRule /bbpress/([^./?]+)/?(?:?(.*))? /forum2/forum.php?id=$1?2&$2: [I,L]

    And that’s all. I hope someone can use this plugin :)

    Gus

    email: shiawase at gmail dot com

    #55381
    Sam Bauers
    Participant

    Read my posts above with regards to running bbPress in a sub-directory and having WordPress mod-rewrite rules in the parent directory.

    #60364
    wpitn2shape
    Member

    Another update:

    I just wrote an add-on to my WP plugin, and it works with BBPress. It relates to the post author, just like the WP plugin related to a post or comment author. It even uses IDs which turned out to be the same in both my installs. I have two users and they did migrate.

    Now why am I having the login problem?

    Anyone have a workaround?

    #60377
    wpitn2shape
    Member

    Holy cow! I stand corrected. I didn’t need any of that. The BBPress guys were right.

    I just tried changing every THE, like the_author, with post, like post_author. I just noticed it was called in the post template with post and not the. Holy cow I can’t believe I did that. So simple.

    So as soon as I get my upcoming designs site up, I’ll have this and other plugins available for download.

    Right now, if anyone wants an avatar plugin that works in WP, WPMU, and BBPress (but only if its integrated), reply! It’s actually a WP plugin but only when BBPress is integrated. I made it that way so it can require_once my main plugin, which is obviously for WP.

    So if you want avatars in both, my plugin should be nice!

    I’ve got to get to work on my site!

    #2331
    wpitn2shape
    Member

    I want to hook, et whatever, into the author id of a post to make my avatars plugin work with BBPress.

    The docs just say it’s the same as WordPress, but not exactly. The tags are different and my original plugin doesn’t work anyway (or perhaps it’s an integration problem with my installs. I’m running MU).

    I’m looking for equivalents like these or anything related

    $the_author = get_the_author_id();

    Where are the docs for the plugin API, basically? I don’t require you to look into what exact hooks, etc. I need, just lead me to info. If you want to do more, that’s fine, too. :-)

    #2329
    karaboga
    Participant

    Hi,

    We’re using bbPress 0.8.2.1 integrated with WordPress 2.1.3. Before upgrading to 0.8.2.1 everything was ok. But after upgrading, something has broken.

    bbPress cannot count these values properly:

    – Numbers of topic and the messages of a member in his profile. (For example, a member who had 6 pages of messages in his profile, has only 1 page now)

    – Number of “topics with no replies, topics with no tags, unresolved topics” values are wrong. Each has less pages now.

    – In admin panel, the number of members is not accurate. bbPress says there 714 members; but this value is 6109 (this is the correct one) in WordPress.

    What can be the problem? I can tell the plugins we use, if necessary to solve the problem. Thanks!

    #60362

    In reply to: Switching to bbpress

    _ck_
    Participant

    These might answer your questions:

    https://bbpress.org/forums/tags/phpbb

    #60363
    wpitn2shape
    Member

    An update:

    I don’t think my integration in general is working too well, because my avatar from my own avatar plugin is not displaying my user’s av. Of course this could be my plugin, and perhaps I need to work on an integration for THAT, too – ha ha.

    But I’m really worried about my MU integration..

    Looking closer I think it is the plugin in the sense that the post doesn’t bring up WP-type post code, but BBPress and the plugin doesn’t have that written. It’d have been nice for it to be more integrated on its own. I read others use their plugins on the forum pages. Sigh.

    #54683

    In reply to: Import SMF to bbPress

    Nola1974
    Participant

    I was able to import it perfectly, except now I cant log in with any of the usernames and after I had the new password generated, the admin account from SMF doesn’t have admin privileges on the bbpress board.

    #55806
    Nola1974
    Participant

    has anyone tried hacking this to limit the types of embeds.. say, make sure it’s only from x-tube/youtube/etc… maybe a url check?

    #2328
Viewing 25 results - 59,926 through 59,950 (of 64,425 total)
Skip to toolbar