Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 61,026 through 61,050 (of 64,518 total)
  • Author
    Search Results
  • #56533

    In reply to: Strut Your bbPress!

    rosebud
    Member

    A Cultural Center related to cinema.

    http://dodeca.org.uy/foro/

    ps: it is in Spanish…

    #58479
    ganzua
    Member

    Hey, fel 64!

    Then this is a bad new because it is not smart at all changing core files.

    However I have a half working “B plan” :)

    You can get rid of that streams.php error by pointing the ‘BBLANG’ to the wordpress .mo file.

    You have to change bbpress config.php like this;

    define('BBLANGDIR', '/wp-includes/languages/es_ES.mo');

    The problem is that when you copy the bbpress .mo to the wordpress .mo it doesn’t translate anything but the wp itself.

    Translation files come in two files; a .mo file and a .po file that I think is the source code.

    Perhaps you need to add anything to this .po file but I didn’t find out yet.

    #58576

    In reply to: User Count

    fel64
    Member

    Hmm, that’s a new bug (it didn’t to do that before). Pagination also uses that too large number of users. Made a ticket for it: #666.

    #58502
    quigley05
    Participant

    nope. i installed the bbpress already, it’s just that it is corrupting the links for some reason. for example a link such as http://bqtrademark.com/bbpress/topic/your-first-topic/?replies=1 goes straight to http://bqtrademark.com/

    #58575

    In reply to: User Count

    peter-b
    Member

    Thank you. I must browse the plugins pages in greater depth (still very much a newbie with bbpress)

    #58574

    In reply to: User Count

    Trent Adams
    Member

    For now, there is always the memberlist plugin by Ardenfrost:

    https://bbpress.org/plugins/topic/17?replies=5

    Trent

    Trent Adams
    Member

    Some permalinks are showing up fine and some are not for me. What do you have in your .htaccess file in the /forum/ folder? Is it just:

    + Options Multiview

    That seems to work for me. Without having a seperate .htaccess file for your bbPress folder, it will get messed up and try and use the wordpress .htaccess.

    As for speed, nothing changed for me with and without permalinks on.

    Trent

    #1987

    Topic: Norwegian translation

    in forum Plugins
    Bloggsbe
    Member

    If you’re looking for a Norwegian translastion, you’ll find one her; Norwegian_bbPress_08x.zip.

    If you read Norwegian, you can read more here; NorskWPMU.

    R

    #1986
    raymond
    Member

    To get bbpress login integrated with WPMU I had to add the following lines to config.php, after $bb->wp_xxx settings:

    if ( isset( $bb->wp_table_prefix ) ){

    $bb->usercookie = ‘wordpressuser’;

    $bb->passcookie = ‘wordpresspass’;

    }

    Because WPMU does not use HASH in its COOKIES.

    #56532

    In reply to: Strut Your bbPress!

    irfan199
    Member

    To complaint about anything post here at: http://www.komplain.org

    #58501
    Trent Adams
    Member

    Does editing your .htaccess to just having the following and nothing else work?:

    Options +MultiViews

    Does that work? Having it of course in your /bbpress/ folder only so that it is not screwing up your wordpress .htaccess file. Does that work for your installation?

    Trent

    #58557

    In reply to: editing profile

    Here’s a couple things to try.

    Disable all your plugins.

    Set $bb->mod_rewrite = false; in your bbPress’ config.php.

    #1985
    gostallion
    Member

    Hi, I just successfully installed bbpress and I love it to bits!

    I’m not sure why but new posts are automatically deleted from my forum. Is this part of a spam preventive feature? Or did i miss something?

    Thanks for everything!

    #58472

    In reply to: bbPress 0.8.2

    karaboga
    Participant

    Thanks for your explanations, i hope bbPress will be as clever as WordPress. :)

    #58459

    In reply to: Problems installing.

    Trent Adams
    Member

    Did you put the .htaccess file in your http://bqtrademark.com/bbpress/ from the instructions? I see that you are using ‘slug’ based entries. Maybe try putting the config.php back to false instead of slugs and see if that helps you. Since it is getting your wordpress installation, i am thinking it is the wordpress .htaccess file and not the bbPress file.

    Trent

    #56049
    c00l2sv
    Member

    For error: “Cannot redeclare class streamreader …”, read this…

    https://wordpress.org/support/topic/111411?replies=9

    #58054

    In reply to: bbSync

    antonskey
    Member

    like i said, i haven’t implemented this plugin as of yet (haven’t even installed bbpress, just planning to in the near future), but will this plugin allow me to put the “Add this topic to your favorites” link on the wordpress post page? i would like to have that capability to allow the users who don’t comment to create a list of their favorites without having to follow the link to the thread in the forum to do so.

    #58527
    fel64
    Member

    But it’s cool that you got the fix out as soon as you found out.

    #58407
    Kahil
    Member

    I got to thinking… being that it renames the image to their usernames, I thought that the following might work, but it doesn’t…

    <img src=”http://yourkahil.com/forum/avatars/&lt;?php echo $strtolower($user->user_identity); ?>.jpg” alt=”avatar” />

    Shouldn’t that work? I’m trying to get it to display the current username of the person visiting the site, provided they are logged in. If they aren’t logged in it shouldn’t display anything. Later I’d like to figure out how to do an if else statement so that if the visitor isn’t logged it, it will display a default image.

    #58496

    Do you have a (possibly hidden) .htaccess file in bbPress’ parent directory (one directory up from /bbpress)?

    #58495
    quigley05
    Participant

    the .htaccess file isnt in the main folder and i try to create it and my computer automatically hides it. here is what the contents are:

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /bbpress/

    RewriteRule ^forum/(.+)/page/([0-9]+)$ /bbpress/forum.php?id=$1&page=$2 [L,QSA]

    RewriteRule ^forum/(.+)/?$ /bbpress/forum.php?id=$1 [L,QSA]

    RewriteRule ^topic/(.+)/page/([0-9]+)$ /bbpress/topic.php?id=$1&page=$2 [L,QSA]

    RewriteRule ^topic/(.+)/?$ /bbpress/topic.php?id=$1 [L,QSA]

    RewriteRule ^tags/(.+)/page/([0-9]+)$ /bbpress/tags.php?tag=$1&page=$2 [L,QSA]

    RewriteRule ^tags/(.+)/?$ /bbpress/tags.php?tag=$1 [L,QSA]

    RewriteRule ^tags/?$ /bbpress/tags.php [L,QSA]

    RewriteRule ^profile/(.+)/page/([0-9]+)$ /bbpress/profile.php?id=$1&page=$2 [L,QSA]

    RewriteRule ^profile/(.+)/([a-z-]+)$ /bbpress/profile.php?id=$1&tab=$2 [L,QSA]

    RewriteRule ^profile/(.+)/([a-z-]+)/page/([0-9]+)$ /bbpress/profile.php?id=$1&tab=$2&page=$3 [L,QSA]

    RewriteRule ^profile/(.+)/?$ /bbpress/profile.php?id=$1 [L,QSA]

    RewriteRule ^view/([a-z-]+)/page/([0-9]+)$ /bbpress/view.php?view=$1&page=$2 [L,QSA]

    RewriteRule ^view/([a-z-]+)$ /bbpress/view.php?view=$1 [L,QSA]

    RewriteRule ^rss/$ /bbpress/rss.php [L,QSA]

    RewriteRule ^rss/forum/([0-9]+)$ /bbpress/rss.php?forum=$1 [L,QSA]

    RewriteRule ^rss/topic/([0-9]+)$ /bbpress/rss.php?topic=$1 [L,QSA]

    RewriteRule ^rss/tags/([a-z-]+)$ /bbpress/rss.php?tag=$1 [L,QSA]

    RewriteRule ^rss/profile/([0-9]+)$ /bbpress/rss.php?profile=$1 [L,QSA]

    </IfModule>

    #1981

    bbPress 0.8.2.1: Security Release

    0.8.2.1: Just look at all those periods!

    This is bbPress 0.8.2 with a security fix included. Everyone should upgrade (if you’re upgrading from 0.8.2, you can take a shortcut if you’re comfortable doing so. See the above blog posts.

    #58471

    In reply to: bbPress 0.8.2

    do you mean that “after upgrading and changing the permalink structure of a forum; the old permalinks does not redirect to the new one” ?

    No, I just meant that with the current code, if you’ve somehow managed to change the slug, you’ve broken the old links. But, as you point out, bbPress knows how to move “sideways” across different kinds of permalinks.

    WordPress allows you to change the slug and automatically redirects your old links to the new slug; it’s more clever than bbPress is at the moment :)

    #58470

    In reply to: bbPress 0.8.2

    csl749
    Member

    Fantastic – thank you very much!

    #58536
    drift82
    Member

    Thanks! I went ahead and put the two as different prefixes. Can you make sure the developers put a note about that in config.php!

Viewing 25 results - 61,026 through 61,050 (of 64,518 total)
Skip to toolbar