Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 9,401 through 9,425 (of 11,598 total)
  • Author
    Search Results
  • #72686
    danbbpress
    Participant

    Thanks. There was apparently a problem with the server as you suggested. It’s working now.

    deadlyhifi
    Participant

    Excellent, thanks for posting this. Just tried it on latest ‘bleeding edge’ release and it keeps the paging intact.

    #72722

    In reply to: What is what?

    sumit1988
    Member

    >WP is 2.7.1 and bbPress is 0.9.0.4. Both are the latest versions.

    partly – bbPress has the 1.0 alpha (unstable!). And you should integrate the 1.0 with wp 2.7

    I think there is some plugin to integrate 0.9 with wp 2.7 but still… read some topics about the compatible versions in this forum.

    In general:

    WP < 2.7 & BBpress < 1.0: yes

    WP >= 2.7 & BBpress < 1.0: no

    WP < 2.7 & BBpress >=1.0: no

    WP >= 2.7 & BBpress >= 1.0: yes

    but remember: the 1.0 alpha is not recommended to use on live sites.

    (sorry if my english isn`t correct, i hope you get what i want to say)

    #72720

    In reply to: What is what?

    gm10gm10
    Member

    >Sounds like you’re integrate incompatible versions. What versions of bbPress and WordPress are you trying to install?

    WP is 2.7.1 and bbPress is 0.9.0.4. Both are the latest versions.

    #72619
    Null
    Member

    Update:

    Tested some stuff. I have this now:

    function bbport_location() {
    if (substr($_SERVER["REQUEST_URI"],strrpos($_SERVER["REQUEST_URI"],"/")+1) == "view.php?view=port"):
    return "port-page";
    endif;
    }

    add_filter( 'get_bb_location', 'bbport_location' );

    The problem is that it doesn’t return port-page. If I echo get_bb_location tis will still show: view-page instead of port-page. So why isn”t it updated? Why isn’t it returned?

    #72659

    In reply to: Tag filtering plugin

    _ck_
    Participant

    I just realized I should also point out that my Related Topics plugin will also give the greatest weight to other topics with the most tags to the one you are on. It essentially does a multi-tag search internally.

    I don’t know what would be a good user interface to pick multiple tags but the query and resulting view are fairly straightforward to code.

    #72685
    _ck_
    Participant

    Hmm, that’s actually some helpful feedback adeboy.

    I might not be clearing the current session properly.

    #72684
    adeboy
    Member

    I just had a similar event. Using IE & FF that i had previously logged in to bbpress/wordpress and then logged out, i couldn’t get the registration form to work. But when i close the browser and reopen then the form works. This is with the alpha bbpress and 2.7 WP

    Not sure if this is really a problem, as it stops someone repeatedly registering in the same session, but worth knowing. Thanks

    merlin214365
    Member

    For those that are interested I found this.

    Just edit it to exclude whatever forum numbers you want and add it to the plug-ins folder.

    <?php

    /*

    Plugin Name: exclude

    */

    function filter_front_page_topics($where){

    $exclude_forums=array (“13″,”19”); // enable this to manually specify specific forums by id #

    // $forums = get_forums(); foreach ($forums as $forum) {if ($forum->forum_parent) {$exclude_forums[]=$forum->forum_id;}} // exclude ALL sub-forums

    if ( is_front() ) {foreach($exclude_forums as $forum) { $where.=” AND forum_id != “.$forum.” “; }}

    return $where;

    }

    add_filter( ‘get_latest_topics_where’, ‘filter_front_page_topics’);

    add_filter( ‘get_latest_posts_where’, ‘filter_front_page_topics’);

    ?>

    #72708

    In reply to: Spam Registrations

    johnhiler
    Member

    Two things:

    * Have you upgraded to the latest version of Human Test? It has new protections over earlier versions.

    * There’s an alpha version of a plugin that identifies spammers who have never posted, and lets you delete them.

    https://bbpress.org/plugins/topic/mass-delete-users/

    Good luck!

    #5085
    chrisgoat
    Member

    Not sure if this has been brought up before but I am getting a huge amount of .ru and .gmail registrations,these are not being activated but are loading up my database.

    Not allot of them, on average 20 to 30 every 5 or 6 days.

    I have Akismet and Human Test for bbPress enabled, It is really not a big deal just annoying having to go in and delete them.

    Anyone have any ideal how I can fight this.

    Thanks

    Chris

    #65228
    319
    Participant

    Hi, I just installed WP MU 2.7 and am trying to merge it with the latest bbpress install but have some major confusion with the config file secret keys. In new 2.7+ versions of WordPress and WPMU there is no mention of SECRET_KEY or SECRET_SALT, the config instead lists the following 7 keys:

    define(‘AUTH_KEY’, ‘XXXXXXXXXXXXXXXXXXXXXX’);

    define(‘SECURE_AUTH_KEY’, ‘XXXXXXXXXXXXXXXXXXXXXX’);

    define(‘LOGGED_IN_KEY’, ‘XXXXXXXXXXXXXXXXXXXXXX’);

    define(‘NONCE_KEY’, ‘XXXXXXXXXXXXXXXXXXXXXX’);

    define(‘AUTH_SALT’, ‘XXXXXXXXXXXXXXXXXXXXXX’);

    define(‘LOGGED_IN_SALT’, ‘XXXXXXXXXXXXXXXXXXXXXX’);

    define(‘SECURE_AUTH_SALT’, ‘XXXXXXXXXXXXXXXXXXXXXX’);

    While the BBPRESS config only lists one key:

    define(‘BB_SECRET_KEY’, ‘XXXXXXXXXXXXXXXXXXXXXX’);

    Which key in WPMU 2.7+ is equivalent to BB_SECRET_KEY?

    Or, do i now need to define all 7 of the WordPress secret keys in bbpress as well? Eg. BB_AUTH_KEY, BB_SECURE_AUTH_KEY, BB_LOGGED_IN_KEY, etc…

    Any help clearing up this config confusion would be great. Thanks!

    #71393
    merlin214365
    Member

    Sorry im still confused where did you insert

    $topics = get_latest_topics(‘forum=-3’);

    in functions.bb-topics.php

    or front-page.php

    #62253
    swaymedia
    Member

    Im using the latest alpha version, My wordpress is on root, and my forum is on a folder called /community.

    I put this on wp-config.php :-

    require_once('/community/bb-load.php');

    im getting this error:-

    Warning: require_once(/community/bb-load.php) [function.require-once]: failed to open stream: No such file or directory in /home/eraxeco1/public_html/massbase.com/wp-config.php on line 2

    Fatal error: require_once() [function.require]: Failed opening required '/community/bb-load.php' (include_path='.:/usr/lib/php') in /home/eraxeco1/public_html/massbase.com/wp-config.php on line 2

    #72683
    _ck_
    Participant

    Human Test requires sessions to be working correctly on your server.

    It’s possible sessions have been broken somehow.

    If they upgraded PHP incorrectly that might happen among other reasons.

    #5074
    spinus
    Member

    First: Thanks to all developers and coders for coding and working on bbpress and specially to ck for great plugins.

    So, I have installed bbpress 0.9.0.2 installed (http://spinus.info/forum) and Topic Icons plugin 0.0.5

    Trouble: sticky topics are displayed only on front page in “latest discussions” field. If I try to open a sub-forum, where sticky topic is situated in separate window, a topic is not visible.

    So, there is a sticky topic: http://spinus.info/forum/topic.php?id=102&replies=1

    You can see it in a latest discussions field as sticky.

    But if you would open its parent forum http://spinus.info/forum/forum.php?id=30

    Sticky topic is not shown :( what’s a matter? Please, HELP!!!

    #5073
    danbbpress
    Participant

    I just did a test registration on my forums and the Human test is no longer working (although I enter the wright answer I keep getting the “Humans only please” message). It used to work fine until 2 days ago. Any advice appreciated.

    Thanks.

    Dan

    #72590
    _ck_
    Participant

    Just install my bbpress theme switcher plugin, disable the dropdown.

    Then replace function bb_ts_get_theme() {

    with something like this (untested, will need some editing)

    function bb_ts_get_theme() {
    $theme="kakumei"; // default fallback
    $domain=strtolower($_SERVER['HTTP_HOST']);
    if (strpos($domain,"first-domain.com")!==false) {$theme="1st-theme";}
    if (strpos($domain,"second-domain.com")!==false) {$theme="2nd-theme";}
    return $theme;
    }

    #5071
    DTI
    Member

    I have two problems after I have installed bbpress 0.90.4 .

    1, when I registered new user in server for testing, it can’t sent a email, so I can’t get a password.

    2, the forum only run in my server computer, user’s computer got 404 error after registered and click the button. Why doesn’t run in user computer?

    How to fix these problems?

    #70339
    adeboy
    Member

    Well i didn’t get the 0.9 WP integration to work so couldn’t stop myself using the alpha with the help of the screencast and it seems to work fine with just the Akismet and Human Test plugins.

    There was one bug i found when deleting the only topic in a forum but that has been resolved in the trunk so i was able to copy that fix.

    #72199
    citizenkeith
    Participant

    That seems to work. We’re still testing it out but I think we’re in the clear.

    That said, I also added Anne’s notification hack, and we’re not getting any notifications.

    merlin214365
    Member

    Is there a way remove a specific forum category from the latest discussion list?

    I have tried editing in functions.bb-topics.php

    From

    function get_latest_topics( $args = null ) {

    $defaults = array( ‘forum’ => false, ‘page’ => 1, ‘exclude’ => false, ‘number’ => false );

    to

    function get_latest_topics( $args = null ) {

    $defaults = array( ‘forum’ => false, ‘page’ => 1, ‘exclude’ => 13, ‘number’ => false );

    13 being the category number I wish to remove. This does work in removing forum 13 from latest discussion unfortunately it also removes forum 13 completely lol

    #72198
    _ck_
    Participant

    It’s possible because I was testing it on 1.0 that 1.0 automatically escapes the mysql values passed and that 0.9 does not. I can’t remember.

    Try adding this before the $bbdb->query

    $pmtitle=mysql_real_escape_string($pmtitle);
    $message=mysql_real_escape_string($message);

    and see if it helps or if it just add slashes to your text instead and breaks it.

    It may also be a quote problem but I thought the bbpress pre/post text filters should encode quote or any other problematic characters.

    _ck_
    Participant

    I guess it would be a good alternative to akismet (or even in addition to).

    Your code can be cleaned up and condensed considerably.

    It also could benefit from some security checks on the $_POST data being injected into the url.

    Here is an untested, condensed version with some mild security checks on the $_POST

    http://pastebin.com/f7a50d82a

    (there is also an alternative to curl in there for the 50% that don’t have it on their server)

    I took out some of the extended manipulation of the returned data that you didn’t need.

    #72037

    In reply to: WordPress 2.7 options

    antonio_pt
    Member

    Thanks. I’ll give it a try on a test installation.

    did it work?

Viewing 25 results - 9,401 through 9,425 (of 11,598 total)
Skip to toolbar