Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 61,876 through 61,900 (of 64,511 total)
  • Author
    Search Results
  • #56343
    chrishajer
    Participant

    I just created a login at http://www.motiongraphics.it/forum/ and everything worked fine. I was able to do login and create a topic just fine.

    The really weird thing is that the forum initially looked like a standard bbPress install (kakumei or whatever that theme is called) then, after I created a topic, it switched over to what looks like this bbpress.org forum theme. It was so disorienting, I thought I posted on bbpress by mistake!

    So, unless you were messing with the templates, something weird is going on. However, I did not see the error you mentioned, I just had the weirdness with the differing templates.

    Sorry for my Italian :)

    #50827

    In reply to: Avatars

    thegunman
    Member

    You say this is bbpress code but after searching through every file I couldn’t find any reference to avatar in any of the code. Where exactly is this block of code placed?

    #1664
    tegolino
    Member

    I’m trying to set the theme of my blog in bbpress

    I have followed all rules, but this is my error:

    Fatal error: Call to undefined function: get_settings() in /web/htdocs/www.motiongraphics.it/home/forum/my-templates/mw1.1/themetoolkit.php on line 331

    Why?!

    #55906
    Sam Bauers
    Participant

    Now available in bbPress plugin browser:

    https://bbpress.org/plugins/topic/44

    #55893
    Sam Bauers
    Participant

    Now available in bbPress plugin browser:

    https://bbpress.org/plugins/topic/43

    #1662
    Sam Bauers
    Participant

    Allows passing of HTTP authentication for creation/authentication within bbPress

    http://bbpress.org/plugins/topic/42

    Born from this thread:

    http://bbpress.org/forums/topic/849

    #1661
    Usayd
    Member

    Hi

    I was following a tutorial which says that in order to use wordpress tags you need to include the blog header in your bbpress config. The tags work when I do this, however my bbpress-admin just gives me a whitepage?

    Thanks

    #52208
    Trent Adams
    Member

    My stupidity! It should be working now with the same link.

    http://onvertigo.com/downloads/bbpress-forum.zip

    Trent

    #56293

    In reply to: config.php

    Trent Adams
    Member

    You have download your copy of /bb-includes/db-mysqli.php and then put in the parts in GREEN and take out the parts in RED out of this file:

    https://trac.bbpress.org/attachment/ticket/627/mysqli-connection-port-build788.patch

    Trent

    #56324
    fel64
    Member

    Speaking of which, it doesn’t add a topic-slug either, which is required to have permalinks set to slug. I tried adding the topic_slug field and a variable to make it update, but when I did that it didn’t work at all :( Can someone else have a look at this too?

    #55892
    fel64
    Member

    I also added a snippet of code to append a link to the last post.

    Find the end of the function page_links_add_links and replace this

    return $title;
    }

    with this

    $felgtlpl = get_topic_last_post_link($topic->topic_id);
    $title = $title . ' <a href="' . $felgtlpl . '">&nbsp;&raquo;&nbsp;</a>';

    return $title;
    }

    #56291

    In reply to: config.php

    Sam Bauers
    Participant

    By the looks of things, mysqli_connect doesn’t support the “hostname:port” syntax on remote mysql servers (i.e. other than localhost), but mysql_connect does…

    I’ve reported this as a bug and submitted a patch here:

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

    #56290

    In reply to: config.php

    archasek
    Member

    wordpress:

    define(‘DB_HOST’, ‘sql.kmr.nazwa.pl:3305’);

    define(‘DB_NAME’, ‘kmr’);

    bbpress:

    define(‘BBDB_NAME’, ‘kmr’);

    define(‘BBDB_HOST’, ‘sql.kmr.nazwa.pl:3305’);

    #56288

    In reply to: config.php

    archasek
    Member

    sql.kmr.nazwa.pl:3305 i tried also localhost and host without port defined.

    version of server: 5.0.26-log

    version of mysql: 4.1.11

    http://www.kmr.nazwa.pl – wordpress

    http://www.kmr.nazwa.pl/forum – bbpress.

    #56169

    In reply to: Quote Plugin Weirdness

    citizenkeith
    Participant

    Bah, this is bb (and WP) trying to be clever. It’s annoying; they both mess with your code too much. Although at least WP can handle nested blockquotes.

    Could nested blockquotes be handled by CSS? Does bbPress need to “handle” nested blockquotes in a special way?

    #56259

    In reply to: bbpress possibilities

    Trent Adams
    Member

    It hasn’t been talked about for a ‘long time’ here in the forums, but if you just embed your bbPress install around your WP theme, it will be calling the wordpress stuff for the sidebar and then have your forum on something like a WP ‘page’. We just implemented the plugin admin for the 1.0 release and 0.8 has the theme admin. It won’t be too long before someone figures out how to get ‘sidebar’ widgets working with bbPress…..just time!

    Trent

    #56323
    Trent Adams
    Member

    If you setup that old WordPress blog as an integration with your bbPress installation and then install the bbPress-Post plugin from http://dev.mbzeus.net/forum/ you can do it. It is a real pain in the butt, but if you have the integration plugin working, you can ‘edit’ each of the old posts and then save them again . This creates the entry in bbPress. Last time I checked though, it didn’t update the timestamp to the original post time though.

    Trent

    #55693

    In reply to: Plugin: Latest Replies

    LMD
    Participant

    I’m not that surpised it didn’t work. Here is a different fix, editing the ‘bbPress Post’ plugin itself. I’m using line numbers to reference the code. I’ve based the line numbers on an UNEDITED version of the ‘bbpress_post.php’ file. So, if you open up a fresh version of the file that hasn’t been touched (i.e. do not use the version you previously added my ‘fix’ to – you no longer need that fix).

    Try these code changes:

    Line # 457 – replace with:

    bbpress_bb_new_post($topic_id, $content, $forum, $author, $now, $title);

    Line #533 – replace with:

    $wpdb->query("UPDATE ". $bb_table_prefix ."posts SET post_text='$content', post_title='$title' WHERE post_id=$bbpost_id LIMIT 1;");

    Line #540 – replace with:

    $otherdb->query("UPDATE ". $bb_table_prefix ."posts SET post_text='$content', post_title='$title' WHERE post_id=$bbpost_id LIMIT 1;");

    Line #585 – replace with:

    function bbpress_bb_new_post( $topic_id, $content, $forum, $author, $now, $title ) { // making new post in bbPress

    Line #587 – replace with:

    $wpdb->query("INSERT INTO ". $bb_table_prefix ."posts VALUES ('', $forum, $topic_id, $author, '$content', '$now', '127.0.0.1', 0, 1, $title);");

    Line #591 – replace with:

    $otherdb->query("INSERT INTO ". $bb_table_prefix ."posts VALUES ('', $forum, $topic_id, $author, '$content', '$now', '127.0.0.1', 0, 1, $title);");

    Note: this is assumes two things:

    1. That in the bbPress ‘posts’ table the ‘post_title’ field was added as the last field.

    2. That you do not have any other plugins that have added fields to the bbPress database.

    Let me know how you get on this time.

    #56271

    In reply to: Integration issues?

    Trent Adams
    Member

    Are you using any plugin on this installation? I have heard of people having this issue when using the bbPress-Post plugin for posts out of wordpress.

    Trent

    #56144

    In reply to: Some links do not work

    chrishajer
    Participant

    Maybe your server does not support sending mail. I think there have been people who have chosen to display the password rather than emailing it when their server cannot send email:

    https://bbpress.org/forums/topic/82

    #56322
    chrishajer
    Participant

    I don’t think so. Blogs and forums serve two different purposes and I don’t know that anyone has written an exporter to get WordPress blog posts into bbPress.

    #56285

    In reply to: config.php

    chrishajer
    Participant

    It looks like WordPress uses the same exact syntax for the connection, so, it SHOULD work. Are you certain the string is exactly the same as the one you have in wp-config.php? If it works in WordPress, I think it should work in bbPress.

    #55691

    In reply to: Plugin: Latest Replies

    louisedade, thanks so much for getting back to me on this and yes, I’ve emailed the other plugin developer but no response as yet.

    I am enormously appreciative of you going to the trouble of working on a possible fix. I hear what you’re saying about your views on its chances, but I will give it a try and head back here to let you know if it works or no.

    Other than that, I only hope the BBPress Post plugin author gets back to me on this. But yeah, thank you!

    #1660
    maker
    Member

    Is there information on or a plugin on exporting wordpress posts into bbpress?

    I’d like to export an old wordpress blog into my forums.

    #56279
    chrishajer
    Participant

    Did you modify any of your template files to call any of your plugins? Sounds like a template file is referencing a plugin that no longer exists.

    Let’s see, which of these require a modification to the template:

    NO: allow-images.php

    ?: bb-avatar.php

    NO: comment_QT_4_bbpress.php

    NO: fix-bbpress.php

    NO: js_quicktags.js

    Maybe the bb-avatar plugin required a change to a template and that is causing trouble now?

Viewing 25 results - 61,876 through 61,900 (of 64,511 total)
Skip to toolbar