Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\"'

Viewing 25 results - 23,376 through 23,400 (of 26,590 total)
  • Author
    Search Results
  • #55244
    parthatel
    Member

    That doesn’t work when I add that to my WordPress (it has integrated functions). Nothing appears when I added the code. Also, what is the code to display content if user is logged in, else (if not logged in) display some other content.

    #65869
    _ck_
    Participant

    Okay, some bbPress users may be able to get it to work with WordPress 2.6 by adding to your wp-config.php

    @define('ADMIN_COOKIE_PATH', '/blog/wp-admin');

    where “blog” is your blog’s actual path. If it’s in the webroot, just take out “blog” entirely and leave '/wp-admin'

    #65867
    _ck_
    Participant

    We might have to sit tight for a 0.9.1 release or something like that.

    I figured out a work-around to get into admin area on WP 2.6 but this will “knock out” your bbPress login as you switch back and forth:

    https://wordpress.org/support/topic/188964/page/2?replies=41#post-803992

    #65866
    jasonistaken
    Member

    There was a large commit to trunk a few days ago that upgraded most of the cookie stuff.

    #65865
    Erunafailaro
    Member

    So what next?

    Is this an issue of configuring wp 2.6 and bbpress 0.9.0.2 correctly to fix this problem?

    Or is a software-update necessary?

    #65864
    _ck_
    Participant

    I wonder if a newer bbPress build will be required which can be taken from trac (or via svn).

    Let me tinker a bit and see if they changed cookie methods (yet again, sigh)

    CONFIRMED: WP 2.6 breaks cookie sync

    and I get a endless-loop login by WP 2.6

    Many people seem to confirm similar cookie problems:

    https://wordpress.org/support/topic/188964

    https://wordpress.org/support/topic/188870

    #3622
    #3621
    749549
    Inactive

    Hello,

    I have a new installation of bb press integrated with my main wordpress site. For a whole bunch of reasons I want to edit the bb press installation so that there’s no way to register for the board through the board itself; I only want people to be able to register through the main wordpress site. Is there any way to block registration through the board, or just remove each element of it manually? I’m using the theme “Scoun” if it makes any difference. Any suggestions would be greatly appreciated.

    #65756
    chrishajer
    Participant

    Those don’t look like errors to me, they just look like informational messages that the tables already exist, and the reason they already exist is because you are performing a “database integrated installation”, since you already installed WordPress.

    Is there some functionality missing that makes you think these are errors?

    #3596
    749067
    Inactive

    Hi —

    So the first time I tried to install this onto my new database, I selected the WordPress Integration and gave it a go: I received an email telling me I was all set to go, but the installation page reported this error:

    Table ‘wp_users’ already exists

    Table ‘wp_usermeta’ already exists

    >>> User tables will already exist when performing a database integrated installation.

    So I went back to Step 2 and went through the installastion, skipping the Integration part … and again I received the confirmation email, but got the same error:

    Table ‘wp_users’ already exists

    Table ‘wp_usermeta’ already exists

    >>> User tables will already exist when performing a database integrated installation.

    even though, looking at the installation log, it clearly says it skipped the integration part …

    how do I get a fresh installation, or fix the error?

    #65768
    hinch
    Member

    I hadn’t read the guide on merging with wordpress – I am building it into a CMS built for a client.

    I had already adjusted pluggable.php instead of simply editing bb-config and adding the cookiepath, d’oh!

    I actually have a working solution now. Instead of ussing about with automatic login the main website can generate a cookie that BBpress likes. I did have to modify wp_validate_auth_cookie and wp_generate_auth_cookie to include my own hash and adjust the config as pointed out above but otherwise everything is unmodified… so far!

    #50096
    chrishajer
    Participant

    You need to add this to the top of your wp-config.php right after <?php:

    require_once('/path/to/bbpress/bb-config.php');

    I would use the full server path to the bb-config.php file, not a relative path like ./bbpress/bb-config.php (rumor is that full paths work better) and not a URL like http://www.example.com/bbpress/bb-config.php (URLs won’t work at all here).

    That’s it, just one step. Good luck.

    #65849
    chrishajer
    Participant

    Can you past that code into something like pastebin or pastie? The formatting is lost displaying it here.

    Thanks.

    http://pastebin.com/

    http://pastie.org/

    parthatel
    Member

    ok, so I added require_once('path/to/bbpress/bb-config.php'); to my wp-config.php file. I then added the bbpress discussions code:

    <table id="latest">

    <tr>

    <th><?php _e(‘Movie’); ?> — <?php new_topic(); ?></th>

    <th><?php _e(‘Posts’); ?></th>

    <th><?php _e(‘Last Poster’); ?></th>

    <th><?php _e(‘Freshness’); ?></th>

    </tr>

    <?php if ( $super_stickies ) : foreach ( $super_stickies as $topic ) : ?>

    <tr<?php topic_class(); ?>>

    <td><?php bb_topic_labels(); ?> <big>“><?php topic_title(); ?></big></td>

    <td class=”num”><?php topic_posts(); ?></td>

    <td class=”num”><?php topic_last_poster(); ?></td>

    <td class=”num”>“><?php topic_time(); ?></td>

    </tr>

    <?php endforeach; endif; // $super_stickies ?>

    <?php if ( $topics ) : foreach ( $topics as $topic ) : ?>

    <tr<?php topic_class(); ?>>

    <td><?php bb_topic_labels(); ?> “><?php topic_title(); ?></td>

    <td class=”num”><?php topic_posts(); ?></td>

    <td class=”num”><?php topic_last_poster(); ?></td>

    <td class=”num”>“><?php topic_time(); ?></td>

    </tr>

    <?php endforeach; endif; // $topics ?>

    </table>

    I added that code to my index.php file in my wordpress theme and this is what I get as the output in the browser:

    <table id="latest">

    <tr>

    <th>Movie — Add New »

    </th>

    <th>Posts</th>

    <th>Last Poster</th>

    <th>Freshness</th>

    </tr>

    </table>

    Obviously, there is something wrong. Does anyone know what?

    #50095
    parthatel
    Member

    ok, so what exactly are the steps to load bbpress into wordpress?

    #65823
    chrishajer
    Participant

    Wow, that most certainly is a problem.

    Two thoughts.

    1. If I disable “meta redirects” in FF with the web developer toolbar, it does not keep redirecting, it just dies. Are you trying to redirect people from the bbPress profile page to the WordPress profile page, and somehow that is typed wrong? Like in journal/messageboard/profile.php there is a redirect that sends the browser to WordPress journal/wp-admin/profile.php and it’s not working for some reason?

    2. There is some weird test cookie stuff being sent, although I doubt it has any effect on this problem. Never know though.

    wordpress_test_cookie
    WP+Cookie+check
    www.louisecooper.com
    /journal/

     

    I suspect it’s something with a refresh bouncing the user back and forth.

    #65781
    724719
    Inactive

    make sure you have the bb-config.php file set up correctly.

    go to bbPress Admin > Settings > WordPress Integration.

    Then tick the check box that says “Show manual config settings”. Make sure you copy all of the information that then shows up. Into the your bb-config.php.

    I had trouble with this, until i did this and it worked some how. Other than that I dont know what I can do.

    Good Luck!

    #3615
    744478
    Inactive

    For more than a week I am fighting with bbPress and the latest WordPress version.

    My problem is that user comments don’t appear. Well, I can see them in the Administration area in WP but not in the forum. Users already move away because they think I blocked their comments.

    I actually installed bbpress because I wanted users to discuss on my page but now no one can discuss anymore lol.

    My WP installation is at http://www.webserver.com and I installed bbpress on http://www.mywebserver/forum (example addresses)

    I installed the WP plugin “bbPress Post” and filled out all the details. Also I installed bbSync.

    At least when I write a new post the post title appears in the forum. So one good thing. But that’s all. How do users comment from my blog? I don’t want to put a link on every post “go to the forum and post there”.

    I do have a custom theme by the way.

    Actually I am not an idiot but now I’m just freaking out with bbPress because it’s so complicated and most of the how-to’s don’t work or are just bad explained. Here’s an example:

    “Want a link back to the blog post? ” it days in the bbSync settings.

    Well, what can I do there? There’s a field. Do I have to write YES or a special tag? :| Absolutely no explaination.

    #3614
    parthatel
    Member

    I managed to add the WordPress functions to bbPress, but I now need to know how I can add the bbPress functions to WordPress. I want to include the exact “Discussions” code in “front-page.php” of bbPress to the “index.php” in WordPress. I know there is a plugin for this, but it wasn’t what I wanted.

    I used this code to integrate WordPress into bbPress (added to the top of bb_config.php)

    define('WP_BB', true);

    if ( !defined('DB_NAME') ) {

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

    if ( !defined(‘BB_PATH’) )

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

    require_once( BB_PATH . ‘bb-settings.php’ );

    I think all I need to do is require bb-config.php and then the bb-settings.php. Anyone know how to do this (following the php example above)?

    *I only wish I know php.

    #65841

    In reply to: Where is

    _ck_
    Participant

    I believe you have not followed (all of) the steps for cookie integration between wordpress and bbpress. Some of the (hundreds) of integration threads might help too.

    #64981
    740613
    Inactive

    Para aquéllos que quieran hacer la locura que he intentado, y por ahora me va saliendo:

    1. Migrar un foro phpBB a bbPress (sólo desde phpBB2)

    2. Integrar WP y BBPress.

    (Se puede)

    No debe aparecer ninguna especificación de codificación ni en bb-config.php, NI EN LA SECCIÓN ADMIN de BBPress. Es decir: quitad utf8 en la pestaña “opciones” “WordPress Integration” y del archivo bb-config.php.

    Me ha costado un mes.

    #3612

    Topic: Where is

    in forum Troubleshooting
    724719
    Inactive

    how do i change the log out link to use the log out of file of wordpress instead of bbpress, which isnt working for some reason.

    im lookin in ‘kakumei’ logged-in.php file and it shows:

    <p class="login">
    <?php printf(__('Welcome, %1$s!'), bb_get_profile_link(bb_get_current_user_info( 'name' )));?>
    <?php bb_admin_link( 'before= | ' );?>
    | <?php bb_logout_link(); ?>
    </p>

    question is where is bb_logout_link(); so i can change the actual link? which file is that function located in.

    thanks

    chrishajer
    Participant

    Adding that line only allows you access to WordPress functions from within bbPress, it has nothing to do with making your forum look like your blog. For that, you will need to do some CSS and template work: none of it is automatic.

    #65838
    738576
    Inactive

    I found the answer here:

    https://bbpress.org/documentation/integration-with-wordpress/

    I guess that’ll learn me to read before posting. :)

    #3611
    738576
    Inactive

    Hi,

    I am just going through the setup of bbPress and I have 2 questions about the above.

    1. Add cookie integration settings:

    If you want to allow shared logins with an existing WordPress installation.

    Does this mean that users who register for the forum are also able to write posts on my blog? I can’t imagine this would the case, but seeing this made me a bit nervous.

    2. Add user database integration settings:

    If you want to share user data with an existing WordPress installation.

    What’s the benefit behind this, besides centralizing user data?

Viewing 25 results - 23,376 through 23,400 (of 26,590 total)
Skip to toolbar