Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 59,701 through 59,725 (of 64,454 total)
  • Author
    Search Results
  • #2432
    rudyc
    Member

    I’ve just installed bbPress for the first time at http://rudycarrera.com/bbpress, and it looks like it’ll be a fun program to use. However, I received this strange error message when trying to log out:

    bbPress database error: [Table ‘rudycar4_bb.bb_online’ doesn’t exist]

    SELECT * FROM bb_online WHERE user_id = 1 LIMIT 1

    Warning: Cannot modify header information – headers already sent by (output started at /home/rudycar4/public_html/bbpress/bb-includes/db-mysqli.php:158) in /home/rudycar4/public_html/bbpress/bb-includes/pluggable.php on line 168

    How do I fix that?!

    #2430
    #2429
    andorko
    Member

    bbPress is installed in /forums and WPMU is installed in /blogs .

    The cookie and database integration works fine.

    I am able to access bbPress functions from within WPMU by adding this to the end of /blogs/wp-config.php

    // Include bbPress functions in WPMU

    define('WP_BB', true); // Avoid duplicate function declarations

    require_once( ABSPATH . '../forums/bb-load.php');

    I’m trying to add WPMU functions to bbPress. I’ve tried adding this to the beginning of /forums/config.php . I’ve also tried putting this in the beginning of the file.

    require_once( dirname(__FILE__) . '/../blogs/wp-blog-header.php')

    When I go to /forums/ I’m redirected to the WPMU sign up page (/blogs/wp-signup.php?new=%2F).

    I’ve also created a simple file ( /test.php ) and tried to integrate it with wpmu. It it also redirected to the WPMU sign up page.

    Test Start

    <?php

    require_once( dirname(__FILE__) . '/blogs/wp-blog-header.php');

    ?>

    Test End

    Do I need to create a WPMU rewrite rule in the wp_1_options rewrite rulerecord? There shouldn’t be any need for an .htaccess rewrite rule since /forums and /blogs are not in subfolders of either.

    Any ideas how to make this work?

    #60757

    In reply to: PHPBB3 Converstion

    flippy
    Member

    I agree with u. I also need a converter for my phpbb forum. There is one for phpbb2, but it’s not working with bbpress 0.8.2.1 I mean https://bbpress.org/forums/topic/importing-from-phpbb?replies=26.

    #60803

    In reply to: Simple registration

    chrishajer
    Participant

    There was talk a while ago of servers that would not send email, so there was a way to display the password:

    Users dont receive password after registration

    A lot of that discussion was specifically to get around not emailing the password, it displays it instead. It’s not exactly what you need, but maybe the approach could be the same. You could still require username and email, but then their password would be displayed instead of emailed.

    I think also maybe you underestimate your users. The password arrives via email in less than a minute usually. If they can’t hang around for that, why would they hang around on a forum at all?

    HTH

    #60787

    In reply to: WordPress Integration

    wrsantiago
    Member

    I think maybe I need to do this but I dont know how

    bbPress will not have access to WordPress’ functions unless you manually tell bbPress to load WordPress first. In order to do that, you need to put require_once(‘path/to/wp-blog-header.php’); in bbPress’ config.php (wp-blog-header is in the same directory as WordPress’ wp-config.php file).

    #2424
    wrsantiago
    Member

    I am trying to make my wordpress blog integrate with bbpress but I think their might be a problem. I have two wordpress blogs in my webserver so maybe bbpress dont know with table to look.

    This is if I log in first in bbpress without login in the blog

    bbPress database error: [Table ‘libreexp_bbpress.wp_users’ doesn’t exist]

    SELECT * FROM wp_users WHERE user_login = ‘admin’ AND SUBSTRING_INDEX( user_pass, ‘—‘, 1 ) = ‘fb756366af4998835a845e97addc3a3b’

    bbPress database error: [Table ‘libreexp_bbpress.wp_users’ doesn’t exist]

    SELECT * FROM wp_users WHERE user_login = ‘admin’

    Log in Failed

    This is if I log in to the blog first and then go to the bbpress

    bbPress database error: [Table ‘libreexp_bbpress.wp_users’ doesn’t exist]

    SELECT * FROM wp_users WHERE user_login = ‘admin’ AND MD5( user_pass ) = ‘d465d8c05bbf7c921e1fad84d4358e44’

    bbPress database error: [Table ‘libreexp_bbpress.wp_users’ doesn’t exist]

    SELECT * FROM wp_users WHERE user_login = ‘admin’ AND MD5( user_pass ) = ‘d465d8c05bbf7c921e1fad84d4358e44’

    This is my conf file

    // The rest is only useful if you are integrating bbPress with WordPress.

    // If you’re not, just leave it as it is.

    $bb->wp_table_prefix = ‘wp_’; // WordPress table prefix. Example: ‘wp_’;

    $bb->wp_home = ‘http://macuserboricua.com&#8217;; // WordPress – Options->General: Blog address (URL) // Example: ‘http://example.com&#8217;

    $bb->wp_siteurl = ‘http://macuserboricua.com&#8217;; // WordPress – Options->General: WordPress address (URL) // Example: ‘http://example.com&#8217;

    Help please I would love to mac this two work together

    #60749
    chanzero
    Member

    Thanks for your response chrishajer. You made me realize I had put the quicktags-4-bbpress folder in /my-plugins/ instead of putting the files themselves in /my-plugins/. (Although in my defense, I was just following the instructions of the readme included with the plugin). Just moving them directly to /my-plugins/ didn’t fix anything.

    Since BBpress plugin DB seems to be down I decided to download the plugin from 40annibuttati.it and uploading those files fixed my problem. So maybe bbpress DB has a different (wrong?) file? Anyway, this is what worked for me:

    Comment Quicktag 4 bbPress Plugin

    Thanks again!

    #2423

    We are excited about the possibility of converting from PHPBB3 to BBPress. However all the discussions about conversion seem to surround previous versions of PHPBB. Am I missing an appropriate thread? Does anyone have any suggestions?

    Does anyone know if somebody may be working on this?

    Thanks

    #60754
    chrishajer
    Participant

    > Where it says “$bb->wp_table_prefix” – where do I find

    > the prefix?

    It would be listed in your WordPress wp-config.php – by default, it’s wp_

    > $bb->wp_home & $bb->wp_siteurl – that is just my

    > site url only, nothing more – http://www.blah.com

    That’s fine, no trailing slash.

    > Once I do the above how to I make the forum part of

    > wordpress, will it automtically look like this forum?

    Nope – it’s an independent application that you need to style to get it to look like your WP site.

    Search for threads tagged “integration”:

    https://bbpress.org/forums/tags/integration

    This was a good summary I thought:

    http://www.adityanaik.com/integratepress-part-i/

    #55810
    Detective
    Member

    I use this plugin ported from a Vanilla Extension:

    <?php
    /*
    Plugin Name: Video Tags
    Plugin URI: http://lussumo.com/addons/index.php?PostBackAction=AddOn&AddOnID=33
    Description: Ported from SirNot's HtmlFormatter for Vanilla
    Author URI:
    Version: 0.1
    */

    //allow youtube and google videos to be posted, tags are:
    //<video type="google">docid</video> (google video) -or-
    //<video type="youtube">video id</video> (youtube) -or-

    function video_embed($texto){
    $sReturn = preg_replace_callback(
    '/<video(?>s+)type=(["'

    ])((?>w+))1(?>s*)>([A-Za-z-_d]+?)</video>/is’,

    ‘VideoLink’,

    $texto

    );

    return $sReturn;

    }

    function VideoLink($Matches)

    {

    $Type = strtolower(trim($Matches[2]));

    $ID = $Matches[3];

    switch($Type)

    {

    case ‘google’ : return (‘<embed style=”width: 400px; height: 326px;” id=”VideoPlayback” ‘.

    ‘type=”application/x-shockwave-flash” src=”http://video.google.com/googleplayer.swf?docId=&#8217;.$ID.'”></embed>’);

    case ‘youtube’ : return (‘<object width=”425″ height=”350″><param name=”movie” value=”http://www.youtube.com/v/&#8217;.$ID.'”></param>’.

    ‘<embed src=”http://www.youtube.com/v/&#8217;.$ID.'” type=”application/x-shockwave-flash” width=”425″ height=”350″></embed>’.

    ‘</object>’);

    default : return $Matches[0];

    }

    }

    function allow_video_tags( $tags ) {

    $tags = array(‘type’ => array(‘maxlen’ => 10));

    return $tags;

    }

    add_filter( ‘bb_allowed_tags’, ‘allow_video_tags’ );

    add_filter( ‘post_text’, ‘video_embed’ );

    ?>

    `

    It allows you to embed video only from YT or Google Video.

    #60747

    In reply to: WP 2.3 breaks bbpress?

    oledole
    Member

    Thanks. I’ll just sit back and relax then ;-)

    #60743
    Sam Bauers
    Participant

    Anyone desperate for some plugin action can try browsing the SVN repository directly:

    https://plugins-svn.bbpress.org/

    #60746

    In reply to: WP 2.3 breaks bbpress?

    Sam Bauers
    Participant

    The last release of bbPress (0.8.2.1) is incompatible with WordPress 2.3

    You can either upgrade to the latest trunk now, or wait a few days when a new bbPress should be released that is compatible.

    See here: https://bbpress.org/blog/2007/09/wordpress-23-is-out/

    #60745

    In reply to: WP 2.3 breaks bbpress?

    oledole
    Member

    EDIT

    Looks like it has something to do with “wp-blog-header.php” beeing called in from BB’s config.php. When I run a basic config.php and default theme it works fine …

    #2419
    oledole
    Member

    I’ve just upgraded to WP 2.3 and now I can’t display the forum (that’s in a subfolder). Any one got an idea why and how to fix it?

    #2418
    andrisi
    Member

    “Cannot select DB.”

    #2417

    Topic: Translation

    in forum Troubleshooting
    Mikael Boldt
    Member

    Last night I spent 4hours in translation my own version of a language file based upon a .pot file linked to via this http://bbpress.org/forums/topic/pot-file-for-bbpress-074?replies=20.

    but now I have found an important sentence which was not included. How do I include this sentence in to my .po file?

    the sentence is on the profile edit menu:

    “To change your password, enter a new password twice below:”

    kind regards

    Mikael Boldt

    #55809
    chanzero
    Member

    i don’t think it’s just that link the entire plugin database seems to be down. but hopefully back up soon?

    #55808
    intellivision
    Participant

    Anyone have allow-youtube.zip? The link at the top is 404’ing.

    Thx

    #55807
    chanzero
    Member

    I second nolageek’s request :)

    #58410
    neyoung
    Member

    Kahil, your method works well if your users use their login name as their display name. However if a user who’s login is user23 changes his display name to John Doe then your code looks for this image. /forum/avatars/John Doe.jpg instead of the correct avatar image which would be /forum/avatars/user23.jpg. I couldn’t figure out a clean way to fix this (I’m using wpmu, not wordpress). But here’s a dirty hack.

    <?php
    $comment_author_dn = get_comment_author();
    $comment_author = $wpdb->get_row("SELECT <code>user_login</code> FROM <code>wp_users</code> WHERE <code>display_name</code> = '$comment_author_dn'");
    echo '<img id="comment-avatar" height="50" width="50" src="/forums/avatars/' . (empty($comment_author->user_login) ? "default" : $comment_author->user_login) . '" alt="avatar" />';
    ?>

    That code should find images for a user if they use a display name or not.

    /shrug

    I haven’t fully tested it, but it seems to work ok.

    #2416
    iyiinsan
    Member

    I have setup a WordPress blog and a bbPress forum, installed setCookie plugin to WordPress and added $bb->usercookie, $bb->passcookies, $bb->cookiedomain and $bb->cookiepath preferences correctly (I assume) to config.php of the bbPress intallation.

    Logging in and out works great, I can login from either WordPress or bbPress and it would login to both sites. But once I login, I cannot do any administrative changes (delete/modify posts) or even go to /bb-admin. Trying to delete a post will give me an error saying I don’t have enough priviliges, and going to bb-admin will just redirect me to homepage. (And my user level is key-master.)

    But once I comment out the cookie info from the configuration file, it works as it’s supposed to.

    Any ideas how I can fix this?

    #60633
    Sam Bauers
    Participant

    You shouldn’t underestimate yourself _ck_, alot of the bugs in Trac that I have seen in the past are well within your range. You should try out a couple.

    #60707

    In reply to: 支援中文字吗?

    _ck_
    Participant

    Yes there are several bbPress forums in Chinese language.

    http://backlink.cn/

    http://bbpress.net.cn/

    几个论坛存在

Viewing 25 results - 59,701 through 59,725 (of 64,454 total)
Skip to toolbar