Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 11,226 through 11,250 (of 11,508 total)
  • Author
    Search Results
  • #51968
    Trent Adams
    Member

    It is pretty simple to just copy the bbPress tables into the WordPress database. If you use a mySQL export script, it will actually create the tables syntax and install it perferctly! It is way easier on many integration plugins (not just this one) when they are in the same database!

    Trent

    #51967
    baptiste
    Member

    ccmve,

    It is – and it will make your life a lot easier. Makes your config simpler too.

    #54013
    chrishajer
    Participant

    Is anyone else having a similar problem? Or, alternatively, does anyone in the know have an idea of how I can troubleshoot this? It’s painful to make a post with the way things are now.

    Still using .73 and using the following plugins:

    allow-images.php

    bb-limit-latest-discussion.php

    bb-memberlist.php

    bbpress_sitemap.php

    notification.php

    onlinelist.php

    Thanks.

    #49493
    altmejd
    Member

    I did that too, then I started to worry that perhaps the .po file i downloaded wasn’t the latest one. It was linked to from a rather old post..

    For now i’ll just stick to the one i downloaded.

    How much have you translated?

    #52434
    spencerp
    Member

    Just to update everyone on this.. I’ve upgraded the forums to the very Latest SVN files for .80alpha, and the latest file changes for the Forum Categories enhancement by SamBauers.. :) ;)

    http://spencerp.net/forums/

    I plan to tweak some more things though, and also release the “Gathering” theme for bbPress then. It’s still on my To-Do list, and it will get done then folks! ;)

    spencerp

    #53980
    Null
    Member

    Hi,

    Thanks for the suggestion. I will look into this and take out the cleaner div and look at the page in IE again. If it’s still not there, then it’s not the div. I’ll post my findings here as soon as I have tested this.

    Thx

    ps. I have no idea if there are any toolbars like FF, sorry.

    #53978
    Null
    Member

    Same problem in IE 7, no underline there either. It only effects IE as far as I know…

    Got it running on my testsite:

    http://www.sourceskins.com/bbpress/

    #53003
    davidbessler
    Member

    Problem: With forum restriction, I use the following code to filter topics with the default views:

    function forum_restriction_list_of_allowed_forums($user) {

    global $forum_restriction_allowed_in_forum,$bb_current_user;

    foreach ($forum_restriction_allowed_in_forum as $forum_number => $forum_memberlist){

    if (ereg(get_user_name($user),$forum_memberlist) || $forum_memberlist ==''){

    $list_of_allowed_forums .= "'".$forum_number."',";

    }

    }

    $list_of_allowed_forums = rtrim($list_of_allowed_forums,",");

    return $list_of_allowed_forums;

    }

    // FILTER TOPICS

    function forum_restriction_get_latest_topics_where( $where ) {

    if (bb_is_user_logged_in()) {

    global $bb_current_user;

    $list_of_allowed_forums = forum_restriction_list_of_allowed_forums($bb_current_user->ID);

    $where .= " AND forum_id IN ($list_of_allowed_forums) ";

    echo "where is set to: $where";

    return $where;

    } else {

    return $where;

    }

    }

    add_filter ( 'get_latest_topics_where', 'forum_restriction_get_latest_topics_where' );

    The problem is this doesn’t work with bb_custom_views used by since-last-visit.php. It seems the plugin changes the $where AFTER forum-restriction has already tried to filter the $where.

    How do I get forum_restriction_get_latest_topic_where to add ” AND forum_id IN ($list_of_allowed_forums) ” to $where AFTER since-last-post sets $where?

    Kapish?

    #51966
    ccmve
    Member

    Is it true that the ‘standard’ thing to do is install WP and BBP in the same database? If so, I’m going to take bbolman’s recommendation and copy my BBP tables into my WP database. Is it safe to copy these directly, or are the some alterations that need to be made first?

    #51965

    lo all, I have the same problem as Staffan, when I use this fine plugin, I get no name name displayed, I have just installed the 0.75 of BBPress, and I do not have any option in my profile to enter a nicename at all, hence why the assigned database entry (‘user_nicename’) doesn’t hold a Nicename 😮

    Well I could enter a Nicename via phpMyAdmin, but that’s surely not the way to work that out, because tbh I am way too lazy, to do that for every future user registering with the forum ;)

    ==edit==

    Nevermind my post above, just sorted it out, it works, IF you install BBP with the database tables from WP in the config.php, but NOT IF you install BBP without these information ;)

    So the nicename from the WP user-table is being used, also means, users have to enter their WP profile to change that, as this is NOT possible via BBP profile

    Thx anyways :D

    ==end edit==

    Anyhow, a pretty nice plugin, keep up the good work Atsutane :)

    #53582

    The only reason the replies argument is there is for CSS: a quick and dirty way of differentiating between topics you’re up to date on and those you’re not (via a:visited { … }).

    We should probably make sure we always 301 redirect to the latest URL.

    Oh, and PS: Posts do have their own URL. This one’s is

    https://bbpress.org/forums/topic/592?replies=6#post-3870

    #53581
    breakaway
    Member

    I just downloaded and installed the latest version and also have this “issue”..

    Is there already a solution for this?

    #51964
    bbolman
    Participant

    I think the easiest thing to do would be to just move over your bbpress install into the same database as your blog. I’m sure somebody here could probably help you modifying that plugin, but I feel like just moving would be much simpler.

    #51963
    ccmve
    Member

    That’s right Trent — I’m using 2 databases. I’ve been looking for a way to modify this plugin to get it look in the bbpress database, but I’m afraid my PHP skills aren’t quite up to it. Do you know of any other workarounds?

    #51962
    Trent Adams
    Member

    I think the plugin is designed to work when you have both wordpress and bbPress in the same database. You are using 2 different databases I would imagine then? If that is the case, then this plugin will not work for you.

    Trent

    #51961
    ccmve
    Member

    I’m getting this error in WP2.1:


    WordPress database error: [Table ‘wordpress.bb_topics’ doesn’t exist]

    SELECT * FROM bb_topics WHERE topic_status = 0 ORDER BY topic_time DESC LIMIT 10

    —-

    The table wordpress.bb_topics doesn’t exist because my bbpress database is named bbpress. So the proper database place to look would be bbpress.bb_topics

    Any way to fix this issue?

    #1328
    linickx
    Participant

    Hi

    Probably me being blind, but I could find a function that returned the post authors website url.

    In my theme I didn’t want the username to be a hyperlink (in post.php), I wanted to add buttons, for profile, website, & PM.

    I wrote one to get my tests working.. but is there an “official” way ?

    function post_author_url() {

    if ( get_user_link( get_post_author_id() ) ) {

    echo get_user_link( get_post_author_id() ) ;

    } else {

    bb_get_option('uri');

    }

    }

    #53001
    Trent Adams
    Member

    I will test this out for sure and get back to you later on when I get a chance! Looks good so far! Just need to test out the new features!

    Trent

    #53000

    Download the updated beta version here:

    https://plugins-dev.bbpress.org/browser/posts-since-last-visit/trunk/since-last-visit.php?format=raw

    Demo here:

    http://la-school.com/bbpress/ (Test/test)

    It requires Onlinelist 1.4 to work!!

    As requested in another thread here, If you want to indicate new posts with an icon next to the topic do it this way:

    <?php if ($topic->topic_time > view_since_last_visit_user()) : ?>

    DISPLAY IF NEW

    <?php else : ?>

    DISPLAY IF NOT NEW

    <?php endif; ?>

    add this in front of you topic title.

    At the moment the topic still stay “new” even if you’ve already seen it, till the next visit. Gonna fix this in next version.

    Any Feedback?

    #53946

    In reply to: redirection error

    chrishajer
    Participant

    DonHarry – what was the debug information? Maybe someone else can help? I see your server is Apache 2.2.3 and the PHP version is 5.2.0. I don’t think any of the earlier solutions will apply, especially if you are using the latest 0.75 version.

    Maybe you can post your config.php with the tasty portions replaced with xxx (be careful not to change any quotations, slashes or semicolons). Maybe you have a problem there.

    #53918

    In reply to: New Posts

    mrpapasworld
    Member

    cool… will stand by… havent dug into writing plugins for bbpress yet… happy to help test if for ya too…

    #53943

    In reply to: redirection error

    donharry
    Member

    I just installed today, so it should be the latest version. but i’ll try what they r saying in the other post.

    #53942

    In reply to: redirection error

    chrishajer
    Participant

    What version is installed? This problem has come up a couple times before, and I thought it was fixed in the latest .75 version, at least.

    If you’re not using .75, I would start there. Here are some forum posts that dealt with the redirect issue before .75 came out:

    https://bbpress.org/forums/topic/531?replies=20#post-3050

    #53140
    Trent Adams
    Member

    I have a fresh install of 0.75 and the latest TRAC version and I can’t replicate this. Anyone else having this problem?

    Trent

    #53056
    drtech
    Participant

    I have posted this in two topics, forum-restriction and private-forums.

    RSS will display the restricted information. The latest posts.

Viewing 25 results - 11,226 through 11,250 (of 11,508 total)
Skip to toolbar