Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 58,376 through 58,400 (of 64,023 total)
  • Author
    Search Results
  • #51934

    In reply to: Language

    percept
    Member

    Doesn’t work overhere though:

    I put the file nl_NL.mo into

    bbpress/bb-includes/languages/

    changed the config file to:

    define(‘BBLANG’, ‘nl_NL’);

    and it doesn’t work.

    #62459
    Sam Bauers
    Participant

    Because of the restrictions on the bbPress logins in the current version I suggest using bbPress for registration/login. Logout can be either.

    With WordPress 2.5 and the next bbPress 0.8.x they will be as good as each other.

    Please don’t bump.

    #53016
    konandoil
    Member

    oh

    #62458
    intellivision
    Participant

    bump

    #2802
    slowmankyle
    Member

    I’ve been trying to hack the 2col_fixed_left theme provided by bbpressraw.com (many thanks) to fit into the website for the small nonprofit that I work for. I’ve gotten pretty far with it, but I’m stuck on a weird ordered list issue that looks fine on FF but is pretty screwy on IE.

    The site can be accessed at http://www.belovedcommunitycenter.org/forums. The frontpage looks fine, but the topics.php displays the post number and author name over the post content.

    Any tips folks have for a amateur designer would be much appreciated.

    Thanks,

    Kyle

    #62308
    Sam Bauers
    Participant

    Put this in a plugin file and activate it. It’s a drop-in replacement for bb_mail() from the current trunk

    <?php
    /*
    Plugin Name: Fix bb_mail function
    Plugin URI:
    Description: Temporary replacement for bb_mail() function
    Author: Sam Bauers
    Author URI:
    Version: 0.0.1
    */

    if ( !function_exists( 'bb_mail' ) ) :
    function bb_mail( $to, $subject, $message, $headers = '' ) {
    if (!is_array($headers)) {
    $headers = trim($headers);
    $headers = preg_split('@r(?:n{0,1})|n@', $headers);
    }

    if (!count($headers) || !count(preg_grep('/^from:s/im', $headers))) {
    $from = parse_url(bb_get_option('uri'));
    if ($from && $from['host']) {
    $from = trim(preg_replace('/^www./i', '', $from['host']));
    $headers[] = 'From: "' . bb_get_option('name') . '" <bbpress@' . $from . '>';
    }
    }
    $headers = trim(join("rn", $headers));

    return @mail($to, $subject, $message, $headers);
    }
    endif;
    ?>

    #2798

    Is there any way I can use an email address as the user name?

    This is OK in WordPress but not in BBPress, so integrated logins dont work.

    Hope someone can help. Thanks.

    #62455
    Sam Bauers
    Participant

    Which version of bbPress was this? 0.8.3.1 or latest trunk?

    #51931

    In reply to: Language

    Göran
    Member

    I have started a forum at http://www.goranlin.se/bbpress/

    I created a folder in the bb-includes folder and called it languages. In it I placed the file sv_SE.mo (for Swedish) and changed the config.php to

    define(‘BBLANG’, ‘sv_SV’);

    But the forum is still in English, what did I do wrong? Please, help!

    #61665

    In reply to: User Registration

    rslater
    Member

    http://thomasklaiber dot com/bbpress/post-notification/

    is where I got the plugin. I would compare these but I do not know what to look for.. by the way.. the plug in works very well!!

    #2796

    Hello Everyone

    I have integrated WordPress with bbPress and skinned them the same, but when I log into bbPress, or add a forum/topic/post i get a redirect error. I dont know what it wrong.

    Warning: parse_url(http:///mobile.feedmymedia.com/forum/) [function.parse-url]: Unable to parse URL in /home/mobile/public_html/forum/bb-includes/pluggable.php on line 208

    Warning: parse_url(http:///mobile.feedmymedia.com/forum/) [function.parse-url]: Unable to parse URL in /home/mobile/public_html/forum/bb-includes/pluggable.php on line 209

    Warning: Cannot modify header information – headers already sent by (output started at /home/mobile/public_html/forum/bb-includes/pluggable.php:208) in /home/mobile/public_html/forum/bb-includes/pluggable.php on line 164

    Thanks

    Warwick

    #62461
    Martino
    Member

    I’m using bbPress Integration and Use Display Name and BBPress is a shiny new 0.8.3.1 .

    Switching templates doesn’t solve the issue…

    #2797

    Topic: Theme designer wanted!

    in forum Themes
    dotdj
    Member

    Hello, I need urgently a designer to port WordPress theme to BBpress with some little modification. Please let me know (of course pay for work).

    Many thanks!

    #62460
    chrishajer
    Participant

    Are you using the “Admin can post anything” plugin?

    https://bbpress.org/forums/topic/apostrophe-issue?replies=7#post-12841

    It’s almost certainly a plugin issue. A stock bbPress install won’t do that, unless perhaps it’s really, really old. What version are you using (if you’re not using that plugin, or deactivating it doesn’t fix your problem(?

    #61664

    In reply to: User Registration

    chrishajer
    Participant

    Where did you download the plugin from. If someone can download the plugin and then compare it to the mail function in bbPress and see if there’s a reason it works in the plugin.

    #62454
    chrishajer
    Participant

    Glad you found it.

    #62453

    I found the problem. In the install form I set the Site Name and Forum Name the same, which caused a conflict. Perhaps the install.php script could be updated to catch this error, and prompt to use different names.

    #2794
    intellivision
    Participant

    Which is best to use for registering and logging in and out (for integrated sites, of course), the WP or bbPress pages?

    thx

    #62452
    chrishajer
    Participant

    Not sure why, but you’re missing all the topic poster name stuff:

    topic_poster
    topic_poster_name
    topic_last_poster
    topic_last_poster_name

     

    Maybe there was an error with the name you selected when you setup the forum? Maybe it didn’t like a special character or something?

    It’s not a problem with the database but a problem with the data that’s being sent to create that first topic. I suspect there is a problem with the name that was entered. Do you know what that was?

    #61661

    In reply to: User Registration

    chrishajer
    Participant

    It does. So far it appears the issue is that the IIS SMTP server doesn’t like something about the mail that’s being handed over from bbPress. Not sure what that is yet, but the SMTP server returns a 501 error then drops the connection. I need to find someone who is using IIS and has access to their logs to troubleshoot more thoroughly.

    #62305
    chrishajer
    Participant

    I suspect that IIS does not like something about the mail that’s being handed off by bbPress. Need someone with an IIS server and access to the SMTP logs that can help troubleshoot this.

    #2793
    lyzadanger
    Member

    I’m trying to be fairly aggressive with my bbPress integration into some WordPress pages. Our client wishes to see recent forum posts on specific subpages of the main site (which is WP). This works fine if I include bb-load in my wp-config.php file (as I’ve seen recommended) and then use some of the useful bbpress functions to integrate content. It works, that is, on the SUBPAGES.

    Strangely, however, the site’s landing page blows up. It’s using the exact same header as the rest of the site’s subpages, and is not using any of bbpress’ functions itself (just includes the bb-load.php file because it’s in wp-config.php), but the same wp_list_pages function call in the header (used for navigation) that works just fine for the subpages gives me an infinite loop of this error on the landing page:

    Warning: illegal offset type in [my-server-path-removed-here]/wp-includes/wp-db.php on line 252

    Removing bb-load.php from the wp-config.php file fixes this immediately.

    Note that I am using WP configured to use a STATIC page for the landing page. Both the home page template and the subpage template in question immediately call get_header(). Nothing happens before that.

    For now what I figure I’ll do is remove bb-load.php from the wp-config.php file and just include it exclusively in the subpage template I’m using for the pages I need forum stuff to show up.

    I googled and haven’t seen anything like the problem I’m having anywhere else. I kind of think it might be something getting upset during the walker class’ traversal. Anyone got any bright ideas?

    #62392
    starnet
    Member

    Beau,

    Which files should you put this code on? I am also installing bbPress on a MU WordPress. I get the same error. I thought maybe it’s because of WP/MU not compatible with bbPress. I have the same install directories (WP/MU on root and bbPress on /forums/). And I am getting the same 404 error on user profile and post.

    Thanks in advance

    #61660

    In reply to: User Registration

    rslater
    Member

    IIS 6.0

    windows server 2003

    the site is on a dedicated server. Not sure if it is a server setting or a synch issue / coding issue with bbpress and wpress.

    after more testing here is what works currently.

    – Wp lost password and new registration works fine now as far as emailing out.

    – bbpress will email a notification when someone posts a new comment to your “favorites” topic

    -bbpress will NOT email out a new registration or a lost password

    Does that help in any to narrow it down?

    #2792

    I’ve gone over the configuration file, and it all looks correct. I am installing in forums.nerdgrind.com, which I gave it’s own directory, so there is no wordpress installation sharing the forums directory. I’m not sure why I keep getting this error:

    bbPress 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 ‘ ”, , ”, ‘2008-01-16 00:57:55” at line 4]

    INSERT INTO bb_topics (topic_title, topic_slug, topic_poster, topic_poster_name, topic_last_poster, topic_last_poster_name, topic_start_time, topic_time, forum_id) VALUES (‘Your first topic’, ‘your-first-topic’, , ”, , ”, ‘2008-01-16 00:57:55’, ‘2008-01-16 00:57:55’, 1)

    The database is setup, and all other tables are created except this one. I am using the latest bbPress.

Viewing 25 results - 58,376 through 58,400 (of 64,023 total)
Skip to toolbar