Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 50,251 through 50,275 (of 64,487 total)
  • Author
    Search Results
  • #76140

    In reply to: Step two questions

    From phpMyAdmin, select bbPress tables and delete them by “drop” option. Before doing anything, takes a backup incase anything goes wrong.

    #76139

    In reply to: Step two questions

    kipperman
    Member

    I have the same database as the WP install for BBpress, How do I delete the tables without ruining the WPMU database info?

    I can only assume that on the DB the bb tables are separated somehow. A word of advise please before I wreck it all!

    #76174
    deadlyhifi
    Participant

    You should definitely submit your patches in the comments of the plugin pages, if you’re willing!

    Indeed I have:

    https://bbpress.org/plugins/topic/approve-user-registration/page/2/#post-3902

    and

    https://bbpress.org/plugins/topic/bbpress-moderation-suite/page/2/#post-3963

    #76176
    thekmen
    Member

    Thanks _ck_, just tried that and it seems to work ok…

    #15332

    http://www.adventurecanoe.com

    This thing is pretty pimp. I am using bbPress with a sort of modified Kakumei theme. I also pimped it out with the tinyMCE editor and a bunch of plugins from _ck_ as well as some stuff I wrote myself.

    Check it out and post something to make me look popular.

    -James

    #76172
    _ck_
    Participant

    Only people that have rushed to the new version are in limbo.

    1.0 has been out only a whole week now.

    The alpha/RC phases didn’t help as more was changed afterwards.

    One only has to study what happened to WordPress during it’s growing pains to see what will happen to bbPress.

    GPL means you can republish the plugin, ie. post a link to a new download with your fixes. Taking over for an author within the extend section itself is another matter however and is best done with permission from the original author. Then someone like Sam can add you to the SVN. Rarely is it impossible to reach an author – they may leave bbpress but unlikely the entire internet.

    #76175
    _ck_
    Participant

    Many plugins are broken under 1.0

    I assume you tried this one https://bbpress.org/plugins/topic/bbvideo/

    #15331
    thekmen
    Member

    Hi all, is there any easy way to add a youtube video to a bbPress 1.0.1 topic?

    I have tried the admin can post anything plugin, but it doesn’t seem to work.

    #76111
    deadlyhifi
    Participant

    although it may be a little put of date now, the principles are the same.

    #76094
    deadlyhifi
    Participant
    #76146

    What part isn’t working? Just not at all, you can’t log in with the same ID on both, or is it the logging in on one logs you out on the other? There are a few similarish errors, but they’re debugged differently.

    As always, re-copy/paste the KEYs and SALTs from WPMU to BB, flush your cache and cookies, and try again. Even if you’re sure they’re right, it doesn’t hurt :)

    Also:define( 'WP_AUTH_COOKIE_VERSION', 1 ); should be in your bb-config, not wp-config.

    #49971

    In reply to: En español

    Jose Conti
    Participant

    Hola

    Aquí encontrareis la traducción al castellano de bbPress 1.01 http://www.buddypress-es.com

    Un saludo

    #76118
    birdy404
    Member

    i downloaded the plugins ADSENSE FOR BBPRESS and GOOGLE ADSENSE CONFIGURATION. The former gives an option to insert codes but when i put in my OpenX code nothing shows up. The latter, however, displays my OpenX ads, only problem is it shows up in the footer when i want it in the header and between posts. i tried inserting the html codes directly in my themes but it shows as html codes and not as an ad. am i doing something wrong? please let me know.

    Also, can any of you please help me configure it to not only show up in the footer? here’s the coding for that plugin:

    <?php

    /*

    Plugin Name: Simple Google Adsense

    Plugin URI: http://www.strapontins.org/people/rentendre/simple-google-adsense-bbpress/

    Description: Add Google Adsense code in your bbPress forum, in the footer :) All users are welcome to improve on it :p

    Author: Frédéric Petit

    Author URI: http://www.strapontins.org/

    Version: 0.2

    License: CC-GNU-GPL http://creativecommons.org/licenses/GPL/2.0/

    */

    add_action(‘bb_admin_menu_generator’, ‘bb_gad_configuration_page_add’);

    add_action(‘bb_admin-header.php’, ‘bb_gad_configuration_page_process’);

    function bb_gad_configuration_page_add() {

    bb_admin_add_submenu(__(‘Google Adsense Configuration’), ‘use_keys’, ‘bb_gad_configurtion_page’);

    }

    function bb_gad_configurtion_page(){?>

    <h2><?php _e(‘Google Adsense Configuration’); ?></h2>

    <form class=”options” method=”post” action=””>

    <fieldset>

    <label for=”ga_key”>

    <?php _e(‘Google Adsense User Id:’) ?>

    </label>

    <div>

    <textarea class=”text” name=”ga_key” id=”ga_key” value=”<?php bb_form_option(‘ga_key’); ?>” ></textarea>

    <?php _e(‘Put your adsense code, without the code of the script pagead2.googlesyndication.com/pagead/show_ads.js’); ?>

    </div>

    </fieldset>

    <fieldset>

    <?php bb_nonce_field( ‘ga-configuration’ ); ?>

    <input type=”hidden” name=”action” id=”action” value=”update-ga-configuration” />

    <div class=”spacer”>

    <input type=”submit” name=”submit” id=”submit” value=”<?php _e(‘Update Configuration »’) ?>” />

    </div>

    </fieldset>

    </form>

    <?php

    }

    function bb_gad_configuration_page_process() {

    if ($_POST == ‘update-ga-configuration’) {

    bb_check_admin_referer(‘ga-configuration’);

    if ($_POST) {

    $value = stripslashes_deep( trim( $_POST ) );

    if ($value) {

    bb_update_option(‘ga_key’, $value);

    } else {

    bb_delete_option(‘ga_key’ );

    }

    } else {

    bb_delete_option(‘ga_key’);

    }

    $goback = add_query_arg(‘ga-updated’, ‘true’, wp_get_referer());

    bb_safe_redirect($goback);

    }

    if ($_GET) {

    bb_admin_notice( __(‘Configuration saved.’) );

    }

    }

    // Bail here if no key is set

    if (!bb_get_option( ‘ga_key’ ))

    return;

    function createGAdCode($accountId) {

    $code .= ‘<div class=’bbpress_adsense’>’ . “n”;

    $code .= ‘ ‘ . $accountId . ‘ ‘ . “n”;

    $code .= ‘<script type=’text/javascript’ src=’http://pagead2.googlesyndication.com/pagead/show_ads.js’></script>&#8217; . “n”;

    $code .= ‘</div>’ . “n”;

    return $code;

    }

    function insertGAdCode() {

    $accountId = bb_get_option(‘ga_key’);

    if ($accountId != ”) {

    echo createGAdCode($accountId);

    }

    }

    add_action(‘bb_foot’, ‘insertGAdCode’);

    ?>

    #69739
    michele83
    Member

    I have this problem on the second step:

    SQL ERROR [ mysqli ]

    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 ‘uso, critiche e suggerimenti’, ‘Aiutaci a migliorare la community!’, ‘142’, ’11” at line 1 [1064]

    SQL

    INSERT INTO bb_forums (forum_id , forum_name, forum_desc, forum_parent, forum_order, topics, posts) VALUES (‘2’, ‘istruzioni per l’uso, critiche e suggerimenti’, ‘Aiutaci a migliorare la community!’, ‘142’, ’11’, ’47’, ‘1129’)

    BACKTRACE

    FILE: includes/db/mysqli.php

    LINE: 163

    CALL: dbal->sql_error()

    FILE: phpbb3tobbpress.php

    LINE: 201

    CALL: dbal_mysqli->sql_query()

    #69738
    MrPresident
    Member

    Just done this myself on a live phpBB3 forum, worked like a dream, no issues. Thanks very much! =)

    #76136

    In reply to: Step two questions

    kipperman
    Member

    FFS!

    I deleated all the bbpress files and uploaded them again to start over.

    I get past the step one database details but on step two it says:

    Oh dear!

    bbPress is already installed. >>>NO IT ISN’T – I DELEATED IT<<<

    Perhaps you meant to run the upgrade script instead?

    I’ve no idea now – any suggestions please. Stuck!

    #72444
    _ck_
    Participant

    ashfame, if you want, you can try my update to support WP 2.8.1 with bbPress 0.9

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

    #15325
    deanes02
    Member

    Its just not working! Please help.

    define( 'BB_AUTH_SALT', '' );
    define( 'BB_LOGGED_IN_SALT', '' );
    define( 'BB_SECURE_AUTH_SALT', '' );
    define('BB_NONCE_KEY', '');

    matches it wp-config equivalent (with values obviously).

    Used the bbPress Integration plugin to get new values for the wp-config file and entered them

    /*** bbPress integration ***/
    define( 'COOKIEHASH', '998c6cb0a1fda1b22e40b1a75220d390' );
    define( 'COOKIE_DOMAIN', '.www.MYSITE.com' );
    define( 'SITECOOKIEPATH', '/' );
    define( 'COOKIEPATH', '/' );
    define( 'WP_AUTH_COOKIE_VERSION', 1 );

    I have checked through all the settings in bbPress WordPress Integration settings (in bbPress) and they all look correct.

    XML-RPC is enabled.

    I have seen that oterh people seem to be able to get this working. I have followed a few of these guides, but still can’t get it to work.

    Would be great if you have any ideas! Thanks!

    #75469
    _ck_
    Participant

    Can someone test this new version of Freshly Baked Cookies with bbPress 0.9 + WP 2.8.1 and let me know if it works and cookie sync is maintained?

    http://bbshowcase.org/plugins/freshly-baked-cookies.zip

    Don’t forget to copy over your settings at the top of the plugin and remember to set the AUTH_COOKIE_VERSION to 2 for WP 2.8

    I have a hard time believing it’s that simple to fix for WP 2.8 vs 2.7 but here’s hoping.

    #15324
    kipperman
    Member

    I am setting up bbpress with WPMU intergration.

    A couple of things are not so clear.

    1. In cookie settings under WordPress “logged in” cookie salt it asks for a setting of “logged_in_salt” and gives a URL to my admin options to get it – onlt it isn’t on that page at all which is confusing. It says If you leave this blank the installer will try to fetch the value based on your WordPress database integration settings – which I can only hope it will.

    2. Then in Show advanced database settings I came across something I had not know or considered. Can I give the forum the same database as my WP and enter the same settings in the set up? I have set up another DB for bbpress but it would seem to make sense to share the membership. Is it too late to change the DB here if so?

    #72443

    All done by now. Just wanted to share the upgrading instructions I wrote yesterday : http://blog.ashfame.com/2009/07/upgrade-existing-integrated-installations-of-wordpress-bbpress/

    #76114

    In reply to: Integration

    Follow my tutorial http://blog.ashfame.com/2009/07/integrate-bbpress-10-with-wordpress-28/

    and it should be fine. If not then let me know.

    #76113

    In reply to: Integration

    I have the same problem. I have integrated them and i can use wordpress users to login, but if i logon to wordpress i’m not loged into bbpress :-(

    Wp –> 2.8

    bbpress –> 1.0.1

    #76134
    deanes02
    Member

    Great thanks. I think I’ll go ahead with the upgrade and post my experience here to help others.

    Thanks again!

    #76112

    In reply to: Integration

    chrishajer
    Participant

    What versions of bbPress and WordPress did you install?

Viewing 25 results - 50,251 through 50,275 (of 64,487 total)
Skip to toolbar