Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 39,476 through 39,500 (of 64,515 total)
  • Author
    Search Results
  • #37345
    lespionage
    Member

    i just installed the BBpress Latest Discussion plugin on my wordpress site and it’s great. The only problem is that the plugin excludes ÅÄ and Ö witch is a problem because most of the visitors are Swedish. Does any one know how to make this plugin allow latin characters or are there any other way to display latest post and author on my wordpress frontpage?

    Grateful for an answer.

    #37342
    WizenOak
    Member

    Hey guys,

    I’m currently putting together my first site using WordPress % bbPress (they are both linked etc).

    What i’m trying to do is display the 4 most recent active threads. By this, i do not mean the last 5 posts. I mean the latest 5 threads that have posts made in them. I hope that makes sense.

    E.g.

    [Thread Title] by [Original Poster]

    I came across a script which links my bbPress RSS feed to my WordPress custom template, here it is:

    <?php if(function_exists('fetch_feed')) {
    include_once(ABSPATH.WPINC.'/feed.php');
    $feed = fetch_feed('http://localhost/wordpress/bbpress/rss.php?forum=1');
    $limit = $feed->get_item_quantity(4);
    $items = $feed->get_items(0, $limit);
    }
    if ($limit == 0) echo '';
    else foreach ($items as $item) : ?>

    <ul class="latest">

    <li>

    <span class="title"><?php echo $item->get_title(); ?></span>

    </li>

    <?php endforeach; ?>

    I tried linking to “http://localhost/wordpress/bbpress/rss&#8221; etc but “http://localhost/wordpress/bbpress/rss.php?forum=1&#8221; was the only feed i could pick up. It doesn’t really matter though considering i’ll only have the single forum section anyway.

    Now, this produces the following on my WordPress template:

    Tigeran on “Your first topic”

    [Last Post Author] on [Thread Title]

    As stated before, i want it to appear like this:

    [Thread Title] by [Original Poster]

    I soon found out that i needed to edit the rss2.php file located in bbpressbb-templateskakumei folder as i’m using this template. Looking through it i came across this:

    <title><?php post_author(); ?> <?php _e('on')?> "<?php topic_title( $bb_post->topic_id ); ?>"</title>

    & changed it to this:

    <title><?php topic_title( $bb_post->topic_id ); ?> <?php _e('by')?> <?php post_author(); ?></title>

    But there is no change as it stays as the original. It’s like i cannot overwrite this file. Any help would be greatly appreciated.

    Thanks.

    #99112
    Ramiuz
    Participant

    John James Jacoby yes it is true.

    I wouldn´t say it if I had not experienced it.

    Akismet was made for blogging, and BBpress is not blogging.

    Akisment for BBpress will delete posts by normal people. And it won´t let you do anything about it. Infact, it won´t show you exactly what is deleting at all. It just keeps deleting stuff in its own, and keeps the keymaster in the dark.

    This made me especially angry when I managed to find out, that infact all Akismet had deleted, was normal posts. And not a single valid spam.

    So please stop reccomending this.

    If you have several thousands of members in your bbpress installation, you might accept losing a few posts. But if you´re trying to build a community, you must learn to value each post, each member makes.

    #76482
    lespionage
    Member

    Finally i found a solution!

    Apparently your wordpress installation must have the same language as your BBpress for it to take action, so when i changed my wordpress language to sv_SE the language in BBpress changed as well.

    #37339
    RichEdmonds
    Member

    Looking through the forum, I see there have been many problems surrounding the “pretty URL” configuration, namely the .htaccess. We seem to be experiencing the same issue, if we change permalinks to the last option for a complete listing, we receive a 500 server error (we don’t have a .htaccess at all from the installation for some reason). Manually creating a .htaccess file with the following (found this from the forums) seems to stop the 500 but then throws 404s when browsing the forums/topics/profiles etc.


    Options +FollowSymlinks

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /community/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    </IfModule>


    We experienced the same issue with Invision Power Board, but adding “Options +FollowSymlinks” corrected the problem and we were able to have sexy URLs. For bbPress, however, it seems to not make a shred of difference. We are aware of the correct .htaccess code being supplied via the permalinks section in the ACP, but we never get provided with such code. Every time we change the permalinks setting, we are hit by a 500. .htaccess files are not my strong point as you have more than likely guessed.

    The bbPress installation is located at /community while a WordPress installation (with working permalinks and .htaccess) is at root.

    Any help would be appreciated,

    Regards,

    Rich

    #94896
    Willabee
    Member

    @ qprints

    Hasn’t been an update the last 4 days, so nottin’ to talk about. Perhaps JJJ and Gautam are having a vacation? ^^

    @ Wildkyo

    Probably found a “bug” in my way of “intergrating” the bbpress theme, the edit function doesn’t work anymore.

    #99135

    In reply to: Questions for BBpress

    Yes it is in WordPress and the plugins section is in bbPress

    #104235

    In reply to: Questions for BBpress

    Yes it is in WordPress and the plugins section is in bbPress

    #37329

    Hi

    I upgraded this bbPress forum from bbPress 9.2 (I think) to 1.0.2:

    http://www.enghavepark.dk/forum/

    And now the tags are missing.

    When I try to add a tag I get this error:

    “The tag was not added. Either the tag name was invalid or the topic is closed.”

    There used to be tags.

    It’s an installation that is integrated with WordPress, which gave a few headaches until I got the bb-config.php adjusted.

    I re-uploaded the files just to make sure it wasn’t an fil upload error.

    The tags table is in the db with 32 tags.

    Any ideas why tags tags disappeared?

    #37326
    daverogers
    Member

    Could someone please tell me how to change the bbpress login link. I want to use the same login page as my wordpress login. They are both fully intergrated and working

    manythanks

    #37325

    Hi all

    My first “stupid” questions off many here on this forum ;-).

    This site BBpress.org is that made in wordpress and only the forum is bbpress?

    Thank you

    Anders

    #37323

    Topic: Subforums FrontPage

    in forum Themes
    zamajeni
    Member

    I read this topic million times to now, now I`ll just ask a little help from moderators.

    Here is my forum: http://www.gitariste.org/bbpress

    As you can see there are PLENTY of subforums. And i want to hide them, but to count the posts from subforums to original. Let me give you an explanation.

    FORUM Posts

    (forum) Tech-Stuff 2

    (sub-forum) Internet 4

    to look like this:

    FORUM Posts

    (forum) Tech-Stuff 6

    Which means, when i enter in Tech Stuff forum, i will see subforum and the posts in there.

    Here is the code of my front-page.php

    http://pastebin.com/9vtSvcEn

    (Just show me the code that I need to change to get my goal)

    Thxxxxx :D

    #98864
    lajkam
    Member
    #103964
    lajkam
    Member
    #82296

    In reply to: user does not exist

    lajkam
    Member
    #76897
    lajkam
    Member
    #37319
    jackspratt
    Member

    I get this error when i log out of bbpress. What do I do to fix this error.

    Please help. Much thanks in advance.

    Database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘LIMIT 1’ at line 1]

    SELECT * FROM bb_online WHERE user_id = LIMIT 1

    Caller: bb_logout, do_action, call_user_func_array, online_logout

    Warning: Cannot modify header information – headers already sent by (output started at /home/gotdread/public_html/got-dreadlocks-hive/bb-includes/backpress/class.bpdb.php:569) in /home/gotdread/public_html/got-dreadlocks-hive/bb-includes/functions.bb-pluggable.php on line 232

    #37317
    ericakadisco
    Member

    I’m looking for a plugin for bbpress that will hold posts with links in them in a pending queue to be approved by admin before posting.

    There is something like that in wordpress for comments with links in them. If the comment contains a link, it’s marked as pending and needs to be approved by admin before appearing.

    I’ve been getting a lot of spam lately on my forum and this would go a long way to prevent it.

    If anyone can point me in the right direction, that would be helpful. Thanks!

    #94895
    qprints
    Member

    omg last post was 2 days ago!… where am I going to get my bbpress plugin news fix from!

    #98536
    citizenkeith
    Participant

    Thanks for the reply, JJJ. I’m not a developer, so when I go to trac I’m easily overwhelmed by the number of tickets and not sure where to look for specifics.

    Sometimes it’s frustrating for users like me to get information about bbPress developments. I’d expect news to be posted here on the forum. Then there’s bbpdevel.wordpress.com, but that hasn’t been updated since September. I’m sure there’s info in IRC logs too. It seems there are many places for information to be posted, and it’s not always the place I expect it.

    Anyway, I really do appreciate the information, and I’m looking forward to 1.1 (and also an update to the 0.9 branch).

    #103636
    citizenkeith
    Participant

    Thanks for the reply, JJJ. I’m not a developer, so when I go to trac I’m easily overwhelmed by the number of tickets and not sure where to look for specifics.

    Sometimes it’s frustrating for users like me to get information about bbPress developments. I’d expect news to be posted here on the forum. Then there’s bbpdevel.wordpress.com, but that hasn’t been updated since September. I’m sure there’s info in IRC logs too. It seems there are many places for information to be posted, and it’s not always the place I expect it.

    Anyway, I really do appreciate the information, and I’m looking forward to 1.1 (and also an update to the 0.9 branch).

    Commentguerir
    Participant

    Hi _ck_, please need urgency your downgrade tool

    iqpkeq
    Member

    i found that:4 steps

    1,wp-config.php and install Plugin”Wordpress Integration” in WP

    2,BB-config.php in BB

    3,keep the same:(the point)

    WordPress bbPress

    AUTH_KEY <=> BB_AUTH_KEY

    SECURE_AUTH_KEY <=> BB_SECURE_AUTH_KEY

    LOGGED_IN_KEY <=> BB_LOGGED_IN_KEY

    4,input the :

    “auth” cookie salt

    “secure auth” cookie salt

    “logged in” cookie salt

    <B>Notice that!! </B>

    4 keys the same!

    3 salt the same!

    #99130
    danblogro
    Member

    Here is TXT file with this errors: http://www.box.net/shared/gjpkzegbli

    #104230
    danblogro
    Member

    Here is TXT file with this errors: http://www.box.net/shared/gjpkzegbli

Viewing 25 results - 39,476 through 39,500 (of 64,515 total)
Skip to toolbar