Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 9,026 through 9,050 (of 11,598 total)
  • Author
    Search Results
  • #75934
    Gautam
    Member

    As you have bbpress installed in forum directory, thats why its showing one more forum

    if you have installed it in example.com, then only one forum would be shown

    (though you already know this)

    To fix this, you might do this (NOTE: I have not tested it, nor do I know if it might have a side effect on anything else, and this change will also be vanished when you upgrade bbpress):

    Open bb-includes/functions.bb-template.php

    Go to line number 711

    This would be written there:

    $link = bb_get_uri('forum/' . $forum->$column . $page, null, $context);

    Change forum/ to category/ or anything you want.

    #75930

    In reply to: Permalink question

    Gautam
    Member

    http://www.example.com/forum/topic/test-post#post-5

    this is just the post id link, it scrolls down till the post number 5 when we go to that link.

    #15275
    Marcomail
    Member

    Why every thread created have two different permalink, for example

    http://www.example.com/forum/topic/test-post

    and

    http://www.example.com/forum/topic/test-post#post-5

    #15264

    Topic: BuddyBar in bbPress

    in forum Plugins

    BuddyBar in bbPress

    It requires “deep integration” which I know I will catch hell from _ck_ for requiring, but for anyone that’s integrating BuddyPress and bbPress, and wants to have their BuddyBar in their forums, this is my solution.

    Happy testing!

    #15262

    Topic: Integration Woes

    in forum Installation
    jchildrose
    Member

    OK, I have sort of a weird problem that I am hoping I can get some help with.

    I have multiple WP sites integrated with each other – 1 install on the root domain, and numerous installs on subdomains.

    In order to integrate users and cookies to maintain a login valid across all the installs the Authentication Unique Keys section in my wp-config is set up like this:

    define (‘COOKIE_DOMAIN’, ‘.mydomain.com’);

    define(‘COOKIEPATH’, ‘/’);

    define(‘AUTH_KEY’, ‘mygeneratedkey’);

    define(‘SECURE_AUTH_KEY’, ‘mygeneratedkey’);

    define(‘LOGGED_IN_KEY’, ‘mygeneratedkey’);

    define(‘NONCE_KEY’, ‘mygeneratedkey’);

    $baseurl = ‘http://www.mydomain.com’;

    $cookiehash = md5($baseurl);

    define(‘COOKIEHASH’, $cookiehash);

    define (‘AUTH_SALT’,’AUTH_SALT’.COOKIEHASH);

    define (‘LOGGED_IN_SALT’, ‘LOGGED_IN_SALT’.COOKIEHASH);

    define (‘AUTH_COOKIE’, ‘AUTH_COOKIE’.COOKIEHASH);

    // define (‘SECURE_AUTH_COOKIE’, ‘SECURE_AUTH_COOKIE’.COOKIEHASH); // If you use connection SSL

    define (‘LOGGED_IN_COOKIE’,’LOGGED_IN_COOKIE’.COOKIEHASH);

    define (‘TEST_COOKIE’, ‘TEST_COOKIE’.COOKIEHASH);

    As a result, I can’t find the salts needed in wp-admin/options.php as they are not listed. I’ve tried using the same settings in bbpress as above in the bb_config file (see below), but no love. I’ve also tried changing them to BB_%WHATEVER% which doesn’t seem to work either.

    define (‘COOKIE_DOMAIN’, ‘.mydomain.com’);

    define(‘COOKIEPATH’, ‘/’);

    define( ‘BB_AUTH_KEY’, ‘mygeneratedkey’ );

    define( ‘BB_SECURE_AUTH_KEY’, ‘mygeneratedkey’ );

    define( ‘BB_LOGGED_IN_KEY’, ‘mygeneratedkey’ );

    define( ‘BB_NONCE_KEY’, ‘mygeneratedkey’ );

    $baseurl = ‘http://www.mydomain.com’;

    $cookiehash = md5($baseurl);

    define(‘COOKIEHASH’, $cookiehash);

    define (‘AUTH_SALT’,’AUTH_SALT’.COOKIEHASH);

    define (‘LOGGED_IN_SALT’, ‘LOGGED_IN_SALT’.COOKIEHASH);

    define (‘AUTH_COOKIE’, ‘AUTH_COOKIE’.COOKIEHASH);

    // define (‘SECURE_AUTH_COOKIE’, ‘SECURE_AUTH_COOKIE’.COOKIEHASH); // If you use connection SSL

    define (‘LOGGED_IN_COOKIE’,’LOGGED_IN_COOKIE’.COOKIEHASH);

    define (‘TEST_COOKIE’, ‘TEST_COOKIE’.COOKIEHASH);

    All of the users can login to bbpress using the same username and password as on the wp sites, but the cookie integration doesn’t work, and again – I cant find the correlating values in wordpress.

    Does anyone have any suggestions?

    #15259

    I’m trying to protect page on another subdomain… but unfortunately bbPress is not authenticating the cookie. (they are set for .domainabc.net)

    for test.domainabc.net:
    Cookie: bbpress_logged_in_00aa30280fe74d40ca269b5b2efffba3=rich%7C1247421898%7Cfbd785e0974af74814b56550af9c49dc

    for forums.domainabc.net
    Cookie: bbpress_logged_in_00aa30280fe74d40ca269b5b2efffba3=rich%7C1247421898%7Cfbd785e0974af74814b56550af9c49dc

    on test.domainabc.net i have something like this:

    require_once ('../forums.domainabc.net/bb-load.php');

    function add_allowed_redirect_hosts() {
    $allowed_redirects = array('test.domainabc.net');
    return $allowed_redirects;
    }
    add_filter('allowed_redirect_hosts', 'add_allowed_redirect_hosts');

    bb_auth( 'auth' );

    It will properly redirect to the login page, enter info, redirect back to test.domainabc.net – but then it will issue another 302 redirect back to forums.domainabc.net.

    and if i place a die statement within this bb_auth else on test.domainabc.net it will echo

    if ( 'auth' === $scheme && !bb_is_user_logged_in() ) {
    //redirects fine to login page the first time...
    } else {
    //echo - this happens when returning a 2nd time
    }

    BUT… if i return to forums.domainabc.net i’m logged in… and everything works.

    #75875
    Detective
    Member

    Let’s see… testing :p I’m tagging “tagform”.

    edit: it was added as topic tag.

    #50397
    Croyd
    Member

    I have a site with a wordpress/bbpress integration using a modified Atahualpa/Kakumei theme. My wordpress is version 2.8.1 & my bbpress is version 0.9.0.5. and it all works fine.

    I want to upgrade to the latest version of bbpress( version 1.0.1 ) but when I tested it I get backslashes before any single or double quotes no matter where I’m at in bbpress. It happens in topic titles, topic contents, when putting in the name for the site etc..

    Both work fine with the integrated logins and cookies. The problem only comes after I’ve put my reference to wp-blog-header.php in the bb-config.php file.

    I could do the hack that was suggested earlier but the downfall to that is that you won’t be able to have backslashes at all in anything.

    I’m thinking maybe the problem is that bbpress is using wordpress’s apply_filters function instead of its own, but that is a guess.

    Anyone got any ideas?

    Oh and besides the bbpress-integration plugin in wordpress i’m not using anything else on the test I did.

    #75831
    citizenkeith
    Participant

    I have switched off all plugins except the following:

    Allow Images 0.7.1

    BBCode Buttons Toolbar 0.0.9

    BBCode Lite 1.0.3

    bbPress Smilies 0.0.8

    Human Test 0.9.2

    I haven’t had a problem for 24 hours. Will slowly switch on plugins until I do.

    #75697
    Ohna
    Member

    Hi, bb-gian

    If you want this in “front-page” latest topic you can try this:

    <a href="<?php forum_link($topic->forum_id); ?>"><?php forum_name($topic->forum_id); ?></a>

    or if you just want show all categories:

    <a href="<?php forum_link(); ?>"><?php forum_name(); ?></a>

    #75770
    deadlyhifi
    Participant

    The standard version of approve user registration does not work in V1. This may be breaking registration.

    There’s an updated version of this plugin here: https://bbpress.org/plugins/topic/approve-user-registration/page/2/#post-3902

    I’ve got V1.0.1 working great with that and human test. But if you’ve tested with the plugins disabled I can’t really offer anymore help. Sorry.

    #75784
    deadlyhifi
    Participant

    mmm, just noticed that cookies with _utma, _utmb etc. state they come from

    .MYWEBSITE.com

    whereas the “wordpress_logged_in_NUMBER” states it’s website as

    www.MYWEBSITE.com (without the http this forum is auto adding it)

    could the fact that it has www at the start be the issue?

    My test site, on a subdomain, shares the same source – but then because its a subdomain it doesn’t have the www at the start.

    thanks for your continued replies ck.

    #75849

    In reply to: Pagination bug?

    Kar-l
    Member

    Thank you, Ohna. Yet it doesn’t solve the problem. I just tested it in English (with no translation) and the same bug appers.

    <div class="nav"><a class="prev page-numbers" href="" title="Previous page">&laquo; Previous</a><a class="page-numbers" href="" title="Page 1">1</a><span class="page-numbers current" title="Page 2">2</span><a class="page-numbers" href="/page/3" title="Page 3">3</a><a class="page-numbers" href="/page/4" title="Page 4">4</a><a class="next page-numbers" href="/page/3" title="Next page">Next &raquo;</a></div>

    #15244
    Kar-l
    Member

    A funtion on a homepage of a blog

    <?php bb_latest_topics_pages( array( 'before' => '<div class="nav">', 'after' => '</div>' ) ); ?>

    generates errorous output. On page 2 (and followings) it outputs:

    <div class="nav"><a class="prev page-numbers" href="" title="Poprzednia strona">&laquo; Poprzednia</a><a class="page-numbers" href="" title="Page 1">1</a><span class="page-numbers current" title="Page 2">2</span><a class="page-numbers" href="/page/3" title="Page 3">3</a><a class="page-numbers" href="/page/4" title="Page 4">4</a><a class="next page-numbers" href="/page/3" title="Następna strona">Następna &raquo;</a></div>

    The problem I can see is href=””

    Is there any solution to this?

    bbPress used: 1.01

    #15243
    bb-gian
    Member

    Is there a way to dispaly the Author of a topic in the Latest Discussions list and in the Topics list?

    I mean, every other forum got this feature, and I think that viewing the Author of a Topic in the list is very useful and needed for a forum, as you may want to know WHO posted that Topic, without having to click on it to see who’s the first post. Right?

    Still, I didn’t find this feature enabled on any bbPress forum.

    For me it’s just so weird.

    So, is that a way to get the template code?

    Thanks.

    #75829
    citizenkeith
    Participant

    Update: I disabled bbPress Attachments and all the other plugins were able to be activated.

    I’m assuming the bbPress Attachments was being “bad”. Anything else I can test to confirm that?

    #75828
    citizenkeith
    Participant

    Plugins used:

    Allow Images

    Approve User Registration

    bb_benchmark (autoloaded)

    bb_chunk

    BBcode Buttons Toolbar

    BBcode Lite

    bbPress Attachments

    bbPress signatures

    bbPress Smilies

    bbPress Theme Switcher

    bb Topic Views

    BBVideo

    Censor

    Check for Updates

    Hidden Forums (autoloaded)

    Hidden Forums Tag Filter

    Human Test for bbPress

    Members Online

    Move It

    New User Notification Email

    Post Count Plus – Dynamic.Titles & More!

    Quote (Mod)

    Spoiler Tags

    Strike

    Super Search

    Topics Per Page

    Unread Posts

    Wiki Post

    Year Long Cookies – Remember Me (autoloaded)

    I didn’t have these problems when I was running .9, but when I moved to Media Temple from Dreamhost I upgraded to 1.0 RC1. I probably shouldn’t have done the upgrade at the same time.

    #75753
    johnhiler
    Member

    Wow… that’s incredibly aggressive given that 1.0 hasn’t had time to be field tested, and also the state of 1.0 plugins.

    Sam, can 0.9 be restored as an easily available option? It can be played down if you’d like – even something low key like the WordPress release archives would be great:

    https://wordpress.org/download/

    #75752
    _ck_
    Participant

    Ah I see it was even pulled from the download page, which bothers me of course.

    It’s always available via trac too:

    https://trac.bbpress.org/changeset//tags/0.9.0.5?old_path=%2F&format=zip

    or the branch might have a few fixes someday in the future

    https://trac.bbpress.org/changeset//branches/0.9?old_path=%2F&format=zip

    #75737
    _ck_
    Participant

    I actually had it tested in 1.0, if it’s not working in your theme and it’s a custom theme, make sure you have a do_action('topicmeta') somewhere in there.

    Adding avatars makes it much more complicated, I’ll give a shot at the code in a minute.

    clarklab
    Member

    Are new users created in WP left as inactive (no role) until they sign in? We saw a bunch of users marked as inactive, but plenty of users posting just fine.

    When I went into WordPress Integration Settings – User Role Map everything is set as it should be. Clicking ‘Save Changes’ (without actually making any changes) automatically switched all users marked inactive to member.

    We had someone report they were unable to login so I went to check the user’s account and that was when I found his inactive role along with dozens of other users.

    When trying to replicate it myself with new, test registrations any user I can create that shows up inactive is immediately switched to member on the first log in.

    The main reason I ask if because the number of inactive users seemed very high and simply clicking ‘Save Changes’ and having them all switch in unison seems a bit odd.

    #75769

    John,

    I do not have a WordPress install attached to bbpress. The upgrade went smoothly except for one error that said I already had forums. Other than that, everything seemed to work fine except for the registration. For registration, I am using the plugins “approve user registration”, “terms of service”, and “human test”, but I had deactivated all of these prior to upgrade and then again when testing the default theme.

    #15216
    ArnyVee
    Member

    I’d like to create a menu / navigation bar at the top of my forums.

    I want to place it between the header area and the latest discussions area. Which file do I have to edit to do so? And, does anyone know of a menu / navigation bar option out there already?

    #69737
    Josh Leuze
    Member

    Andrew, I just converted a test install of phpBB 3.05 to bbPress 1.0.1 without any problems.

    #75751
    Sam Bauers
    Participant
Viewing 25 results - 9,026 through 9,050 (of 11,598 total)
Skip to toolbar