Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 52,151 through 52,175 (of 64,445 total)
  • Author
    Search Results
  • #73242
    gradek
    Member

    Ok, I did some tests, it seems to happen when I enable this plugin:

    bbPress Attachments

    — big bummer.

    #7821

    Topic: Profile Picture

    in forum Installation
    Designing
    Member

    Hi, I tried to search this.. but couldnt find anything.

    I just uploaded bbpress forum on my site, but i cant seem to upload a profile pic.. or let other users do so.

    I have looked in the settings.. too.

    Please suggest.

    Thanks, DS.

    #66155
    bycbyc
    Member

    Hi All,

    I just installed WordPress MU 2.7.1 and attempting to install bbPress (brubeck) and during the installer, it’s asking for 2 keys that I don’t see anywhere in the WP config file. The cookie and db key. In my WP config file I only see 3 keys and it’s corresponding salt entries. They’re Auth, Secure, Logged in, and Nonce.

    Thanks for the help!

    #73202
    _ck_
    Participant

    Finding well managed shared hosting that’s affordable is difficult.

    Any host can slip up and end up with bad neighbors on a shared box.

    Loads as high as you are reporting though should be automatically firing off alerts to the host though, so they either

    1. aren’t getting alerts

    2. getting them but ignoring them because they know it’s the overloading backup routine each morning

    bbPress doesn’t have a page cache yet like WordPress’s wp-cache but in theory doesn’t actually need one unless you have a very active forum (or a bad host).

    As far as finding a “better” host, it’s not easy but here’s some ideas:

    http://ckon.wordpress.com/2008/12/18/some-tech-tips-to-find-a-better-wordpress-or-bbpress-host/

    Ben L.
    Member

    First of all, if you already had members on the forum that aren’t on the blog, integration will lose them.

    I suggest going into your database and running DELETE FROM bb_topicmeta WHERE meta_key=wp_table_prefix LIMIT 1 to remove the integration.

    #73161

    In reply to: Frightmare Haunt Forum

    cldnails
    Member

    Interesting niche, good luck. Although, out of the box bbPress isn’t very scary looking. ;)

    #73249
    cldnails
    Member

    Agreed with statements here, bbPress wasn’t created(being developed) to compete with the likes of vBulletin, SMF, etc. This is forum software that is light weight, no lacey undergarments, ready to roll and fast. If you want silly add-ons, a ton of user generated themes, and/or costly support looking elsewhere may be your best bet.

    #54705
    cldnails
    Member

    I just use CarpRSS to convert RSS to html in my bbPress installation.

    #73199
    _ck_
    Participant

    Early in the morning on a shared box may mean your provider doesn’t know what they are doing and is not running the daily backup in “nice” mode, therefore overloading the server.

    Either that or you might have a misbehaving neighbor.

    bbPress doesn’t naturally cause that kind of problem, unless you are running an older alpha which uses more queries – and some of my plugins like hidden forums had a bug in a previous version that caused extra queries – you only used 10 queries so I think you are running 0.9

    If you know what you are doing, even on a shared host you can run a simple PHP program with cron checking the load every minute – the moment it starts to spike, say over 3.0, you can have it email you “ps aux” which will show you which neighbor is misbehaving, even on a shared host.

    See this:

    bb_init = 0.178 <<<


    bbpress’s core is completely loaded at this point,

    plugins, everything the amount of time is okay and acceptable – 50 to 100 files have been loaded

    bb_index.php_pre_db = 4.966 <<<—- this is kind of a lie, it’s not pre-db, there have been some queries…

    so in 4.5 seconds or so, here’s what’s been done:

    $forums = get_forums();
    $topics = get_latest_topics();
    $super_stickies = get_sticky_topics();

    it’s actually loaded all the forums and gotten the latest topics

    It’s using about 8-9 queries so 4.5 seconds is absolutely terrible, almost impossible if the server is working correctly.

    If your page time is normally under 1 second for that part, here’s what I think is happening.

    I think your host is running a backup at that hour OR one of your neighbors on the same box is doing a remote backup to/from the server, including mysql.

    That ties up the cpu and ties up mysql because the disk is thrashing and mysql is not caching at all.

    To prove my theory, see if it happen every day at the exact hour.

    Even more suspect would be if it happens on the hour or half hour.

    By the way, why do you assume it’s “your” mysql connections that have been exhausted – it’s actually the entire server’s pool on a shared host. I suspect you have a misbehaving neighbor who is accidentally making you think it’s you that’s the problem.

    #54704

    WooHoo! A plugin accomplishing that has been just released:

    https://bbpress.org/plugins/topic/wordpress-latest-post/ <— in plugin repository

    http://www.atsutane.net/2009/04/wordpress-inside-bbpress-part-1.html <— author’s blog with more info on usage

    Tested it and it works well on WP 2.7.1 and bbPress 0.9.4 :)

    #60227
    phishshticks
    Member

    if you edit the php file, you can manually specify your code where you see ‘##-#######-#’

    #73248
    johnhiler
    Member

    Yah I definitely agree! You have to be pretty computer literate to use bbPress… and there isn’t great support, other than us volunteers.

    But it’s like that quote from Churchill: “Democracy is the worst form of government except all the others that have been tried.”

    bbPress is the worst message board software ever – except for all the others I have ever tried. :-)

    #7817
    petertoshas
    Member

    Hellooo!

    Well, i recently change to bbpress (this rocks) and i’m trying to make a theme compatible with the current theme in my wordpress blog. It went pretty well, until i came across the post-form to create a new topic and i’m in blank…

    Let me explain: i’m using the theme kakumei, and instead off the hottags on the left, i’m going with a sidebar with other features (tags, the ‘fav this’ feature, link to main forum, etc…). This works well in the front-page, in the topic, profile, and other, but i’m having some problems put this working in the post-form.php !

    The way i use to style was: the sidebar in <div id=sidebar></div>, and the content (infobox, post, topic meta, etc) in <div id=”content”></div> just like the kakumei theme.

    My problem with the post-form.php is the function that is used in the functions.bb-template to the ‘pre_post_form’ and ‘post_post_form’. Using the <div id=”content”></div> in the post-form.php the <div> actually appears in the middle of the code of the form in the post-form and the content dont stay aligned. Putting the <div> in the functions.bb-template, just makes the <div> repeating in the others pages where the post-form is used, and the content dont stay aligned anyway.

    i’ll really appreciate if you could suggest me some ideas. tks :)

    Ben L.
    Member

    I’m making a moderation/administration log feature for the bbPress Moderation Suite and I’m wondering what actions you consider “important” enough to log.

    So far, I have plugin (de)activation and forum deletion.

    #73247
    Cyndy Otty
    Participant

    I suppose this is a matter of opinion, really. Granted it’s not the most user-friendly software out there and it can be much more complex to customize, but it is also a project that is in development and such things do take time to perfect.

    However for what it is – a no-frills, basic forum software – it is actually exactly that right from the start. :)

    #73246
    bruinfelix
    Member

    Youre right! ;-)

    #7812
    atkins
    Member

    it is very difficult to use and to get support if you are not computer literate. There is no support apart from some dedicated volunteers. People would be advised to use another Forum option unless you are very technically inclined or have someone on retainer that knows how to use the software.

    #54703

    I’m also looking for that feature. Is there a working plugin?

    Or maybe there could be a solution which uses some kind of feed parsing to display latest posts?

    That is what I use to display latest discussions from bbPress into WordPress – just use the built-in RSS-parser. Is there something like that in bbPress?

    #7810

    Topic: bbsync

    in forum Plugins

    this is a neat plugin, but is it possible to go backwards?

    Is it possible to import new threads from bbpress as posts in the wordpress blog? Not all of them, but ones labelled/tagged/etc in a specific way?

    #73233

    I haven’t done any kind of integration. I just have the two things installed in the same home directory and then tried to make this plugin work. My wordpress is using a theme as I set it up before the bbpress but I did not do anything with bbpress, it is a clean install.

    The site is temporarily at http://www.alwaysbeenagypsy.com/thefashionstudent/

    and http://www.alwaysbeenagypsy.com/thefashionstudent/forum/

    (though I am playing a lot with it so it may or may not be up if you try)

    I’m wondering if maybe I got some of the keys wrong, would that do it?

    In the documentation it says to use the “secret key” from the wp-config file but there is no secret key so I guessed which one sounded the most like it could be a secret key. The keys are:

    AUTH_KEY

    SECURE_AUTH_KEY

    LOGGED_IN_KEY

    NONCE_KEY

    I have seen other forums that integrate with wordpress but to be honest I like the simplicity of this one, the others have way too much shit in them so I hope I can figure out how to get this working! :)

    #49970

    In reply to: En español

    javalotodo
    Member

    Hola a todos!

    Me he tomado la libertad de modificar y terminar la traducción de la versión 0.8 que cogí del directorio Subversion. Los archivos se pueden descargar de: http://www.javalotodo.com/2009/04/25/bbpress-en-espanol/

    Si alguien sabe cómo subirlos al Subversion que me lo diga.

    Un saludo!

    #73232
    johnhiler
    Member

    Hmm, those are the versions that I think these plugins were designed for.

    Is it possible you’re using seamless integration? Other users have reported similar problems between Freshly Baked Cookies and seamless integration:

    * https://bbpress.org/plugins/topic/freshly-baked-cookies/page/2/#post-2951

    * https://bbpress.org/forums/topic/seemless-wordpress-integration

    #73231

    sorry I should have mentioned that. I am using WordPress 2.7.1 and bbpress 0.9.0.4

    These were both downloaded and installed yesterday.

    #73209
    atkins
    Member

    I am not able to post a youtube video with this program and I am the admin.

    I have latest stable version of bbpress

    thanks

Viewing 25 results - 52,151 through 52,175 (of 64,445 total)
Skip to toolbar