Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 44,751 through 44,775 (of 64,487 total)
  • Author
    Search Results
  • robynh
    Member

    GoDaddy

    #86862
    Gautam Gupta
    Participant

    This tutorial also explains integration for WordPress 3.0 – http://www.wpmods.com/integrate-wordpress-bbpress (WP 3.0 also has cookie salts). Haven’t dug into this yet, maybe will do later.

    #86721

    In reply to: BuddyBar in bbPress

    deadlyhifi
    Participant

    There’s a plugin to get the buddybar into bbP – https://wordpress.org/extend/plugins/buddybar-in-bbpress/

    I updated it to work with buddypress 1.2

    https://buddypress.org/forums/topic/buddybar-for-bbpress/page/5#post-40993

    It requires deep integration.

    Xevo
    Participant

    Hi there,

    I’m working on a bbpress 1.0.2, wordpress 3.0 beta and buddypress 1.2.3 setup, but now I’m having problems with my bbpress. I did the same setup with 2.9.2 and that worked great, but I’m guessing WordPress 3.0 changed a lot.

    Here’s what happened.

    I installed wordpress normally with a different username than “admin” with my own password, all went well. After that I installed buddypress as a plugin, this went like it should as well. Then when I reached the bbpress installation (step 2), I entered all the secret keys and salt as I had them in my wp-config.php and pressed next step, it said that everything was validated but then in step 3 it let me choose a keymaster username, which I find odd since 2.9.2 didn’t. I entered a username/e-mail and finished the setup without a problem. No problems encounterd in the setup was said in the setup logs. Now here’s the strange thing, it made the tables in my database (which is the database that holds wordpress as well) but it did not make a bb-config.php file, so when I went to the URL of the main forum page, it gave me an error (which is when I discovert that there was no bb-config.php). It also made “bb_users” and “bb_usermeta” in my database. I made bb-config.php myself after that with the same secret keys from wp-config and setup wp integration in bb-admin accordingly. This gave me shared cookie logins with my wordpress install (having bbpress intergration plugin installed in wordpress). But after having done all this, I cannot enter my bb-admin area anymore. I checked the files and figured out that the function bb_auth was causing me to be redirected to the main forum page.

    So my question is, anyone solved this problem yet or can you help me solve it?

    function bb_auth( $scheme = 'auth' ) { // Checks if a user has a valid cookie, if not redirects them to the main page
    if ( !bb_validate_auth_cookie( '', $scheme ) ) {
    nocache_headers();
    if ( 'auth' === $scheme && !bb_is_user_logged_in() ) {
    wp_redirect( bb_get_uri( 'bb-login.php', array( 're' => $_SERVER['REQUEST_URI'] ), BB_URI_CONTEXT_HEADER + BB_URI_CONTEXT_BB_USER_FORMS ) );
    } else {
    wp_redirect( bb_get_uri( null, null, BB_URI_CONTEXT_HEADER ) );
    }
    exit;
    }
    }

    #86832
    Gautam Gupta
    Participant
    #86775
    johnhiler
    Member

    Yury – I totally agree that we as a community need more control over things like docs, etc.! But I can’t see Matt giving FTP and database rights to us… maybe instead, we can download copies of the various releases and plugins and upload them to a backup server somewhere? And start some docs on another server, as you have. :-)

    Honestly – I would be shocked if Automattic shut down bbpress.org without warning. It would be a real black mark on Automattic’s reputation in the open source community, which is something Matt and his team are really proud of (and rightfully so). But if that’s something that a bunch of us are worried about, we can maybe create another thread to discuss how to prepare for that contingency.

    Gautam – I’m not too worried about this next release, because Matt pretty clearly defined it before he disappeared:

    https://bbpress.org/forums/topic/whats-happening-with-bbpress/page/5#post-64400

    The next version though, we’ll definitely need to establish a clear direction – with or without Matt (but hopefully with him, or someone from Automattic!). But I’m not too worried about informing anyone… we’re posting on a public server, so it’s not like we’re hiding what we’re up to!

    #86774
    Gautam Gupta
    Participant

    about style – i saw that topic long time ago, but where is Sam? you said that there are no alive admins…

    Sam has left automattic, but he sometimes replies on the trac tickets. (See the bbPress.org 2.0 – sneak peak topic’s last pages). He has also mailed the design files to some other automattic guy.

    Why do we need to bother Matt again? We have everything we need to get the next version out the door… the cavalry isn’t coming to save us, but I think that’s ok.

    Atleast we must inform the person whose project it was initially – you wouldn’t like if someone had access to your project and kept making changes, releasing new versions etc. in your absense.

    #86773
    jurasiks
    Participant

    Yes, John.

    I see big problem: Matt left project, no active admins of this site. Only Chris as moderator.

    We don’t know who’s hosting this site, nobody controling FTP.

    simpler: we can’t add here new documentation, new version of bbPress to download section, we can’t make new design.

    So, we must know – who in charge with this site and can give us (community) more permissions.

    …or one day we can open bbpress.org and see… nothing.

    that’s why we need Matt for bbPress future

    #86772
    johnhiler
    Member

    “And main question: Who is admin of this site with full access if Matt left project?”

    Is that the part you’re referring to? I guess I’m not understanding what contingency we’re preparing for. Matt has already de facto left the project, and Chris has been doing a wonderful job of making steady progress towards the next release.

    Is the concern that if bbpress.org is suddenly shut down, we won’t have a backup of the data? Sorry – just trying to get my head around your concern! :-)

    #86771
    jurasiks
    Participant

    John, please read above why we need Matt (or somebody who is admin of this site).

    #86770
    johnhiler
    Member

    Why do we need to bother Matt again? We have everything we need to get the next version out the door… the cavalry isn’t coming to save us, but I think that’s ok.

    Chris is doing a great job managing trac, and we’re making steady progress til the next version! Once that comes out, maybe we can pull up then?

    #86769
    jurasiks
    Participant

    we’ve got 1 open ticket till 1.0.3 on trac?

    sent another message to Matt, spam his Facebook page…

    is he ignoring us? :(

    #69807
    psycheangels
    Member

    fix post position

    function fix_post_position() {
    global $bbdb;
    $get_topics = $bbdb->get_results("SELECT * FROM $bbdb->topics ORDER BY topic_start_time ASC");
    foreach( $get_topics as $get_topic ) {
    $get_posttopic = $get_topic->topic_id;
    $postorder = 1;
    $get_posts = $bbdb->get_results("SELECT * FROM $bbdb->posts WHERE topic_id = '$get_posttopic' AND post_position = '1' ORDER BY post_time ASC");
    foreach( $get_posts as $get_post ) {
    echo "UPDATE bb_posts SET post_position = ";
    echo $postorder++;
    echo " WHERE topic_id = ";
    echo $get_post->topic_id;
    echo " AND post_id = ";
    echo $get_post->post_id;
    echo " ;";
    echo '<br/>';
    }
    } }

    echo fix_post_position in your template file and copy the sql query to your database

    gerikg
    Member

    what is the name of your hosting company?

    robynh
    Member

    Yeah. It uses php5. What do you have to do, exactly?

    #86829
    robalan
    Member

    Version 2.9.2, and yes all keys are defined in both files, with BB_ prepending the bb-config items.

    @gerikg – thanks, I have updated wp-config.

    Still no shared cookie, still no users showing up in bbPress.

    gerikg
    Member

    Does your server use php5? I use 1and1 hosting and I have to put a line in the htaccess or I get the same thing.

    #86849
    Anonymous User
    Inactive

    Hi Rabbitdk,

    with manual coding it should be possible to display complete posts in wordpress.

    I use the examples from https://bbpress.org/forums/topic/heres-how-to-show-bbpress-info-inside-wordpress-without-full-integration to display an complete list of my forums and a short list of the newest topics.

    http://www.mysteria3000.de/wp/

    But I think – to make an original WordPress Post out of it – is not as easy as pure displaying.

    hmmm….

    For the last month I use the plugin ‘WordPress-bbPress syncronization’ (http://bobrik.name/code/wordpress/wordpress-bbpress-syncronization). But these plugin does it the other way – make WordPress Post to Topics in bbPress and display answers (post in bbPress) as comments in WordPress. A skilled php developer can use this plugin and change some code to realize your idea.

    Unfortunately I’m no developer :(

    #86822
    robalan
    Member

    Here are my config files, for reference:

    wp-config:

    <?php

    // ** MySQL settings ** //

    define(‘COOKIEPATH’, ‘/’);

    define(‘DB_NAME’, ‘###’); // The name of the database

    define(‘DB_USER’, ‘###’); // Your MySQL username

    define(‘DB_PASSWORD’, ‘###’); // …and password

    define(‘DB_HOST’, ‘internal-db.###.gridserver.com’); // 99% chance you won’t need to change this value

    define(‘DB_CHARSET’, ‘utf8’);

    define(‘DB_COLLATE’, ”);

    define(‘WP_CACHE’, true);

    define(‘SECRET_KEY’, ‘###’);

    define(‘AUTH_KEY’, ‘###’);

    define(‘SECURE_AUTH_KEY’, ‘###’);

    define(‘LOGGED_IN_KEY’, ‘###’);

    define(‘NONCE_KEY’, ‘###’);

    define(‘AUTH_SALT’, ‘###’);

    define(‘SECURE_AUTH_SALT’, ‘###’);

    define(‘LOGGED_IN_SALT’, ‘###’);

    define(‘NONCE_SALT’, ‘###’);

    // You can have multiple installations in one database if you give each a unique prefix

    $table_prefix = ”; // Only numbers, letters, and underscores please!

    // Change this to localize WordPress. A corresponding MO file for the

    // chosen language must be installed to wp-content/languages.

    // For example, install de.mo to wp-content/languages and set WPLANG to ‘de’

    // to enable German language support.

    define (‘WPLANG’, ”);

    /* That’s all, stop editing! Happy blogging. */

    define(‘ABSPATH’, dirname(__FILE__).’/’);

    require_once(ABSPATH.’wp-settings.php’);

    ?>

    bb-config:

    <?php

    /**

    * The base configurations of bbPress.

    *

    * This file has the following configurations: MySQL settings, Table Prefix,

    * Secret Keys and bbPress Language. You can get the MySQL settings from your

    * web host.

    *

    * This file is used by the installer during installation.

    *

    * @package bbPress

    */

    // ** MySQL settings – You can get this info from your web host ** //

    /** The name of the database for bbPress */

    define( ‘BBDB_NAME’, ‘###’ );

    /** MySQL database username */

    define( ‘BBDB_USER’, ‘###’ );

    /** MySQL database password */

    define( ‘BBDB_PASSWORD’, ‘###’ );

    /** MySQL hostname */

    define( ‘BBDB_HOST’, ‘internal-db.###.gridserver.com’ );

    /** Database Charset to use in creating database tables. */

    define( ‘BBDB_CHARSET’, ‘utf8’ );

    /** The Database Collate type. Don’t change this if in doubt. */

    define( ‘BBDB_COLLATE’, ” );

    define(‘COOKIEPATH’, ‘/’);

    /**#@+

    * Authentication Unique Keys.

    *

    * Change these to different unique phrases!

    * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/bbpress/ WordPress.org secret-key service}

    *

    * @since 1.0

    */

    define(‘AUTH_KEY’, ‘###’);

    define(‘SECURE_AUTH_KEY’, ‘###’);

    define(‘LOGGED_IN_KEY’, ‘###’);

    define(‘NONCE_KEY’, ‘###’);

    define(‘AUTH_SALT’, ‘###’);

    define(‘SECURE_AUTH_SALT’, ‘###’);

    define(‘LOGGED_IN_SALT’, ‘###’);

    define(‘NONCE_SALT’, ‘###’);/**#@-*/

    /**

    * bbPress Database Table prefix.

    *

    * You can have multiple installations in one database if you give each a unique

    * prefix. Only numbers, letters, and underscores please!

    */

    $bb_table_prefix = ‘bb_’;

    /**

    * bbPress Localized Language, defaults to English.

    *

    * Change this to localize bbPress. A corresponding MO file for the chosen

    * language must be installed to a directory called “my-languages” in the root

    * directory of bbPress. For example, install de.mo to “my-languages” and set

    * BB_LANG to ‘de’ to enable German language support.

    */

    define( ‘BB_LANG’, ” );

    ?>

    #86848
    rabbitdk
    Member

    No, from inside the bbpress forum, I want to send a topic to my WordPress front so it’s published like a ordinary blog post :)

    #86847
    gerikg
    Member

    Chrishaje, I think it’s something like this https://bbpress.org/plugins/topic/bbpress-recent-replies/#post-4989

    but not recent replies but new topics that was just added….?

    #86846
    rabbitdk
    Member

    Not sure that does exactly what I want, btw I am no good with codes, but that is explained pretty detailed so I could probably try it out (however, I just messed up my bbPress install while messing with permalinks :D)

    I want the full forum post to be published as a blog entry, by the click of a button, to promote the posts as you said :D

    #86845
    chrishajer
    Participant

    Add a forum post to your WordPress front: does that mean if there is a forum post, you want to display it on your WordPress home page? As a sticky or something? You will do this manually whenever you feel like promoting a post?

    https://bbpress.org/forums/topic/heres-how-to-show-bbpress-info-inside-wordpress-without-full-integration

    #33989
    rabbitdk
    Member

    Hi there!

    I’ve been looking for a while now, I can’t find anything that suits me :D

    I am looking for a plugin that easily lets me (the admin) add a forum post to my WordPress front.

    I’ve tried out bbPress-WordPress syncronization, but this only syncs comments, right?

    Thanks in advance :D

Viewing 25 results - 44,751 through 44,775 (of 64,487 total)
Skip to toolbar