Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\"'

Viewing 25 results - 26,576 through 26,600 (of 26,650 total)
  • Author
    Search Results
  • #50103

    In reply to: Integration with WP

    kannued
    Participant

    Actually, I just tried to login to BBPress, and there appears to be a circular matter with logging into the dashboard.

    wp/bbpress/wp/bbpress/wp/

    So I guess I will have to re-install everything, starting with BBPress, then loadingWordPress into it, instead of what I have now.

    #50182

    In reply to: wp bb login issues

    You’re using WPmu, yes?

    It’s a little different. See my response here: https://bbpress.org/forums/topic/77?replies=6

    You could use the $bb->wp_home stuff, but you’ll have to also:

    $bb->usercookie = ‘wordpressuser’;

    $bb->passcookie = ‘wordpresspass’;

    Since MU cookies are structured a little differently than WP cookies.

    #50232

    In reply to: Cookies and WPMU

    Try this.

    Look at the cookie you have from you mu site. (In firefox: preferences -> privacy -> cookies -> view cookies then find the cookie in question. I’m sure there’s a way to do this in other browsers as well.)

    I bet it looks like this:

    Name: wordpressuser

    Domain: example.com // or is it .example.com ?

    Path: /

    Send For: Any type of connection

    And one for the password too:

    Name: wordpresspass

    Domain: example.com

    Path: /

    Send For: Any type of connection

    If that is the case, in bbPress’ config.php set the following.

    $bb->usercookie = ‘wordpressuser’;

    $bb->passcookie = ‘wordpresspass’;

    $bb->cookiedomain = ‘example.com’; // or .example.com if there was a . above

    $bb->cookiepath = ‘/’;

    If I’m wrong in my guess about the structure of yrour cookies, please post what they are (name, domain, path, send for only. Don’t post the content of the cookie).

    #755

    Hi,

    I just noticed on the WordPress Development page

    (http://wordpress.org/development/2006/10/mu-and-bbpress/)

    That bbPress has RSS Feeds. How do I call them?

    What would be prefect is something like the Del.icio.us site, where you can customize the output.

    TIA

    #50102

    In reply to: Integration with WP

    kannued
    Participant

    A question for Atsutane or anyone else for that matter in the know!

    You talked about the design being easy if a person loads the WordPress into BBPress. But what if I do the opposite, load BBPress into WordPress? Which is what I have done.

    Is it easier or BETTER to integrate WordPress into BBPress, or BBPress into WordPress, both from a programming perspective and from a website design perspective?

    #50115

    huh. Still spews erros:

    “bbPress database error: [Table ‘bbpress.wp_users’ doesn’t exist]”

    So it’s still looking in the bbpress db instead of the MU one.

    Fiddling with “// The rest is only useful if you are integrating bbPress with WordPress.

    // If you’re not, just leave the rest as it is.” doesn’t change things either.

    If I comment out the define custom user table, it works without errors, but still doesn’t share user info. Weird.

    Any hints or where I’ve overlooked thing? Something else to edit?

    Also, I should mention I’m doing this on a local server.

    #738
    mozey
    Member

    I got this from the documentation,

    “If you’ve installed bbPress into a subdirectory of your WordPress installation, define $bb->wp_home and $bb->wp_siteurl as your WordPress blog address and WordPress address, respectively. Both sites will now share the same cookies so that when you’re logged into one, you’re logged into the other.”

    so why would’nt this work for me? probably something simple that i’m overlooking. But i do have those two variables set (in my case, they are both, http://exampledomain.com), and nothing!, i have to login to both systems.

    They do share the same usertable, just not the session cookies.

    #50280

    In reply to: sports template

    Zambu
    Member

    Looks very good. I like the sports theme and especially the way you executed it in a simple but memorable manner. This approach perfectly matches the “simple but elegant” slogan of bbPress.

    I am not as good as you are at coming up with a nice looking theme (plus mine is a business site, so slightly more serious topic), so I just modified the standard header and colors a bit. But I still like my new bbPress forum much better than my former YABB forum system. YABB was somewhat slow for me, but the biggest problem was that it was nearly ignored by every search engine. On the other hand, my WordPress blog is very well indexed by the main search engines and I am hoping that bbPress will have the same results.

    thomas at innovatize dot com slash forum

    #752
    ear1grey
    Member

    Quick Version:

    Is it feasible internally, to have a user post a comment to the forum and register at the same time?

    Detail:

    Something that’s been mentioned already by a regular reader of my blog is that he’d be far less inclined to leave a comment anywhere that he had to register first.

    The BBPress registration process is mind-numbingly simple, but users first have to get over the two-step-hurdle of registering and then leaving their comment.

    So it strikes me that, since the registration details are the same as you have to provide when blog-commenting some middle ground might be beneficial.

    I imagine it working such that when the user submits their comment (topic) their confirmation message is along the lines of:

    Thanks! We’ve sent you an email to confirm your address. Please return here using the link we’ve sent you to make your comment visible.

    From here it becomes a small step to replace the wordpress comment mechanism with bbpress, which is somehting I’d like to do.

    #50242
    hoosierplew
    Member

    Awesome, that worked! Thanks for the assist.

    #50241

    Try require_once('/path/to/wp-blog-header.php'); instead of wp-config.php.

    #744
    hoosierplew
    Member

    I’ve just upgraded bbpress and am running into this error when I use the WP function get_footer():

    Warning: extract() [function.extract]: First argument should be an array in /home/drills/public_html/wp-includes/functions.php on line 2139

    The forum in question is located at http://43drills.com/forum/

    The error can be found just above the gigantic RSS button in the footer in the above link.

    #50081
    Atsutane
    Member

    Thanks :) It work now

    #49855

    What you’re trying to do should be done in bbPress’ config.php file, but you’re really close :)

    Put your index.php back the way it was. In bbPress’ config.php file, put the following two lines right after the <?php line.

    require_once('/path/to/wp-blog-header.php');

    define('WP_BB', true);

    It seems you’ve found the correct path to use in you system: /home/myusername/public_html/blog/wp-blog-header.php

    So it should now look like:

    <?php

    require_once('/home/myusername/public_html/blog/wp-blog-header.php');

    define('WP_BB', true);

    Then, copy your bb-templates/ directory to my-templates/ this is so you can modify the template files without editing the original ones; bbPress will use the files in that directory automatically instead of the original ones.

    In my-templates/front-page.php (and any of your other template iles), you can now call any WordPress template function, even get_header().

    #50080

    You should be able to use any bbPress functions you like in WordPress as long as you

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

    #50097

    In reply to: Integration with WP

    Atsutane
    Member

    When u load wordpress function inside bbpress. U already integrate both design point and database point. You only need to add WP template tags inside bbpress template.

    #49854
    cmcraft
    Member

    Nope. Here is my index.php file from the bbpress directory. What am I doing wrong?

    ‘<?php

    require(‘./bb-load.php’);

    //the next two lines are my attempts to load it myself

    require_once(‘/home/myusername/public_html/blog/wp-config.php/’);

    require_once(‘/home/myusername/public_html/blog/wp-blog-header.php’);

    $bb_db_override = false;

    do_action( ‘bb_index.php_pre_db’, ” );

    if ( isset($_GET) && ‘1’ == $_GET ) :

    $forums = false;

    elseif ( !$bb_db_override ) :

    $forums = get_forums(); // Comment to hide forums

    $topics = get_latest_topics();

    $super_stickies = get_sticky_topics();

    endif;

    do_action( ‘bb_index.php’, ” );

    if (file_exists( BBPATH . ‘my-templates/front-page.php’ ))

    require( BBPATH . ‘my-templates/front-page.php’ );

    else require( BBPATH . ‘bb-templates/front-page.php’ );

    //then i tried the include header call to no avail so i tried this

    <?php include (/home/myusername/public_html/blog . ‘/wp-blog-header.php’); ?>

    ?>

    #49853
    cmcraft
    Member

    I am going to try this, thanks to the page you referenced above.

    <?php include (TEMPLATEPATH . ‘/header2.php’); ?>

    #49852
    cmcraft
    Member

    Ok, now I am beginning to understand. I assume from looking around that I need to add that code (such as ‘<?php get_header(); ?>’) into the bbpress/index.php file.

    Naturally bbpress won’t know to look in the /blog/ folder (bbpress is in the /blog/bbpress/ folder) so how do I set the path?

    Would that be another require( etc code?

    Thanks for all the help, I am learning so much!

    #725
    Atsutane
    Member

    The only way available right now is to load wordpress into bbpress. I like to load some bbpress function into wordpress.

    Anyone know how to do it?

    #722
    ear1grey
    Member

    I’ve modified my Google Analytics Plugin for WordPress and it appears to be working in BBPress (albeit without the UI for configuring the “uastring”).

    Testers welcome; get it here…

    #49851
    #49974
    larmir
    Member

    Found my solution here….

    https://bbpress.org/forums/topic/17?replies=26

    Thanks astereo:

    Solved my problem. It was coming from

    #

    $bb->wp_table_prefix = false; // ‘wp_’; // WordPress table prefix.

    #

    $bb->wp_home = false; // WordPress – Options->General: Blog address (URL) // No trailing slash

    #

    $bb->wp_siteurl = false; // WordPress – Options->General: WordPress address (URL) // No trailing slash

    I had set the urls only to domain.com/directory, when I added the http and www it worked fine.

    #708
    larmir
    Member

    I’m digging the idea of bb inside wordpress. thanks

    installed bb following integration with wordpress. installed fine. however, none of my logins work for bbpress. if i try to write a post, i’m asked to login. i do so, and the login doesn’t allow me to post or comment on threads. nor can i get into the admin area.

    i know the login is correct because when i use a false login, i get an error message – which doesn’t happen when i use the correct login. all that happens when i login with the correct info is i end up being told i need to login again. it’s as though i’m stuck in some loop.

    not sure what to do next. any help?

    #49850
    cmcraft
    Member

    ok, can you tell me how?

Viewing 25 results - 26,576 through 26,600 (of 26,650 total)
Skip to toolbar