Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 7,801 through 7,825 (of 11,591 total)
  • Author
    Search Results
  • #92827
    chrishajer
    Participant

    It’s because your host is using PHP 5.3. Those deprecated messages can be hidden without affecting the functionality of your site at all.

    Tons of Depreciated Errors

    This is fixed in the latest trunk release of bbPress, but turning off the display of deprecated messages will resolve the problem as well.

    #34591

    Topic: Sub Forums

    in forum Installation
    aspen102
    Member

    Example:

    Let’s say front-page.php lists 3 categories

    Fruits

    Veggies

    Meats

    If you were to click on Fruits; I’d like the next page to show the subforums of that parent excluding veggies, & meats forums. Any comments appreciated.

    Basically, I want categories with sub-forums but in a format/structure that you would find in phpbb where subforums are cleanly kept on the next page. Why? Because showing everything in one location can get a bit messy. Especially with subforums.

    I have searched through the bbpress forum for this and was able to get the following to work related to the front-page.php portion. Now I just need to get the 2nd page to show the children of the category. Currently it isn’t doing that.

    *****front-page.php which works in only displaying the categories****************

    <?php foreach( $forums as $forum ) : if( !$forum->forum_parent ) { ?>

    <tr<?php alt_class(‘forum’); ?>>

    <td>“><?php forum_name(); ?> <small><?php forum_description(); ?></small></td>

    <td class=”num”><?php forum_topics(); ?></td>

    <td class=”num”><?php forum_posts(); ?></td>

    </tr>

    <?php } endforeach; ?>


    Now I would like the child accounts to show up in forum.php

    Any suggestions? Or where I could look? Once you click on the parent forum it just takes you to that category forum.php page, with no children. i need the children to show up but only for that parent.

    *****forum.php which I need to show the children*********************

    <?php bb_get_header(); ?>

    <?php if ( is_bb_profile() ) profile_menu(); ?>

    <?php login_form(); ?>

    <div id=”main”>

    <div id=”forums”>

    <h3 class=”bbcrumb”>“><?php bb_option(‘name’); ?> » <?php forum_name(); ?></h3>

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

    <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 ( $stickies ) : foreach ( $stickies as $topic ) : ?>

    <tr<?php topic_class(); ?>>

    <td><?php _e(‘Sticky:’); ?> <big>“><?php topic_title(); ?></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>“><?php topic_title(); ?></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>

    <p>“><?php _e(‘RSS feed for this forum’); ?></p>

    <div class=”nav”>

    <?php forum_pages(); ?>

    </div>

    <?php endif; ?>

    <?php post_form(); ?>

    </div>

    </div>

    <?php bb_get_footer(); ?>

    </div>

    ******************************************************************************

    Thank You —

    #92786

    HI Pastor Bob,

    writing on an phone, so can’t write out full code, but you also want to test for “post_position=1” to check if it’s the first post.

    #35068

    Hello.

    I want to start by thanking the following developers: _ck_, Nightgunner5, Yu-Jie Lin, Olaf Lederer and michelwppi; for their time and effort in bringing about some very useful plugins.

    I have a few comments of my own, and in some cases, very important questions as well.

    Even though I have very few genuine users on my forum – four to be more precise, I have decided to (try to) offer as good of a service as I can. I have had a couple of spam posts (5.88%), which Akismet handled impeccably so far.

    Also, in the last few days I have had about 20-25 new users that only registered, and considering some of their email addresses, have no other intention but to spam. In this case, another useful plugin came to my rescue, Enhanced Registration, which appears to be doing the perfect job. In conjunction with this plugin, I am using New User Notification Email, so I am always notified whenever a new user registers and if in X hours he/she doesn’t login, then their username is removed and my database kept clean. A very good combination in my opinion.

    Further on, a common plugin for moderation that I am also using is bbPress Moderation Suite, and I am sure that it would prove its worth when people will be more interested in what I have to say on my forum. Anyway, I think it’s missing a very useful feature, provided (luckily enough) by Moderate new members’ first posts. Now, I have no doubt that this last plugin is working fine with some people, but not with me. What I wanted was to be notified once at an email address of my own choice (other than admin_email), whenever a new member made his first post (or after two). After that, he/she would post unhindered.

    So, I (think that I) have identified the section in the plugin that needs attention, where the post count is made:

    if(!is_moderator($bb_current_user->ID)) {
    $sql = "
    SELECT COUNT(*)
    FROM $bbdb->posts
    WHERE poster_id = $bb_current_user->ID AND post_status = 0
    ";
    $userpostcount = intval($bbdb->get_var($sql));
    }

    And where they are marked for moderation (as spam):

    if($userpostcount <= POST_NUMBER_MODERATION) {
    $sql2 = "
    UPDATE $bbdb->posts
    SET post_status = 2
    WHERE poster_id = $bb_current_user->ID
    ";
    $markedasspam = $bbdb->get_results($sql2);
    }

    Now, I wouldn’t know what or where to edit in order to have it do what I want, and that is why I would appreciate it if someone who does know it would assist me. No matter how many times my dummy user called “testing” makes a post, I always get a notification, at the default email address.

    I only want to be notified of the first post because I am using xili New Post Notification (xnpn) for the rest of them, at a different email address. What I like about this plugin is that it gives me the possibility to assign an email address of my own choice. It’s true that I would get an email twice when an user would post for the first time (2 plugins), but I can live with that, since they are at different email addresses (the default and my choice).

    Thank you,

    Bob

    #92766
    ph23man
    Member

    Yep, that’s probably it. Thanks for pointing this out! At least now I know why it’s happening.

    That IS a pretty serious bug, but there is no public, stable release of bbpress that contains this fix. Latest version is 1.02 and it’s affected by this bug.

    How safe is it to run the trunk version on a production site with existing 1.x plugins? You guys seem very close to having a stable release – milestone 1.03 has no open tickets and 1.1 only has 3.

    #92765
    chrishajer
    Participant

    There was a serious bug in earlier version of bbPress:

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

    If you delete a topic without any posts, you UNDELETE all posts, even posts on other topics.

    Maybe a moderator did that, deleted a topic without posts? I think it’s probably something related to moderation.

    It’s fixed in the latest trunk release.

    #35058
    ph23man
    Member

    I’ve had this very odd issue suddenly crop up. All deleted posts on my forum have automatically become undeleted. Basically the post_status field in the bb_posts table is getting reset to 0 for all posts.

    I’m running bbpress 1.02 that’s deep integrated with WP Multisite 3.0.1 (with Buddpress 1.2.5.2). It’s deep integrated, but I run bbpress by itself, NOT as a component of Buddypress (in the groups component). The site’s been running for a year and I’ve never experienced this issue until now.

    Is there any code in bbpress that could cause something like this? Reseting all posts?

    My web host recently upgraded PHP from 5.2.13 to 5.2.14 very recently, could there be some kind of incompatibility?

    Another side-effect of this is that it throws off paging on topics and cuts off newer posts in the topic. The number of pages shown for each post stays the same even though deleted posts are visible again so this essentially pushes newer posts back. Doing a recount doesn’t fix this.

    I’m having a hard time finding the cause although I somehow reproduced the problem. I had thought a moderator had restored deleted posts so I was going back deleting some posts that had been undeleted. When I was all done, I did a full recount. A few minutes later I found that all the posts that I had just re-deleted were restored again! I tried deleting some more posts and doing some recounts haven’t been able to reproduce the problem again.

    I’m running the following plugins:

    – Ajaxed Quote 1.2

    – Allow Images 0.8

    – BBcode Lite 1.0.3

    – bbPress Moderation Suite 0.1-rc2

    – bbPress signatures 0.2.0

    – bbPress Smilies 0.0.8

    – bb Topic Views 1.6.4

    – BBVideo 0.24

    – BuddyBar in bbPress 1.0.4

    – Forum Last Poster 0.0.5

    – Hidden Forums 0.0.9

    – Post Count Plus 1.1.11

    I’ve been running these plugins for a long time. The most recent one was bbpress Moderation Suite but I tested it pretty extensively on a development site (mirror) without issue.

    Any help is greatly appreciated!

    #15384
    mikkelsen
    Member

    I spotted this blogpost from WPMU.org in my RSS-feed today.

    “bbPress 1.2 (the plugin) is said to be stable enough to start testing as soon as September 15 and the full release will most likely coincide with that of BuddyPress 1.3.”

    http://wpmu.org/bbpress-forums-will-be-removed-from-buddypress-download-packgage/

    Is there any chance that will happen?

    #92602
    vshal
    Member

    hi,

    here is the url : http://forums.bombayclubcanada.com/

    When i login as a test user and post anything it errors out on me, I can give you login information if you like or you can register as a user to test.

    Thanks a ton once again for your help.

    #92563

    It’s really unlikely a single user could have done something.

    Excuse the obvious nature of the questions, and i aprecaite that you’ll have answered them in teh text above, but this isn’t a normal everyday bug, so we’re starting from scratch:

    1) What version of WordPress?

    2) What version of bbPress?

    3) Are they integrated (share login cookies)?

    4) Are they “deep integrated” (can call functions in the other program)?

    5) Do you have the latest version of akismet on both WP and bbP?

    6) Can you log into WordPress?

    7) Can your other users log into WordPress?

    8) Can people register with WordPress?

    9) Can people register with bbPress?

    10) Can people log into bbPress?

    11) Have to tried disabling all plugins and trying again?

    12) If so, have to tried switching to the default theme?

    13) Are you using a premium (paid for) theme?

    14) Are you using buddyPress?

    15) What has changed since Friday?

    16) What WordPress plugins are you using?

    17) Are you using WP MultiSite?

    18) Did you know that “registered users only” plugin has been marked by others as not working for WP3.0.1 on the plugin repository?

    I know it’s a load of info, sorry, but it will help.

    Very few, if any, bbPress plugins change the “role” for bbPress users, simply due to it’s rather convoluted nature.

    Hopefully, we’ll get this fixed :)

    #64693
    RedBull
    Member

    Hello juboe,

    _ck_ has developed an “instant password” plugin. The link is: https://bbpress.org/plugins/topic/instant-password/installation/

    As he suggests you may want to install the “Human Test” plugin: https://bbpress.org/plugins/topic/human-test/

    as the instant password will automatically log you in upon registering.

    Create a folder titled my-plugins. Upload the plugin to the folder. Go to your bbpress admin interface and activate. You will now see a password field in your registration page.

    Hope this helps!

    DDT
    Member

    Hi all,

    i am following this: http://wpbbpthemes.org/integration/

    with WP 3.0.1 (multi user) and the latest bbpress.

    now at step 2.19 i can’t seem to login to the bbpress dashboard. mydomain.com/forum/bb-admin redirects to mydomain.com/forum/.

    – i am already login in WP

    – i have bbpress and WP in root

    Any ideas/tips

    #92517
    rajada
    Member

    Well, after some tests, it turned out to be Profanity FIlter… by _ck_ >_> so fix it… no, joking, its by Ben L.

    To be honest that thing was more trouble that it was worth, censoring the f-bomb censored ANY ‘er’s for some reason. If I white-listed ‘er’ then you’d see ****er which is kind of obvious… Either way, thanks guys and anyone got any recommendations for profanity filters that WON’T break my forums? XP

    #92516
    zaerl
    Participant

    I have installed all the plugins for making some tests but I still can’t reproduce the bug.

    Deactivate all and then activate the plugins one by one. You can leave the post there.

    #92451
    thomasfals
    Member

    Hi Kevin

    Thanks for the tip. However, I have already followed the guide once and I just did it again to double check.

    All keys match in both config files. The bb press once has BB_ added in front of the key names. The cookie paths has been set, users mapped, and even the wp-load.php has been set. Keys are correct as they appear locked in the “wordpress integration” section of bbpress – also the table_prefix is set to wp_ as it should. Basically I think everything has been set up as it should.

    I am testing this using mamp pro and the bbpress folder is inside the wordpress folder. I am beginning to think it has something to do with my setup. I have been trying to figure it out for days now.

    #92190

    In reply to: Spam

    korti
    Member

    @pagal, human test works like a charm THANK YOU!!!!!!!!!’

    #92188

    In reply to: Spam

    korti
    Member

    @pagal Thanks, I will certainly try out the plug ins.

    @kevinjohngallagher I’m not going to argue with you, not enough time unless I turn on my dragon… akismet works spectacular on wordpress and needs some love on bbpress. If I was a programmer i would be on it. I only need this to work on one site.

    yes, for real I have a lot of sites (stopped counting at 70) and you will always find me here at my pc. I have made a living on the internet since 1997. Friends at Google, seo professional and just learning the css stuff loving wordpress.

    I love bbpress and do not use any captcha for anything but my email forms, and the people who are not using it are are not getting a lot of traffic. if I didnt have captcha on my sites for email forms it would be game over. I get maybe 1-2 human spams a week if that. And my sales are going up up and up.

    BBpress was hard enough to learn how to install it and then get all the spam.

    and ya know I may have something goofed up in one of my files causing askimet to not work. I have two forums going and one gets only 3 spams a day the other gets 20. Then again the one that gets 20 I think was just indexed and has a lot of content.

    the other was just a test site. I will reinstall and see what happens.

    I just wont be able to handle it with one site that it is in the top 5 for many major keywords and we get 50 questions(emails) a day. I know the forum would be a smash instantly as they are using the feed back comments like mad.

    I will try a few thing s and see what works. This site makes me way to much money to have it not work. I am still debating on moving it over to wordpress.

    Lots of pros and cons to everything these days! Anyways, I have been dong this a long long time, so far my system is definitely working for me. I just have one small hurdle. If I did only have one or two sites it would be a piece of cake. As a SEO professional, I’m like a kid in a candy store. And every day I find an easier way and that is what is all about. That and to learn from one another.

    meanwhile imagine bbpress with no forum… and they just got emails all day asking how to do this or how to do that…. that is where I am at.

    so all in all i guess it depends on what you are doing on the net and how you are making your money..

    captcha has never slowed me down but I type extremely fast to. I forget about the two finger typers.

    I can say this, one time I forgot to put a captcha code on one website and wow what a mess 500 spams a day! I have also used every site builder under the sun and they all recommend it. To me it is like a seat belt law, you hate to put it on, but you know it is for the smart thing to do.

    Thanks again sorry for typos, sleepy! 240 am here in Texas.

    #92363

    In reply to: Theme Problem

    chrishajer
    Participant

    So what is in the html directory?

    And how does the web server know to show bbPress when accessing your domain?

    It’s almost like the web server is serving the files from another directory since everything in this bbPress directory looks OK. I’m curious what’s in the html directory and also where is the setting that tells the server what directory to serve files from.

    We can do a quick test by placing a file in the html directory and one in the bbPress directory (or just one or the other) then calling it up by name. Please post a screenshot of the html directory same as you’ve done for the others so far.

    The date is one day before the others which make me think something happened in there at some point. Maybe an earlier installation or maybe that’s just when the account was set up.

    #35008
    rajada
    Member

    If someone copy/pastes a paragraph of text that has wiki formatting into a post, I can no longer view the page with the post on it (gives me a 404 error), nor can I use post administration (also gives me a 404 error). The only way to resolve it is to delete the entire topic in topic administration (hopefully there weren’t any posts you liked in it!). The test text I used was very basic, it was text with just a header and body, nothing more and it still caused the issue. It also contained “quotes” but not the straight up and down kind, the slanted kind.

    I’m not certain if this is a known bug, or just my installation acting funny, either way, I really don’t want people purposefully or accidentally forcing me to delete topics, so any feedback on this would be greatly appreciated.

    Oh, and yes I can still post/edit normal text to my forum so no its not my server acting up entirely.

    #91993

    In reply to: zaerl brigata.it forum

    Not oEmbed, it only works with YouTube.

    Matt asked me to add it… and well, I had to test, didn’t I?

    To use, just paste a youtube “watch” link on a line by itself.

    pagal
    Participant

    In case of if this information is required then,

    I’m using latest wp, bbpress 1.0.2

    Not deep integration,

    Just Share Database and Shared Users.

    Not – Cookies Integration.

    Swoods
    Member

    Kevin –

    That seems to have done the trick! I just did a test registration on both Firefox and Safari and both seem to have gone through successfully. Thank you for pointing out the plugin! I had been searching for some time beforehand, and I would probably still be searching without your help.

    Thanks again.

    pkr3
    Member

    Latest Test:

    For all examples below, “require_once” represents the command line: “require_once(dirname(__FILE__) . ‘/../wp-load.php’);”

    At no time are errors displaying, nor are the error logs showing “internal 500 error.”

    Test 1: Embedding “require_once” command line into “bb-config.php” causes blank page at forum (http://website.com/forum/) and no themes will load; including bbPress themes.

    Test 2: With “require_once” command line still in “bb-config.php,” entering http://website.com/forum/index.php/ in browser FORCES any bbPress theme (no 3rd party themes) to load, BUT clicking on bbPress “admin” from within the bbPress forum (http://website.com/forum/index.php/) displays another blank page at (http://website.com/forum/bb-admin/).

    Test 3: Removing “require_once” command line from “bb-config.php” file allows bbPress forum homepage to load (http://website.com/forum/) AND allows the bbPress admin page to load (http://website.com/forum/bb-admin/).

    #92181

    In reply to: Spam

    pagal
    Participant

    @korti did you try these plugins?

    For your Forums

    1 – https://bbpress.org/plugins/topic/nospamuser/

    2 – https://bbpress.org/plugins/topic/human-test/

    For your WordPress Blog

    3 – https://wordpress.org/extend/plugins/ban-hammer/

    With WordPress plugin you can block emails ending with .ru

    They really work, the author of bbpress plugin nospamuser also talking in this topic.

    All the Best

    Pagal

    #92178

    In reply to: Spam

    korti
    Member

    I agree/disagree with you on that, however

    what other way is there? I have 100 active sites that get a lot of emails and without captcha there is no way I could keep up. Some of them got 500 spams a day. Captcha instantly fixed it and I still get just as many emails from customers asking questions if not more. To me it separates those that are truly serious and those that are not. If typing 4 extra letters makes you decide not to post then you really are not serious are you?

    I did my own test and there was no difference. I simply the signup form to make up for it.

    If there is another way I would surely do it. All mine are just 4 digit, so some get past it, but it stops 99%.

    I like the one that is numbers eg: 2+7 = and then you just put in 9.

    not sure if it is worth a hoot. Assuming not as I do not see them very often.

    I do appreciate the feed back and the consideration. I definitely want my users to have a pleasant experience.

    I have a major site that I gets mega traffic on and mega questions so I was hoping to integrate this, but I would be worried I might delete accounts that I mistake for spam that are not. The sign up of any new forum is a task, so I do not think an extra 10th of a second for a captcha code would make people go anywhere else.

    It is the huge captcha codes that are nerve wrecking. Especially when you cannot get them to work. Even Google down sized theirs to 4 digits on adwords.

    I am in no way a “bad” moderator a busy one yes.

    I really appreciate your help. I know everyone is busy, and I appreciate the responses.

Viewing 25 results - 7,801 through 7,825 (of 11,591 total)
Skip to toolbar