Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 47,901 through 47,925 (of 64,509 total)
  • Author
    Search Results
  • #80761
    johnhiler
    Member
    #32118
    #80689

    In reply to: When bbpress 1.0.3?

    johnhiler
    Member

    @grassrootspa – BuddyPress uses bbPress to power forums, so as long as BuddyPress is important for Automattic then that’s good for us. :-)

    We definitely need clear guidance around the future of bbPress. If it’s not going to be supported, then we will have to work together as a community to fork it…

    #80688

    In reply to: When bbpress 1.0.3?

    grassrootspa
    Member

    I agree 100% with Olaf.

    Seems like there is all this attention from Automattic re: BuddyPress development but next to none for bbPress. Sigh…

    #80759
    johnhiler
    Member

    Sometimes an upgrade can remove your admin/keymaster privileges… if so, this plugin can solve it:

    https://bbpress.org/plugins/topic/fix-admin-access/

    #80752

    In reply to: instable scripts

    johnhiler
    Member

    What is watpocom?

    What version of bbPress are you using? Is anything else besides bbPress installed and running on your server?

    #78876

    I was having the same problem. I back tracked through the code and found the problem was the admin section looking for a secure cookie and the login script was always setting the cookies without the secure flag. I worked around the issue by changing the force_ssl_admin function to always return true.

    function is located in: bbpress/bb-includes/backpress/functions.core.php line 802-ish

    hope this helps somebody.

    #32125
    meursault2
    Member

    Homepage – http://www.sublimeoblivion.com/forum/

    Using a heavily-customized theme of Options 0.1 Alpha (Dark) by Justin Tadlock (http://bbshowcase.org/themes/bbpress-options.zip)

    As you can see on my site, the categories (e.g. GLOBAL TRENDS) are automatically on the same margin as their subforums (World Economy; Politics, Society and Demography; Resource Depletion; etc). This means that at first glance it is not clear that they are, in fact, categories, not forums.

    I would greatly appreciate it if someone could tell or give a hint as to how I could make it so that the Subforums are positioned to the right of the Categories they are a part of, such as is the case at Simon & Schuster Forums (http://forums.simonandschuster.com/).

    Thanks in advance and Best.

    #32121
    Silvanovicz
    Member

    Hi all – i’ve been a happy user of bbPress for a while (www.wearepopslags.com), but only now did I receive a message from my hosting partner about instable or slow executing scripts. First of all, I don’t really understand what that means and the other info that followed after that really boggles my mind. Does anyone have a clue?

    Your website scripts needs to be looked at as they are taking too long to executed and are unstable, as shown below;

    PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+

    COMMAND

    22962 watpocom 16 0 32684 19m 6068 S 1.3 0.5 0:00.42

    php

    22876 watpocom 17 0 0 0 0 Z 0.3 0.0 0:00.42 php

    21347 watpocom 17 0 0 0 0 Z 0.0 0.0 0:00.66 php

    21494 watpocom 17 0 0 0 0 Z 0.0 0.0 0:00.62 php

    21581 watpocom 17 0 0 0 0 Z 0.0 0.0 0:00.49 php

    21717 watpocom 16 0 0 0 0 Z 0.0 0.0 0:00.47 php

    23010 watpocom 20 0 28684 14m 5896 S 0.0 0.4 0:00.20 php

    We allow max execution time 30s as per our T&C

    #32124
    mur4
    Member

    hello,

    after upgrad my bbpress installation to the latest release , i can no more see the menu in the admin panel , so i should put the link manually in the browser to get into the plugin administration section , setting section , edit section … or any other section

    whazt is the matter with thease please.

    AphelionZ
    Participant

    So I totally hacked up my htaccess file and now when I visit a nonexistant url it goes to the apache 404 page instead of the bbpress 404.. how do I need to change the code below to fix that?

    # BEGIN bbPress

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /community

    Options +FollowSymlinks +MultiViews

    RewriteRule ^forums$ forums/ [R=301]

    RewriteRule ^forums/$ /community/index.php?view=forums [P,L,QSA]

    RewriteRule ^leaderboards$ leaderboards/ [R=301]

    RewriteRule ^leaderboards/$ /community/index.php?view=leaderboards [P,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]

    RewriteRule ^page/([0-9]+)/?$ ?page=$1 [L,QSA]

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

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

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

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

    </IfModule>

    # END bbPress

    #80632

    In reply to: Buddybar in bbpress

    gerikg
    Member

    The creator is on BuddyPress.org they can help you, hopefully.

    #80757
    nutsmuggler
    Member

    Oops, just 2 mins after posting I found a list of BBpress functions, featuring is_bb_admin()

    Well, hope this monologue will be helpful to other developers :)

    #32122
    nutsmuggler
    Member

    Hello folks.

    I am quite experienced in WP plugin development, but I am new to bbpress.

    I am trying to port a WP plugin of mine to bbpress.

    The first thing I need to do is to detect whether the loaded page is in the admin are or not. IN WP I’d use is_admin(). I naïvely tried it in BBpress, no luck.

    Any suggestion?

    Cheers,

    Davide

    #78900
    adamcap
    Member

    This doesn’t seem to be working for me, all users seem to be assigned a default profile from my wordpress sync plugin. They are assessed as anonymous for some reason and given a specific profile from that plugin.

    #32120

    Topic: Navigation bar.

    in forum Installation
    InvTrdr
    Member

    Is it possible to add the entire contents of the wrapper in the stock theme “Kakumei” in the navigation bar above it? Will removing the wrapper do it or something else needs to be done too? Click on http://www.invictatrader.com/bbpress to see the nav bar and wrapper.

    Thank you.

    #80687

    In reply to: When bbpress 1.0.3?

    Olaf Lederer
    Participant

    The bbpress forum is more active than a year ago, so I think it’s time for a clear word about the future of bbpress.

    #80686

    In reply to: When bbpress 1.0.3?

    johnhiler
    Member

    Same (the lead developer on bbPress) has left the parent company of bbPress.

    More here:

    I have indeed left Automattic. I decided it was time to move on and pursue some of my own ideas and other interests.

    I won’t have much time to contribute to bbPress now and I can’t report who is going to be taking over from me or if anyone is even being sought for the role.

    https://bbpress.org/forums/topic/thanks-for-everything-sam#post-58402

    We’ve received no word as to who will replace him (or if anyone will replace him). I’m hoping that Automattic will clarify things on that front soon… it’s been a month or so since Sam announced his departure.

    So to come back to your original question: nobody knows when or if the next version of bbPress will come out!

    #32117
    jurasiks
    Participant

    Guys, it’s november soon, what about update?

    Anyway Thank you for your work.

    #80653
    darrinb
    Member

    Thanks Alekseo. Yeah, that was a workaround I was trying to avoid since this is for a client. I did find the solution here though: https://bbpress.org/plugins/topic/fix-admin-access/

    Worked like a charm!

    #50314
    anabelle
    Member

    I’ve been looking the code for a while, I’m not that familiar with bbPress yet, but i’d really like this feature so I’ll keep an eye on this.

    #80652
    alekseo
    Member

    Sign out. Then log in from your forum instead of logging in from wordpress.

    You might want to check my other thread about this. (I had the same problem)

    #32115
    #80141
    johnhiler
    Member

    This worked in 0.9 to fix issues with admin access… hopefully it works in 1.0 as well!

    https://bbpress.org/plugins/topic/fix-admin-access/

    #31972
    legacyblade
    Member

    Hello everyone. I am working on integrating a forum with my WordPress blog, and everything was going fine. Until I finished the install, and started working on the integration settings in the admin panel. In the section where it asks you to input the WordPress database prefix (I think it was to get the proper user tables), I put wp_ which is the prefix for my WordPress blog. Now, it doesn’t matter which account I log in with, I still cannot find the Admin link in the header. I’ve logged in both with my WordPress blog admin account, and my bbPress account. I’ve checked in the mySQL database, and my bbPress account still has the permission to access the admin panel, but I cannot see a link. It simply shows “Welcome, Legacyblade | Log Out”

    Normally in these situations, I’d just uninstall and reinstall, but I’m not sure what Word Press tables were modified, and don’t want to mess up my blog. Any help would be greatly appreciated.

Viewing 25 results - 47,901 through 47,925 (of 64,509 total)
Skip to toolbar