Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 9,351 through 9,375 (of 11,581 total)
  • Author
    Search Results
  • #72988
    bikemccall
    Member

    @Trent. Thanks for the reply. Hmm, I hadn’t thought about it being an issue with the theme. I didn’t give gravatars a try on the default theme, so I can’t confirm. And not easy to test with the site in the wild now. I think next steps is for me to research the theme and see where that takes me. BTW, is “SVN” software version number? Thanks!

    #72987
    Trent Adams
    Member

    I can’t replicate this with the latest SVN and the default theme as gravatars show up. I see what you mean though. Does it work with the default theme for you? That theme you are using might not support gravatars?

    #72894
    _ck_
    Participant

    I have now fixed the Approve Registration plugin for bbPress 1.0a

    as well as another bug it had with resetting passwords upon approval.

    (it might also now work again with bbPress 0.9.0.4, untested)

    http://bbshowcase.org/plugins/approve-user-registration_ck_mod.zip

    #5161
    bikemccall
    Member

    Hi,

    I’m about ready to launch a BBpress forum version 1.0 alpha 6, that’s integrated with WP 2.7. Everything is looking good, but I’m not able to get Avatars (specifically Gravatars) to display on the BBPress side. They’re showing up perfectly on the WP 2.7 portion of the site.

    I’ve tested a bunch of different combinations in the BBPress admin just to make sure that a bit wasn’t flipped the wrong way. I’ve tried all different levels of Maximum Ratings, Show Gravatars (checked/unchecked) and even played with the default images. No luck.

    Anyone have any suggestions? Is this a known issue with V1.a.6 by chance?

    Thanks.

    #71640
    Johanhorak
    Member

    Hi I am using wp 2.7.0 trunk (2.7.1) bbpress Version 1.0-alpha-6 Buddypress Core: 1.0-RC1 And I have the same problem. To try and resolve the issues I will show you the cookies for buddypress/wp and bbpress but instead of sharing the cookie I will call it “cookiestring”:

    At bp/wp I have:

    2x worpdress_logged_in_cookiestring at /

    wordpress_cookiestring at /forums/bb-plugins

    wordpress_cookie string at /forums/my-plugins

    wordpress_cookiestring at /forums/bb-admin

    wordpress_cookiestring at /wp-admin

    wordpress_cookiestring at /wp-content/plugins

    wordpress_test_cookie at /

    PHPSESSID at /

    _utma at /

    _utmb at /

    _utmc at /

    _utmz at /

    at bbpress the I have the following cookies

    wordpress_cookiestring at /forums/bb-plugins

    wordpress_cookiestring at /forums/my-plugins

    wordpress_cookiestring at /forums/bb-admin

    wordpress_cookiestring at /wp-admin

    wordpress_cookie string at /wp-content/plugins

    As you can see I have the same cookie string but I have a few extra cookies at buddypress.

    Thanks for sharing your experience with me.

    Johan

    _ck_
    Participant

    Merlin that code looks vaguely familiar ;-)

    deadlyhifi
    Participant

    …it does keep the paging intact but counts for all the forums (fora?), even the excluded one(s).

    To get round this requires amending the function bb_latest_topics_pages() in functions.bb-template.php.

    $bb_latest_topics_count = $bbdb->get_var('SELECT COUNT('topic_id') FROM '' . $bbdb->topics . '' WHERE 'topic_open' = 1 AND 'topic_status' = 0 AND 'topic_sticky' != 2 AND 'forum_id' != 3;');
    // AND 'forum_id' != 3 - filters out forum 3 on front page paging count.

    #65710

    In reply to: Intergrating the theme

    zeronix
    Member

    Is there a wayy to get this Tool you talked about in your Tutorial?

    I´d also love to integrate my WP theme to my forum but the link you posted is down :(

    PS:

    I run WPmu and the latest bbPress release

    I hope this tool will work with it (if you could send me).

    Best regards, Sebastian

    #72924
    Tecca
    Participant

    From ctsttom:

    Can we see your front-page.php code as its possibly part of the html as mine uses a different template and it only has one dash.

    <?php bb_get_header(); ?>

    <?php if ( $forums ) : ?>

    <div id="contentleft">

    <div id="login">
    <?php login_form(); ?>
    </div>

    <h2><?php _e('Forums'); ?></h2>
    <table id="forumlist">

    <tr>
    <th><?php _e('Forum Categories'); ?></th>
    <th><?php _e('Topics'); ?></th>
    <th><?php _e('Posts'); ?></th>
    </tr>

    <?php foreach ( $forums as $forum ) : ?>
    <tr<?php alt_class('forum'); ?>>
    <td><a href="<?php forum_link(); ?>"><?php forum_name(); ?></a> — <small><?php forum_description(' '); ?></small></td>
    <td class="num"><?php forum_topics(); ?></td>
    <td class="num"><?php forum_posts(); ?></td>
    </tr>
    <?php endforeach; ?>
    </table>

    <?php if ( $bb_current_user->ID ) : ?>

    <?php endif; else : // $forums ?>

    <div id="contentleft">

    <h3 class="bbcrumb"><a href="<?php bb_option('uri'); ?>"><?php bb_option('name'); ?></a></h3>

    <?php post_form(); ?>

    <?php endif; ?></div>

    <div id="discussions">

    <?php if ( $topics || $super_stickies ) : ?>

    <h2><?php _e('Latest Discussions'); ?></h2>

    <table id="latest">
    <tr>
    <th><?php _e('Topic'); ?> — <?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 _e('Sticky:'); ?> <big><a href="<?php topic_link(); ?>"><?php topic_title(); ?></a></big></td>
    <td class="num"><?php topic_posts(); ?></td>
    <td class="num"><?php topic_last_poster(); ?></td>
    <td class="num"><small><?php topic_time(); ?></small></td>
    </tr>
    <?php endforeach; endif; ?>

    <?php if ( $topics ) : foreach ( $topics as $topic ) : ?>
    <tr<?php topic_class(); ?>>
    <td><a href="<?php topic_link(); ?>"><?php topic_title(); ?></a></td>
    <td class="num"><?php topic_posts(); ?></td>
    <td class="num"><?php topic_last_poster(); ?></td>
    <td class="num"><small><?php topic_time(); ?></small></td>
    </tr>
    <?php endforeach; endif; ?>
    </table>
    <?php endif; ?>

    <div id="search">
    <?php search_form( $q ); ?>
    </div>

    <br />
    <img src="http://teccahigh.com/wp-content/themes/revolution/images/divide.png"><br />
    <h2>Members Online</h2>
    <small>Online now:
    <?php do_action('members_online_now',''); ?></small><br />
    <small>Online today:
    <?php do_action('members_online_today',''); ?></small>

    </div>

    <?php include 'sidebar.php'; ?>

    <div style="clear:both;"></div>

    <?php bb_get_footer(); ?>

    #72888

    In reply to: I NEED HELP!

    chrishajer
    Participant

    How about taking the latest topic RSS feed and using an RSS widget or plugin in WordPress to display those topics?

    I think I saw another topic about the avatars so I will look for that rather than address this here.

    0.9.0.4 is recommended for live sites.

    #72918
    agitainment
    Member

    Thanks, _ck_. I appreciate the feedback.

    By the way, I’m running several of your plugins, including Human Test, bbCode, Subscribe to Topic and more.

    For anyone wanting to extend your bbPress site, I suggest looking first at _ck_’s plugins under the Extend tab. Really great stuff.

    mypop
    Member

    I’m planning (/ trying !!**!!) to run WPMU branch 2.7.1r1715, bbPress 1.0-Alpha-6, latest BuddyPress, r1324.

    My Hosting provider won’t allow RPC calls on the same server, so I have to mount bbPress on a different domain and server.

    Will it work?

    Assuming, it will:

    Is it better to put bbPress in the root, or in a folder (usually root/forums )?

    What (apart from the cookie hash) are the issues that I’m going to face?

    How would I configure the cookies?

    #72903
    mypop
    Member

    Usually if you delete the bb-config.php file, and then go to you main forum directory, it will go through the install process again and create you a new admin login without deleting the existing tables.

    If you were using integration and hadn’t set up the correct user as keymaster, and your keymaster still exists, it is likely that you are looking at the wrong user tables. (wp_user vs bb_user)

    If you are trying to integrate with buddypress / wpmu, then deleting the bb-config.php

    and following the https://trac.buddypress.org/browser/trunk/bp-forums/installation-readme.txt

    file will get you up and running with user sharing.

    To do the integration you MUST be running the latest WPMU 2.7.1 branahc and BuddyPress trunk and NOTHING more that 1.0 Alpha 6 of bbPress – see here: https://buddypress.org/forums/topic.php?id=471

    After that, you’ve got the usual cookie integration to do if you want to, see here:

    http://umwblogs.org/wiki/index.php/Integrating_WPMu%2C_BuddyPress%2C_and_bbPress

    Having been round this loop many times, I know how frustrating it can be.

    Hope that helps.

    mypop
    Member

    I have a thread going on over at the BuddyPress forums, ( http://buddypress.org/forums/topic.php?id=2027&replies=14#post-10855 ) I’m posting the summary here in case anyone can help.

    “I’m running latest WPMU branch 2.7.1r1715, bbPress 1.0-Alpha-6, latest BuddyPress, r1324

    I an on a shared hosting service with HeartInternet.co.uk

    WPMU works fine on its own, bbPress works fine on its own, BuddyPress works fine, however:

    When I update groups to “Enable discussion forum” the forum isn’t created.

    Users are shared fine, cookies shared, even admin login to bbPress works properly.”

    Having gone through everything (many times…), I ran the xml-rpc test scripts and get the following error:

    -32300 >> transport error – could not open socket: 111 Connection refused

    Has anyone got any ideas how to fix this?

    Thx.

    #72912

    Ipstenu, thanks for your help.

    Looks like the nonce field is very important to prevent spam posting.

    Form submitting doens’t work if you specify a wrong nonce. Take a look at my searchings:

    post_form’s _wponce, what is it?

    http://phpdoc.ftwr.co.uk/bbpress/bbPress/_bb-includes—functions.bb-pluggable.php.html

    http://svn.automattic.com/bbpress/trunk/bb-includes/functions.bb-pluggable.php

    You can create a nonce key with this funcion:

    bb_create_nonce();

    I will continue with the searching and testings.

    #5139
    johanh
    Member

    Hi I had a username and password that was created when I installed bbpress. For some or other reason this username/password is not accepted any more.

    This is new install using latest alpha bbpress because I wanted to integrate it with buddypress.

    I have a created a few forum topics but I can start all over.

    The only solution I have is to delete the install and the tables and start all over again.

    Can you please suggest how to proceed?

    Thanks

    Johan Horak

    #5138
    Johanhorak
    Member

    Hi I had a username and password that was created when I installed bbpress. For some or other reason this username/password is not accepted any more.

    This is new install using latest alpha bbpress because I wanted to integrate it with buddypress.

    I have a created a few forum topics but I can start all over.

    The only solution I have is to delete the install and the tables and start all over again.

    Can you please suggest how to proceed?

    #5137
    Johanhorak
    Member

    Hi I had a username and password that was created when I installed bbpress. For some or other reason this username/password is not accepted any more.

    This is new install using latest alpha bbpress because I wanted to integrate it with buddypress.

    I have a created a few forum topics but I can start all over.

    The only solution I have is to delete the install and the tables and start all over again.

    Can you please suggest how to proceed?

    #72880
    chrishajer
    Participant

    1. To add anything to the login page, just edit the login.php or login-form.php in your template folder. Since the login form is just a tiny space, you might just have a small text link there to a full disclaimer file.

    2. Yes, with the 0.9.0.4 version and the latest WordPress (well, 2.7 anyway), you can use one of these two solutions:

    http://superann.com/2009/02/26/wordpress-26-27-bbpress-09-cookie-integration-plugin/

    https://bbpress.org/plugins/topic/freshly-baked-cookies/

    #72873

    In reply to: New Alpha Version

    chrishajer
    Participant

    It’s not advisable to use on a live site, and I think avatars are built in to 1.0. Try a test installation and see how it works for you.

    #72853
    demonicrock
    Member

    hmmm.. that might be the problem then.. I am using an administrator ID, but someone else orig set it up and has the original admin (keymaster) ID.. Thought all permissions were the same… Is there a way to make additional ID’s with same permissions as the orig admin (keymaster) ID?

    I have the latest versions of both WP and BBpress..

    thx for the reply

    #72791
    swaymedia
    Member

    @adeboy

    where would you put the code:

    require_once('../../bb-load.php');
    $topics = get_latest_topics( );

    edit: @kevinjohn: i wont read all of that but “thumbs up”

    #72789
    adeboy
    Member

    @chrishajer – Its not quite ready for primetime but you just make a very basic page with the bb-load.php include and then you can get the latest topics/comments and create some links. You need some simple css in the page to match your site styling for the links and target the top frame in the links

    require_once('../../bb-load.php');
    $topics = get_latest_topics( );

    Your homepage might have adverts, widgets, maps etc which will often load in an iframe, as well as images, so the latest topics appear as part of the page build up.

    One day i might get round to proper integration but until then, it works fine

    @swaymedia – grow up

    #72785
    swaymedia
    Member

    @Ipstenu

    As I said, just becuase you do not want deep integration it doesn’t mean the majority won’t. It is going over the top to call it a “Silver Bullet” just becuase it might have deep intergration.

    All I want to do is use the BBPress loop to add the latest topics on the index.php page of WP. … Getting told “oh well theres a plugin for that, for your sidebar” is probably the stinkiest response any one can give. People want to customize things, thats what BBPress is about, we dont want rigid fixed plugins. And not to mention really really lame. Deep intergration is the “right tool for the right job” for the majority of people using BBPress… except it wont be there.

    @CK

    both points are too weak to stop deep intergration and are probably really insufficient to fight your side of the argument. Dedicated servers will always be used for a large community base that has enough power to crush a shared server.. which is not that likely anyway.

    #71043
    andrecassal
    Member

    Hey Guys,

    I just installed bbPress with integration with WP, everything went well even the login integration.

    But now I’m getting ‘Page not found’ for any page I try to access in the Forum.

    I’ve installed the latest alpha version Version 1.0-alpha-6.

    http://www.ceneffi.com.br/forum (that’s should be the forum)

    is someone facing the same problem?

Viewing 25 results - 9,351 through 9,375 (of 11,581 total)
Skip to toolbar