Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\'

Viewing 25 results - 22,826 through 22,850 (of 26,836 total)
  • Author
    Search Results
  • #66113
    spidersilk
    Member

    I second keress’s question – I have to get a BBpress forum up and running this weekend on a WordPress site that’s already been upgraded to 2.6.3. And I don’t really think I can just downgrade, because somewhere in the last few upgrades (don’t know exactly when ) the posting interface in the admin changed drastically, and I don’t want to confuse people too much.

    It’s not absolutely vital that they be integrated – the blog doesn’t actually allow commenting, or new users to register at all – the only registered users it has are the owner (a professor) and his six teaching assistants. So they’re the only ones who will benefit from integration – the students who would be posting in the forum can’t register on the blog anyway. But it would be nice for the prof and TAs not to have to log in twice.

    I don’t want to inflict alpha software on them if I can avoid it, so I guess I’ll just have to do without integration for now, but I’m wondering, if I end up trying to integrate the two later on, will that work?

    #4210
    keress
    Member

    I’ve copied the same navbar I’m using on WordPress into BBPress, it has hard links, so it should be straightforward, but for some reason, within this header.php file, the links aren’t live.

    http://www.addiva.net/bbpress/

    The code looks like this:

    <div id=”smallNav”>

    Home

    | Possibilities

    | Events

    | Blog

    | Forum

    | Store

    About ADDiva

    | Meet Linda

    |Media

    | Resources

    | Contact </p>

    </div>

    <!– end smallNav –>

    #68120

    @sam: The function ‘display’ in the bbpress-live.php class ‘bbPress_Live_Widget_Forums’ appears to echo out the fora lists etc. Look who I’m preaching too ;) I must have missed something!

    Curious Ipstenu that the rest of your wp blog functions with this plugin enabled and in this state. Not my current experience. Server differences?

    #68119

    Viewing source was the first thing I tried. Old habits die hard ;) But really, there was nothing.

    I did not check the error logs, so I did that right now.

    On Server:

    Make sure error-log is set to verbose for now.

    On bbPress:

    Enable XML-RPC – YES

    On WordPress:

    Install plugin – Done

    Activate Plugin – Done (no errors)

    Configure Plugin –

    URL (http://jorjafox.net/forums/)
    ID/Password (Ipstenu / 555Nope!)
    Caching Enabled - NO
    Enable forums widget - YES
    Enable Topics widget - YES
    Copy new WordPress posts to bbPress (not implemented)

    Then I went into widgets and picked ‘bbPress latest topics’, put it at the bottom of my sidebar. I gave it the title of ‘Latest Topics’ and saved my changes.

    The header shows up on the bottom of the side bar, no content.

    Error log is empty. Frustration resumed :(

    By the way, if the standalone function is called to be echoed like print_r($myarray);, shouldn’t that output something?

    #4209
    _ck_
    Participant

    I just wanted to announce I have a primitive prototype of OpenID working with bbPress and should have a more stable version for experimental testing within a few days (likely by the end of the weekend). The only requirement is your PHP needs CURL with https (ssl) support, which many servers have or can easily add ie. via cpanel’s rebuild PHP (check your PHPINFO to be certain).

    I finally got an old openid 1.1 framework working with openid 2.0 so this makes it possible to use it with all the newest providers: aol, yahoo, microsoft and now even Google (as a “consumer”, not as a server).

    The biggest problem was making it work without extra libraries like the complex math support and even DOMXML which is not available on many shared hosting PHP4 servers. But found a way around that too ;-) I’ll eventually add fsockopen support with ssl so even CURL is not a requirement.

    ps. OpenID on WordPress.com needs to be fixed to offer a secure login when a cookie is not present like every other provider. This is annoying :-(

    #67811
    Joss Winn
    Member

    Isn’t Sam’s plugin almost what you’re looking for:

    https://wordpress.org/extend/plugins/bbpress-live/

    It’s not a fully fledged forum plugin, but I’m guessing it’s something you could build on.

    #4205
    johnhiler
    Member

    I have been getting reports that registrants on my bbpress forum aren’t receiving their auto-generated password emails from my server.

    I’ve read a few threads on this forum that suggest workarounds. But I’m more interested in allowing my users to set their own passwords.

    There’s a neat WordPress plugin that does exactly what I want:

    http://wordpress.org/extend/plugins/wordpress-password-register/

    I don’t even need the email confirmation/validation code part. I just want users to be able to specify their own passwords. If bot registrations become a problem, I’d just install a captcha plugin.

    Can someone adapt that code into a bbpress plugin that allows for user-defined passwords? I’d be glad to pay $100 to anyone who can deliver a working plugin! Plus I’d be eternally grateful and would have no objections to open sourcing any code that came out of this.

    Please let me know!

    #67810
    chrishajer
    Participant

    Why? I think it’s because bbPress is not a WordPress plugin. There are already other forum plugins for WordPress. bbPress is not one of them.

    #67809
    zappoman
    Member

    I am also looking for such a thing.

    I’ve been hacking on a WP plugin that will embed a forum into a page, but it’s not working yet.

    I’d love to find out if someone else has already built this.

    I am looking to embed a full fledged forum not just a feed. I want posting, navigation etc.

    So, let’s say you had wordpress at:

    http://example.com/

    And you made a wordpress page call /forum/

    And you wanted to embed bbPress there.

    Why is not not the same as running bbPress at /forum/?

    Well, I want wp to handle the rendering of the header, footer, sidebar, etc. I just want the page content to be bbPress.

    #68641
    chrishajer
    Participant

    How about using the 1-column fixed bbPress raw theme and customizing it to look like your blog?

    http://bbpressraw.com/bbpress_blank_themes/

    I don’t think I’ve seen anything like Kubrick for bbPress at all yet.

    #68558

    Thanks Deadpan11,

    The core behavior of bb-settings.php is to append BB_HASH to the cookie name on line 638:

    $bb->logged_in_cookie = ($bb->wp_cookies_integrated ? 'wordpress_logged_in_' : 'bbpress_logged_in_') . BB_HASH;

    Even in a non-WPMU installation such as this one, I would agree that this is a good coding protocol to follow. I did try your suggestion though, because I do want to understand, but the cookie was still created as wordpress_logged_in_blah3_blah5_blah8.

    This caught my eye over the weekend…

    In bb-settings.php line 592:

    $bb->wp_cookies_integrated = false;
    $bb->cookiedomain = bb_get_option('cookiedomain');
    if ( $bb->wp_siteurl && $bb->wp_home ) {
    if ( $bb->cookiedomain ) {
    $bb->wp_cookies_integrated = true;

    I even tried setting $bb->cookiedomain=” to allow the code to construct the value… no joy. No problems logging into bbPress, which is just fine for the moment.

    The code is alpha! Since others had had success I was trying to nail down my server environment deltas…

    I’ll push on with other projects for now :)

    #4206
    hotshottwo
    Member

    Can anyone point me at some instructions on how to create a bbPress theme that loosely matches the WordPress default (Kubrick) theme, i.e. 760 px wide with rounded page corners and space for a header image with rounded corners? Looking for a quick way to integrate bbPress so that it has the same look as the rest of my WordPress site.

    #68113

    Hi,

    I recently installed BBpress live on my blog (http://www.rensenieuwenhuis.nl), and it worked like a breeze. I’m using WP 2.6.1 and bbPress version 1.0-alpha-2.

    I downloaded the WP-plugin from wordpress.org/extend, installed it, then activated it in the plugins-screen, then to the settings-screen in the WP-plugin section, then activated both the widgets (it’s a check-box), and then added the widgets to my sidebar.

    I did encounter minor problem though, which I described here: https://bbpress.org/forums/topic/bbpress-live-widgets-fail-when-changing-other-widgets

    #68585
    _ck_
    Participant

    Very nice work.

    Demo:

    http://bbshowcase.org/forums/?bbtheme=WPMimic

    don’t forget to add the info at the top of style.css

    /*
    Theme Name: WP Mimic
    Theme URI: http://idolsavenue.com/forums/topic.php?id=1
    Description: This theme is called "WP Mimic" because it is structured after the current themes of WordPress (.com and .org) forums.
    Version: 0.02
    Author: limited
    Author URI: http://idolsavenue.com/forums/
    */

    and make a proper screenshot

    #68557
    Deadpan110
    Member

    @musnake – as you are not using sub domains, the only thing i can see wrong with your setup is the:

    $bb->logged_in_cookie = 'wordpress_logged_in_blah3_blah5_blah8';

    Try changing to:

    $bb->logged_in_cookie = 'wordpress_logged_in_';

    #68556
    Deadpan110
    Member

    Im not sure if I have set my bbPress 1.0.alpha2 to work with WordPress MU 2.6.3 correctly, but its working.

    http://domain.com = my WordPress MU

    http://forums.domain.com = bbPress sub domain

    As you can probably see, there are things within the config files that might not be needed.

    WordPress/wp-config.php

    define('AUTH_KEY', 'authkey');
    define('SECURE_AUTH_KEY', 'secureauthkey');
    define('SECURE_AUTH_SALT', 'secureauthsalt');
    define('LOGGED_IN_KEY', 'loggedinkey');
    define('SECRET_KEY', 'secretkey');
    define('SECRET_SALT', 'secretsalt');
    define('LOGGED_IN_SALT', 'loggedinsalt');

    I copied and pasted the existing lines straight into bb-config.php replacing what was already there and then added the BB_ to each.

    bbPress/bb-config.php

    define('BB_AUTH_KEY', 'authkey');
    define('BB_SECURE_AUTH_KEY', 'secureauthkey');
    define('BB_SECURE_AUTH_SALT', 'secureauthsalt');
    define('BB_LOGGED_IN_KEY', 'loggedinkey');
    define('BB_SECRET_KEY', 'secretkey');
    define('BB_SECRET_SALT', 'secretsalt');
    define('BB_LOGGED_IN_SALT', 'loggedinsalt');

    In BOTH bb-config.php AND wp-config I added:

    define('COOKIE_DOMAIN', '.domain.com'); // remember the '.' prefix
    define('COOKIEPATH', ''); // this is empty

    Then I visited http://forums.domain.com/bb-admin/options-wordpress.php (Settings > WordPress Integration) and scrolled down to ‘Manual bbPress config file settings’ and copied all the text below ‘WordPress cookie integration speedup’ and pasted into bbPress/bb-config.php.

    $bb->wp_siteurl = 'http://domain.com';
    $bb->wp_home = 'http://domain.com';
    $bb->cookiedomain = '.domain.com';
    $bb->cookiepath = '';
    $bb->authcookie = 'wordpress_LEFT_THIS_ALONE';
    $bb->secure_auth_cookie = 'wordpress_sec_LEFT_THIS_ALONE';
    $bb->logged_in_cookie = 'wordpress_logged_in_'; // DELETE the hash part
    $bb->admin_cookie_path = '/bb-admin';
    $bb->core_plugins_cookie_path = '/bb-plugins';
    $bb->user_plugins_cookie_path = '/my-plugins';
    $bb->sitecookiepath = '';
    $bb->wp_admin_cookie_path = '/wp-admin';
    $bb->wp_plugins_cookie_path = '/wp-content/plugins';

    Oh, and I added the$bb->wp_table_prefix = 'wp_'; too.

    NOTE

    $bb->logged_in_cookie = 'wordpress_logged_in_';

    The hash was removed and the line reads EXACTLY as above.

    To test, just make sure you are logged out of both and then log in and visit your other site.

    Final Note, as stated above – there is probably a lot of unneeded clutter in the bb-press config, but all works for me – no matter which domain I log into!

    I hope this helps someone :)

    #4201
    umdenken
    Member

    I’ve started a project to allow people to integrate apps like bbPress into existing Rails applications. From the README:

    The Integration API is an Open Source project with the goal of making

    it easy to integrate an existing Rails application with any number of

    off-the-shelf apps, such as WordPress, Beast, PunBB, or Vanilla. The

    focus is on enabling transparent single sign-on between the

    applications.

    The basic idea


    The key idea is to add a web services API into the existing Rails

    application, which allows one or more 3rd party apps to get the

    information they need, when they need it. The API should be

    configurable enough and general enough so that it can be added to any Rails app without modification. The Rails app stays in control of all sign-in and sign-out functions.

    …so, the idea is to write a plugin for bbPress that works something like WordPress’s LDAP plugin. But I’m not a big bbPress coder … anybody interested in helping with this?

    Project page: http://greenfabric.com/page/integration_api_home_page

    #68111

    I ended up using Jeriko’s Import RSS feeds into your WordPress blog hack instead. A bit of PHP fiddling and it gets me where I’m going.

    #67020
    Tammy Hart
    Member

    Is bbPress ever going to get as sophisticated and easy to use as WordPress?

    #68571
    hornymelon
    Member

    I guess the version numbers would help. I’m on wordpress 2.51 and bbPress 0.9.0.2

    Sam Bauers
    Participant

    @limited

    Automattic generally don’t have a problem with this sort of thing at all unless of course you were using it to pretend to be WordPress.org or WordPress.com in some sort of deceptive way. Which of course you aren’t. :)

    #68440
    Sam Bauers
    Participant

    @buzz_lighty

    Yes, integration you describe is possible. The only problem is if you try to load WordPress inside bbPress

    @zachblank

    As above. All the issues are being compiled on a single Trac ticket:

    https://trac.bbpress.org/ticket/972

    #68439
    zachblank
    Member

    @eagano – Hello, I am an experienced WordPress and bbPress developer. I followed your example exactly and have the integration perfectly. Only issue is when I load in WordPress functions bbPress becomes buggy. I am still able to login as before on each eite and become logged into the other. Although being logged in as a Key Master i am not able to access bb-admin nor am I able to reply or post a new topic. when looking at a topic i see the reply header at the bottom of the page but the for is missing. Investigating showed me that the details in bb_current_user and different with the functions integrated. And ‘allcreds’ is non existent in that object. making me unable to do anything on the bbPress install. Thanks for your help! Grate comments above.

    @limited, the design is very close indeed!

    #68555

    Hmm,

    With all the path and cookie info stripped out of bb-config and wp-config, cache and cookies cleared, the logging into bbPress:

    wordpress_logged_in_URIHASH => /forum/
    wordpress_URIHASH => /wp-content/plugins
    wordpress_URIHASH => /wp-admin
    wordpress_URIHASH => /forum/my-plugins
    wordpress_URIHASH => /forum/bb-plugins
    wordpress_URIHASH => /forum/bb-admin

    Note the trailing slash on the /forum/ path.

    The only ‘integration’ info in the bb-config.php is the db connection stuff. That’s it.

    Now, this may be/probably is totally natural, that `wordpress_URIHASH => /wp-content/plugins

    wordpress_URIHASH => /wp-admin` cookies are set, and this goes to highlight how wrong my perspective is! Here I was thinking that I had configured at least part of it correctly, the auth cookie stuff, but it was doing it all along, haha.

    I wonder if one of the WP user permissions plugins (WP-Sentry comes to mind) is affecting this -nah! Cookies are set before output is sent.

    Time to back off of this.

    Users will just have to log in twice (between the blog and the fora).

    Thanks rowoot.

Viewing 25 results - 22,826 through 22,850 (of 26,836 total)
Skip to toolbar