Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 18,326 through 18,350 (of 32,506 total)
  • Author
    Search Results
  • #106393
    tooltrainer
    Member

    Definitely no chance at all that the content is identical. It’s like a 2 or 3 page post. :)

    I turned on the slug and – IT POSTED!

    So you’re right on with that… problem is I really seriously don’t want those slugs being shown. So is this just a bug that can be fixed perhaps?

    Thanks!

    Jonathan

    #106432

    I can guarantee you with 100% confidence that a bbPress plugin update alone will *never* nuke any files outside of the /wp-content/plugins/bbpress/ folder. :)

    When you update any WordPress plugin through the auto-updater, it deletes the plugin folder, recreates it, and puts the contents of the new version in there; that’s it.

    When are adding your theme compatibility? If you are hooking in on the ‘init’ or ‘wp’ actions, then it is too late for theme compatibility to pick it up.

    function anointed_theme_setup() {
    add_theme_support( 'bbpress' );
    }
    add_action( 'after_setup_theme', 'anointed_theme_setup' );

    Can you confirm the bbpress.css is inside the bbPress plugin directory and bbp-twentyten theme?

    If it wasn’t working at all, then your custom theme’s bbPress template files wouldn’t be getting loaded either.

    #106390

    @Johnathan – Can you use a tool like Firebug or Inspector, and look at the hidden input fields in your reply form?

    Should look like the following

    <input type="hidden" name="bbp_reply_title" id="bbp_reply_title" value="Reply To: Updated to bbPress 2.0 pre-beta 2" />
    <input type="hidden" name="bbp_forum_id" id="bbp_forum_id" value="138" />
    <input type="hidden" name="bbp_topic_id" id="bbp_topic_id" value="439" />
    <input type="hidden" name="action" id="bbp_post_action" value="bbp-new-reply" />
    <input type="hidden" id="_wpnonce" name="_wpnonce" value="0b78bb87eb" />
    <input type="hidden" name="_wp_http_referer" value="/discussion/topic/updated-to-bbpress-2-0-pre-beta-2/" />

    Also, some details about your configuration would be great. WordPress version, Multisite/single-site, custom theme/theme compatibility, etc…

    #106430

    There’s absolutely no way that bbPress is responsible for doing anything inside your wp-content/themes/ directory. If you made changes to files inside the bbPress plugin folder, then you broke the first rule of using a WordPress plugin. :)

    #38630
    Anointed
    Participant

    I’m no sysadmin, so understanding what is happening is a bit beyond me right now.

    Here’s what I was doing to cause the 403 error:

    1. I wanted to test to see what bbpress does with a really long forum post title, so I tried the following:

    Let’s create a really crazy long title name to see if the table properly removes any extra text from the title or not

    The body of the post says:

    Well I hope that title above was long enough, I can’t imagine any forum titles being longer than this one.

    When I click submit, I get a 403error below:

    [Fri May 27 20:21:10 2011] [error] [client 76.121.8.129] mod_security: Access denied with code 403. Pattern match ":space:+(select|grant|delete|insert|drop|alter|replace|truncate|update|create|rename|describe):space:+[A-Z|a-z|0-9|\\*| |\\,]+:space:+(from|into|table|database|index|view):space:+[A-Z|a-z|0-9|\\*| |\\,]" at POST_PAYLOAD [severity "EMERGENCY"] [hostname "mysite.com"] [uri "/forum/prayer-requests/healing/"] [unique_id "TeA-9kUuJUQAABVAGuk"]

    I am unsure of how to interpret the error, and what steps I need to take in order to resolve the problem. Hope this error helps identify something.

    wsokc
    Member

    Gotcha…

    Its because of bb_config integration.

    /** WP Theme **/

    define(‘WP_BB’, true);

    if ( !defined(‘DB_NAME’) ) {

    require_once( dirname(__FILE__) . ‘/../wp-config.php’);

    }

    Hmmm… Last time is not happening, why its happened now ?

    Is there any solution to integrate the theme without having to hardcode the theme itself ?

    Currently I installed bbpress on separate database.

    and I intend to separate the user too.

    So I want only to integrate the theme….

    Any better solution for this ?

    #106424

    The sanity check that I do in the breadcrumb is to check if the root slug is being included in the forums or not. If there’s no root slug, in the URL, then there’s no definitive breadcrumb that bbPress could know about. My logic may still be flawed here though. :)

    wsokc
    Member

    Still finding out…. no luck yet.. :(

    #106422

    You can manipulate the inclusion of the links on customized setups (such as the one I know you have.) :) Check out the plugin code and adjust it to suit your needs in your custom theme.

    When 2.0 goes gold, we’re committed to the code and functions that ship with it. So some objects might shift during shipping. :)

    #100618

    If you aren’t able follow the instructions provided, these kinds of things will happen. Revisit what you couldn’t do, and that should alleviate your woes. Hint: the functions.php code is also responsible for enqueueing the CSS. :)

    #105718

    If you aren’t able follow the instructions provided, these kinds of things will happen. Revisit what you couldn’t do, and that should alleviate your woes. Hint: the functions.php code is also responsible for enqueueing the CSS. :)

    That function was removed and merged with another that did essentially the same check. The standard bbp-twentyten theme files won’t have this problem.

    You’ve just experienced first hand why it’s best to use the built in theme compatibility if, particularly if you’re not a developer that keeps up with the code changes. :)

    #106386
    tooltrainer
    Member

    FYI it appears to be related to the specific content in my post. I typed up a very short reply and posted it without a problem.

    Are there words or symbols that bbP is treating as security risks? I’ve seen this before in WP and it’s enough to drive one to drink.

    This isn’t even a code-oriented post. I at least understand it blocking posts that contain SQL queries and whatnot, but this doesn’t have any of that…

    Jonathan

    #100804

    In reply to: Where is the importer?

    scribu
    Member

    I managed to get past the fatal error by adding these two lines in my bp-config.php file:

    define('BB_DATABASE_CLASS', 'BPDB');
    define('BB_DATABASE_CLASS_INCLUDE', false);

    Now I’m getting more errors:

    Warning: Missing argument 2 for BPDB::__construct(), called in .../forum-svn/bb-settings.php on line 197 and defined in .../lomo-content/plugins/bbpress/bbp-admin/importers/bbpress.php on line 29

    Warning: Missing argument 3 for BPDB::__construct(), called in .../forum-svn/bb-settings.php on line 197 and defined in .../lomo-content/plugins/bbpress/bbp-admin/importers/bbpress.php on line 29

    Warning: Missing argument 4 for BPDB::__construct(), called in .../forum-svn/bb-settings.php on line 197 and defined in .../lomo-content/plugins/bbpress/bbp-admin/importers/bbpress.php on line 29

    Fatal error: Cannot redeclare bb_cache_users() (previously declared in .../lomo-content/plugins/bbpress/bbp-admin/importers/bbpress.php:103) in .../forum-svn/bb-includes/functions.bb-users.php on line 39

    This is using bbPress plugin 2.0-beta-2b and bbPress standalone trunk.

    #105904

    In reply to: Where is the importer?

    scribu
    Member

    I managed to get past the fatal error by adding these two lines in my bp-config.php file:

    define('BB_DATABASE_CLASS', 'BPDB');
    define('BB_DATABASE_CLASS_INCLUDE', false);

    Now I’m getting more errors:

    Warning: Missing argument 2 for BPDB::__construct(), called in .../forum-svn/bb-settings.php on line 197 and defined in .../lomo-content/plugins/bbpress/bbp-admin/importers/bbpress.php on line 29

    Warning: Missing argument 3 for BPDB::__construct(), called in .../forum-svn/bb-settings.php on line 197 and defined in .../lomo-content/plugins/bbpress/bbp-admin/importers/bbpress.php on line 29

    Warning: Missing argument 4 for BPDB::__construct(), called in .../forum-svn/bb-settings.php on line 197 and defined in .../lomo-content/plugins/bbpress/bbp-admin/importers/bbpress.php on line 29

    Fatal error: Cannot redeclare bb_cache_users() (previously declared in .../lomo-content/plugins/bbpress/bbp-admin/importers/bbpress.php:103) in .../forum-svn/bb-includes/functions.bb-users.php on line 39

    This is using bbPress plugin 2.0-beta-2b and bbPress standalone trunk.

    #95475
    Jamie Marsland
    Participant

    Just installed beta 2…. lovely so far :)

    I haven’t quite figured out the best way to reliably integrate the login/register/lost-password pages into theme compatibility yet. The tentative plan is to finish up their shortcodes so they can be used on any page and ready for 2.0.

    mhjerde99
    Member

    Looks like it is possible to register new users with a link like this:

    http://riftlabs.com/wp/wp-login.php?action=register

    This displays a page saying “WordPress – Register for this site” which is a bit confusing :-)

    Is there a way to register new users in such a way that it looks like users are signing up to the forum and not to WordPress?

    Also, the email confirmation roundtrip takes the users back to the homepage. It would be super if it took the user back to the forum.

    Cheers,

    Morten

    mhjerde99
    Member

    Hi

    The forum plugin is amazing and I love it. Huge kudos!

    I’m trying to get a forum up and running at http://www.riftlabs.com

    I’m using bbPress with an existing Woo template.

    The (only?) thing I can’t seem to add is user registration. There is no widget or shortcode for it.

    I tried adding bbPress – TwentyTen as a child theme, but that messes up the layout, which is to be expected, I guess.

    Any ideas?

    Cheers,

    Morten

    #86087

    In reply to: Umlaut in member name

    glatze
    Member

    We needed to add another filter, so the code looks like this:

    add_filter( 'get_user_display_name', 'rk_display_name' );

    add_filter( 'get_post_author', 'rk_display_name' );

    function rk_display_name($name, $ID = 0) {

    if ( !seems_utf8( $name ) ) {

    return utf8_encode( $name );

    }

    return $name;

    }

    #95468
    kai920
    Member

    @kai920 – Go to the tools/recount area of your stand alone installation, and run all of the recount functions there (just to be on the safe side.)

    I wrote a quick script (took me a lot longer than it should have) to re-populate the post_position column. If anyone needs it let me know. My ’empty first post’ problem is solved. Thanks everyone who helped!

    wsokc
    Member

    Hi,

    I dont know what happen, currently I found my bbpress (1.0.3) admin could not open the user admin page with error “You are not allowed to do this here”.

    Currently my bbpress template was integrated with wordpress they installed separately.

    You can look the page here: http://teknoinfo.web.id/forum

    previously it works fine, after i do some changes regarding bug in the count bbpress from here http://bbpress.org/forums/topic/problems-on-recount-tools-after-upgrade-102-to-103, not sure its related or not.

    From the error_log i found:

    [28-Apr-2011 02:36:13] ERROR: bbPress database error – “Table ‘latqueir_teknoforum.bb_privatemessages’ doesn’t exist” for query “SELECT * FROM bb_privatemessages” via caller “bb_activate_plugin, include, bbPM->bbPM, bbPM->update”

    [28-Apr-2011 10:33:17] ERROR: bbPress database error – “Table ‘lat_teknoforum.tekno_users’ doesn’t exist” for query “SELECT * FROM wp_users WHERE user_login in (‘raffaell’);” via caller “require_once, require_once, require_once, bb_current_user, bb_get_current_user, WP_Auth->get_current_user, WP_Auth->validate_auth_cookie, WP_Users->get_user”

    [03-May-2011 06:24:52] PHP Fatal error: Call to a member function get_terms() on a non-object in /home7/latqueir/public_html/teknoinfo/forum/bb-admin/includes/functions.bb-recount.php on line 167

    Is there anyone experience this ?

    Anointed
    Participant

    I don’t want to hijack the thread where JJJ and I were talking about the template locations filling up my theme root, so here is a new post.

    I was playing around with an idea, and before I go to far with it, I was curious what you think.

    You had mentioned that this type of system was expressly forbidden by wp, due to having to search all folders for files before proceeding. That would be a nightmare, but here I am defining the folders up front, so it ‘should’ be just as fast, though I am unsure of how to bench test it.

    If we could get a system in place like this, then it would clean up the theme area considerably.

    I am using the same logic on a number of client sites and it works perfectly, though they are not using bbpress or buddypress. I simply use it for my own custom post-types.

    example:

    public function template_include( $template ) {
    if ( get_query_var('post_type') == $this->post_type ) {

    if ( is_single() ) {
    if ( $single = locate_template( array( $this->post_type.'/single.php') ) )
    return $single;
    }
    if ( is_paged() ) {
    if ($paged = locate_template( array( $this->post_type.'/archive.php') ) )
    return $paged;
    }
    else { // loop
    return locate_template( array(
    $this->post_type . '/index.php',
    $this->post_type . '.php',
    'index.php'
    ));
    }

    }
    return $template;
    }

    This would completely change the structure of bbpress template names, but could potentially allow me to store everything inside 3 folders ‘forums/topics/replies’.

    I’m sure there would be much more to it than that….

    What do you think of this type of approach?

    *right now it is quite generic and would effect all custom post_types, which would not be good. Changing to be bbpress specific would prob just be a matter of defining types in the array vs. all

    I’m really asking because even though I know I could get this to work, I am quite curious how this would end up effecting buddypress when combined with bbpress.

    Would a system like this be a deal breaker?

    Good idea or bad?

Viewing 25 results - 18,326 through 18,350 (of 32,506 total)
Skip to toolbar