Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 44,776 through 44,800 (of 64,487 total)
  • Author
    Search Results
  • #69806
    psycheangels
    Member

    Fix Topic Slug phpBB Convert bbPress

    add this to function.php in your template file

    function fix_topicslug() {
    global $bbdb;
    $get_topics = $bbdb->get_results("SELECT * FROM $bbdb->topics WHERE topic_slug='' ");
    foreach( $get_topics as $get_topic ) {
    $slug_fix = bb_slug_sanitize( wp_specialchars_decode($get_topic->topic_title));
    $topic_id = $get_topic->topic_id;
    $bbdb->query("UPDATE $bbdb->topics SET topic_slug= '$slug_fix' WHERE topic_id = '$topic_id' ;");
    }
    }

    and echo fix_topicslug in header. cek your database, and dont forget to remove the above code if you already finish.

    my problem now the post_position is broken after convert to bbpress (all post is position 1) any fix ?

    #86818
    zaerl
    Participant

    Is it even supposed to show the WordPress users inside bbPress?

    Yes it is.

    I tell you what I have done. I have bbPress and WordPress on the same database and both have table prefixes. The blog is on my-domain.com/blog. The BBS is in my-domain.com/forum

    On forum/bb-admin/options-wordpress.php:

    1) the role map is key master, administrator, member, member, member.

    2) WordPress URL is my-domain.com/blog, WordPress Blog is my-domain.com/blog.

    3) Cookie salt “auth” valid, no Cookie salt “secure auth”, Cookie salt “logged in” valid.

    4) AUTH_KEY <=> BB_AUTH_KEY and others set on (bb-config/wp-config).php and the NONCE_KEY <=> BB_NONCE_KEY

    5) Table prefix set to the WordPress table prefix. Usually wp_

    6) No advanced settings

    On /blog/wp-admin/options-general.php?page=bbpress-integration-admin

    1) bbPress URL = my-domain.com/forum/. Your plugin URL = nothing. WordPress type = WordPress.

    2) Manual Cookie Settings tells me define( ‘COOKIEPATH’, ‘/’ ); which is defined in both config files (on top of those)

    My wp-config.php:

    <?php

    define( 'COOKIEPATH', '/' );

    define('DB_NAME', '...');
    define('DB_USER', '...');
    define('DB_PASSWORD', '...');
    define('DB_HOST', '...');
    define('DB_CHARSET', 'utf8');
    define('DB_COLLATE', '');

    define('AUTH_KEY', '...');
    define('SECURE_AUTH_KEY', '...');
    define('LOGGED_IN_KEY', '...');
    define('NONCE_KEY', '...');

    $table_prefix = 'my_wordpress_table_prefix_';

    if ( !defined('ABSPATH') )
    define('ABSPATH', dirname(__FILE__) . '/');

    require_once(ABSPATH . 'wp-settings.php'); ?>

    my bb-config.php:

    <?php

    define( 'COOKIEPATH', '/' );

    define('BBDB_NAME', 'same as wordpress');
    define('BBDB_USER', 'same as wordpress');
    define('BBDB_PASSWORD', 'same as wordpress');
    define('BBDB_HOST', 'same as wordpress');
    define('BBDB_CHARSET', 'utf8');
    define('BBDB_COLLATE', '');

    define('BB_AUTH_KEY', 'same as wordpress');
    define('BB_SECURE_AUTH_KEY', 'same as wordpress');
    define('BB_LOGGED_IN_KEY', 'same as wordpress');
    define('BB_NONCE_KEY', 'same as wordpress');

    $table_prefix = 'my_bbpress_table_prefix_';

    #86768
    jurasiks
    Participant

    Automattic is not owner.

    bbPress – open-source and they just (see site): “contribute to a number of non-profit and Open Source projects”.

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

    #86767
    Gautam Gupta
    Participant

    Automattic is a company which owns all these projects (WordPress etc) – http://automattic.com/

    And Sam had already made a new design for this forum a while ago but has not been implemented yet – https://bbpress.org/forums/topic/sneak-peek-at-bbpressorg-20

    #86766
    jurasiks
    Participant

    i checked 2 hours ago whois, sent message to Matt email with my question and sent message to his Facebook page.

    If they don’t want to participate in developing of bbPress – they can give us (community) this opportunity.

    If they don’t want that – we will just make fork.

    p.s. if they give us chance – i will make new design for bbpress.org xD

    #86765
    Gautam Gupta
    Participant
    #86764
    Gautam Gupta
    Participant

    @Yuri

    Talk practically, as if automattic would give you the passwords. By the way I think this website is owned by matt, as he said in one of the IRC chats or this forum. You can also check here – http://www.pir.org/get/whois?domain=bbpress&Submit=Search while wordpress is owned by automattic – http://www.name.com/whois_result?type=domain&domain_name=wordpress.com&submit=+Submit+

    #86840
    Olaf Lederer
    Participant

    I’m wondering what happens if the mail() function is disabled during the setup?

    Does bbpress send the password only by mail? or is the password visible for the admin on confirmation screen?

    #86763
    jurasiks
    Participant

    Better to get FTP and DB passwords for this site, because keymasters are not a solution.

    #86816
    robalan
    Member

    Is it even supposed to show the WordPress users inside bbPress? I don’t even know—that’s how incomplete and fragmented the frigging instructions are. What a waste of time.

    #86814
    chrishajer
    Participant

    robalan, do you have another set of eyes there than can help you look at each item one at a time? Sometimes that’s all it takes. Something simple like pasting all 4 keys from WP to BB, but not changing the name of the constant (they need to be BB_$wordpresskeyname in bbPress, for example.) I’m not saying it’s that one thing, although it has been that thing for many people, but it could be something simple you skip past every time.

    #86812
    zaerl
    Participant

    I accept your opinion but at least in one case I discovered that the only way to achieve that result is to chmod 777 during the installation/integration/whatever and then switching back to 755 (on a very crap host). So I said what I said cause I tought that it can be a good hint. Apparently it is not (and it seems that my words are even funny) and it’s ok. Maybe it was a combination of factors and the 777 was completely useless.

    I’m not a bbPress expert cause I have started to use this software a couple of weeks ago. I’m just trying to learn, help those who encountered my same problems and sharing my code.

    Regards.

    #86811
    chrishajer
    Participant

    In my opinion, which I expressed, it’s ridiculous. Sorry you disagree, but I stand by my statement.

    In any case, I don’t think it has anything to do with this integration problem. This is the most common symptom of integration that is just not working well. There are lots of little gotchas in doing it. I gave up on even trying long ago. It’s far too much to ask people to do to achieve simple user integration. For this reason, I support making bbPress a WordPress plugin. You solve this integration problem, theme integration and also deep/functional integration. With those types of support questions gone, I’ll be out of a job (in a good way.)

    #86838
    gerikg
    Member
    #33987
    bobbycode
    Member

    Hi everybody,

    bbpress fails to send out emails for my forum. Unfortunately, my host decided to disable mail() for all users.

    I believe that is why I get the error:

    “The email containing the password reset link could not be sent.”

    Is there a work around? I know I have some plugins for my regular wordpress websites to get around this but wondering what to do for bbpress…

    Tx,

    Bobby

    #86808
    zaerl
    Participant

    It’s ridiculous if to integrate you have to set your directory permissions to 777. Some hosts won’t even let you do that.

    It’s not “ridiculous.”

    Anyway. Have you installed the WordPress bbPress Integration plugin?

    #86806
    gerikg
    Member

    In the wordpress integration section of bbpress have you tried to enter the information like it was a foreign database?

    #86805
    robalan
    Member

    gerikg:

    I tried installing without checking the boxes and setting it up via the admin area and got it to pass through: http://cl.ly/Gip

    However, it’s still not showing my WordPress users in bbPress: http://cl.ly/HI9 and I’m still having cookie sharing issues where it logs me out of whichever app I switch to from the other.

    #86803
    gerikg
    Member

    robalan, can you install without checking those boxes and then go to the bbpress dashboard and setting it through SETTINGS-> WORDPRESS INTEGRATION?

    #86762
    gerikg
    Member

    @Gautam,

    So no active Keymasters and one active moderator, does not give anyone hope. Maybe it’s time to get new people?

    This thread can go back and forth, like now. And like now, annoying more people. I hope it’s not influencing you to leave, you helped me through a lot of plugins issue

    So maybe the priority is getting new keymasters and moderators?

    #86731
    chrishajer
    Participant

    Preventing real people from posting objectionable stuff is going to require some sort of moderation. For the time being, you might want to stop allowing images. Secondly, you might want to install the Approve Registration plugin:

    https://bbpress.org/plugins/topic/approve-user-registration/

    Check on page 3 for a comment with a later version available for you.

    #86800
    zaerl
    Participant

    Do bbPress and WordPress share the same database?

    #86761
    Gautam Gupta
    Participant

    GlotPress runs on BackPress too. BuddyPress doesn’t need BackPress because much code of it is already there in WordPress. And WordPress will eventually shift to BackPress. Though, that’s really not a matter of argument.

    @Yuri

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

    As far as I know, matt, sambauers, and mdawaffe are keymasters and trent, chrishajer and _ck_ are moderators.

    #86760

    Back from my holidays and hopefully ramping up some bbPress dev in the next week or so, and this looks like a nice thread to come back to :)

    The thing that I think a few folks have missed out on, is that the biggest changes from bbPress 0.9 to bbPress 1.0 is that alot of the core functions of the backend were unified into BackPress. While this added bloat to be sure, it basically gave us a unified platform on which ‘all’ of the automattic software solutions would be based. Except… none of the others moved to BackPress.

    So we don’t have any (to the best of my knowledge) WordPress functions in bbPress, but also with “deep integration” we’re loading multiple classes and functions that effectively do the same thing. With deep integration we duplicate all of the base calls and functions every time we load a page.

    BuddyPress got round this by ripping out all of the backpress stuff, and making the bbPress functions call the WordPress functions. BuddyPress’ forum is based on bbPress, its isn’t bbPress. This is where Sam kind of got the short end of the stick. Had WordPress moved to BackPress (instead of porting WP changes into BackPress) then all of the Automattic software solutions would be on the same base platform, and integration between them all would be a doddle. It also would have meant that bbPress could be both a stand alone AND a plugin, as it would effectively be a large “module” on top of BackPress functions.

    The realsim is, that without any form of Project Management (and i know that phrase is where people start to hate me) or cohersion between the Automattic projects or developers and contributors, we’re effectively going to go in circles here.

    Today marks the 3rd Month with no blog post or communication (other than the infamous “I just want to quit the whole project” statement from Matt). As much as that is disheartening, its not a shock. Matt (the person) and Matt (the developer) and those he works with on these projects have their hands full right now; and from what I’ve seen Chris has continued to steady the ship in a wonderful fashion… but make no mistake we’re drifting aimlessly in the current direction. Lets just keep the ship afloat, try and fix some bugs, and we’ll see what happens when we’re closer to a release.

    Hope you’re all having a wonderful afternoon.

    #86759
    jurasiks
    Participant

    I thonk that BuddyPress needs WP installation for work… so it’s fully WP plugin. Am i not right?

    Second, i sent 2 messages to Matt too… still no answer from him.

    Third. I think there is best solution for both teams = keep bbpress as standalone but with deep WP intergration plugin.

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

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