Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 1,726 through 1,750 (of 11,570 total)
  • Author
    Search Results
  • #195659
    alanbuddyboss
    Participant

    Can anyone point me the place where i can find the unit test for specific bbpress version?

    In the trac repo, only the trunk/beta/rc have the unit test folder. But on the standard release, it’s just the production version.

    Maybe there’s already a way to do it in trac’s interface but I couldn’t figure out.

    For example, I want to get the unit test for version 2.5.12 to run some compatibility test on my plugin. How can I get that?

    https://bbpress.trac.wordpress.org/browser/tags

    Thanks much 🙂

    AdventureRidingNZ
    Participant

    Bumping this as the sentiment in the original post about the lack of progress with maintaining bbbpress as an active project seems to be even more relevant now than when this topic was made.

    While somehow wordpress.org indicates the bbpress plugin was last updated a week ago, the current version 2.5.14 was released in September 2017.

    The next release as far as I can tell is 2.60, for which the latest development version, rc5, was first put out for feedback 13 months ago.

    it is not reasonable to call this project under active development.

    #195599
    Robin W
    Moderator

    if you actually posted ‘After clicking on register button wp shows wp-login.php page but without login form. Only -1 in upper left corner.’ on a wordpress forum, why would they even mention bbpress? Youy must have asked a question mentioning bbpress.

    I have looked at the issue and it is a wordpress issue, but general advice

    It could be a theme or plugin issue issue, so you’ll need to test to find out which

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #195586
    liyacaty
    Participant

    I populated config.php with the data and it WORKS! (looks good by the way!!).

    The only thing is that my forum is at

    test.domain.com/forum/

    I cannot get it to the root at

    test.domain.com

    jh20001
    Participant

    I have the latest RC of bbpress, trying to import from a phpbb 3.2.0 install. I have reset it and started it and reset it and started it and no matter what I do, it starts with “no users to import” and then it imports thousands of forums/topics all assigned to anonymous.

    Is there a way to only import users at first and once it successfully does it, then do the normal import of the forums/topics and so forth?

    Or is there a common issue that has been found with importing users that can be fixed by adjusting something in the source database (or…something)?

    #195561
    Robin W
    Moderator

    It could be a theme or plugin issue issue, so you’ll need to test to find out which

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #195559
    90daykorean
    Participant

    Hey all, we’re having trouble with bbpress replies, and we can’t seem to figure out what the issue is.

    Everything works fine except when a normal “subscriber” level user tries to reply to his own post in the bbpress forum. The “subscriber” level has some additional permissions that we’ve added in using the User Role editor plugin. If he tries to reply to his own post, he gets this error message:

    “ERROR: You do not have permission to reply.”

    He can create posts, reply to other posts, but just not his own. I’ve tested this with our test account, and the same thing happens with the test account.

    We are using the User Role Editor plugin, and our developer has checked the settings but they seem to be correct.

    Our next plan is to create a new role in WP, with the same capabilities as the custom “subscriber” level. Wondering if any of you have had this experience, or have suggestions for what we should try.

    #195555
    jh20001
    Participant

    I also think the many attempts to import, find an error, add the column, import, find an error, add the column…..etc, led to bbpress having a meltdown somewhere possibly as in WordPress, when you click on the forums link in the menu or the “All Forums” sub menu item, it leads to a ERROR 502 – BAD GATEWAY.

    I tried re-installing the plugin but the forums listing menu item is shot. I even upgraded to the current release candidate.

    On a positive note, the current release candidate seems to be importing data….working on importing up to convert 50k+ topics right now. Even though the forum listing in admin screen is screwed, this is at least a good test to see what happens on the import I guess…

    #195522
    Robin W
    Moderator

    Try this – or much easier just add my style pack plugin to your site which has this fix built in, and let me know if it fixes

    bbp style pack

    //filter to correctly return last active ID for sub forums
    //note : a parent forum or category can get the wrong last active ID if a topic in a sub forum is marked as spam or deleted. This filter ignores the parent and works out the correct sub forum
    
    //don't add if pg filter exists as this will have done it already
    if (!function_exists ('private_groups_get_permitted_subforums')) {
    	add_filter ('bbp_get_forum_last_active_id' , 'rew_get_forum_last_active_id', 10 , 2 ) ;
    }
    
    function rew_get_forum_last_active_id ($active_id, $forum_id) {
    	$sub_forums = bbp_forum_get_subforums($forum_id) ;
    	if ( !empty( $sub_forums ) ) {
    		$active_id = 0;
    		$show = array();
    		//find the latest permissible 
    		foreach ( $sub_forums as $sub_forum ) {
    			$sub_forum_id =  $sub_forum->ID ;
    			$active_id = get_post_meta( $sub_forum_id , '_bbp_last_active_id', true );
    			$last_active = get_post_meta( $sub_forum_id, '_bbp_last_active_time', true );
    			if ( empty( $active_id ) ) { // not replies, maybe topics ?
    				$active_id = bbp_get_forum_last_topic_id( $sub_forum_id );
    				if ( !empty( $active_id ) ) {
    					$last_active = bbp_get_topic_last_active_time( $active_id );
    				}
    			}
    			if ( !empty( $active_id ) ) {
    				$curdate = strtotime($last_active);
    				$show[$curdate] = $active_id ;
    			}
    		}
    		//then add the forum itself in case it has the latest
    			$active_id = get_post_meta( $forum_id , '_bbp_last_active_id', true );
    			$last_active = get_post_meta( $sub_forum_id, '_bbp_last_active_time', true );
    			if ( empty( $active_id ) ) { // not replies, maybe topics ?
    				$active_id = bbp_get_forum_last_topic_id( $forum_id );
    				if ( !empty( $active_id ) ) {
    					$last_active = bbp_get_topic_last_active_time( $active_id );
    				}
    			}
    			if ( !empty( $active_id ) ) {
    				$curdate = strtotime($last_active);
    				$show[$curdate] = $active_id ;
    			}
    		$mostRecent= 0;
    		foreach($show as $date=>$value){
    			if ($date > $mostRecent) {
    				 $mostRecent = $date;
    			}
    		}
    		if ($mostRecent != 0) {
    			$active_id = $show[$mostRecent] ;
    		} else {
    			$active_id = 0;
    		}
    	}
    	return apply_filters( 'rew_get_forum_last_active_id', $active_id, $forum_id );
    }
    #195505
    Leandro
    Participant

    Hello,

    Recently I started to setup a community using buddypress and bbpress and only after a few tests I noticed that when someone create or reply a topic no notification is created. This is a bit frustrating considering how important the notifications are to keep track of what is happening in the community.

    Looking through the forum for a solution I found a topic with a similar subject, however when trying to use their code a empty notification is created (there is no text or description). Here is the topic: https://bbpress.org/forums/topic/new-reply-notification-link-to-the-reply/

    Anyone can tell me if the code above still working? I think that something changed since that this code was published, but I cant figured out what.

    #195493

    Topic: WP Version

    in forum Installation
    grimmag
    Participant

    Hello. It shows that this plugin is “Untested with your version of WordPress” and hasn’t been updated in over a year? I don’t want to get another plugin that doesn’t work so could you tell me if there are any plans to update to the latest WP Version? It’s not like Version 4.9.8 just came out. Thanks in advance!

    #195487

    In reply to: Undefined index error

    Robin W
    Moderator

    can you just (as a brief test) deactivate the toolkit plugin and see if the error goes away.
    then come back

    #195441
    Robin W
    Moderator

    ok, I cannot say why it is not working, it works in my test site

    I presume this code is going into you child theme’s function’s file – sorry but I do not know how technical you are, so I ask the obvious questions !

    you could try >9 and see if that works !

    #195438
    Robin W
    Moderator

    that code will close the topic on 100 replies, so unless you tested with creating the 100th reply, then it would not work. Did you do this ?

    #195425
    Robin W
    Moderator

    ok, I would strongly suspect you membership wall, presumably a plugin – not a lot we can do if it is.

    This generic help should let you define where the issue is

    It could be a theme or plugin issue issue, so you’ll need to test to find out which

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #195418

    In reply to: Double avatar

    Robin W
    Moderator

    It could be a theme or plugin issue issue, so you’ll need to test to find out which

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #195392
    TechHaus
    Participant

    Issue!

    I installed rc-5 and woocommerce on two new installs this week and I’m getting this when i go to mysite.com/forum to see the forums list.:

    Fatal error: Uncaught ArgumentCountError: Too few arguments to function WC_Template_Loader::unsupported_theme_title_filter(), 1 passed in /opt/lampp/htdocs/th-fixed/wp-includes/class-wp-hook.php on line 286 and exactly 2 expected in /opt/lampp/htdocs/th-fixed/wp-content/plugins/woocommerce/includes/class-wc-template-loader.php:399 Stack trace: #0 /opt/lampp/htdocs/th-fixed/wp-includes/class-wp-hook.php(286): WC_Template_Loader::unsupported_theme_title_filter(‘Forums’) #1 /opt/lampp/htdocs/th-fixed/wp-includes/plugin.php(203): WP_Hook->apply_filters(‘Forums’, Array) #2 /opt/lampp/htdocs/th-fixed/wp-content/plugins/bbpress/includes/core/theme-compat.php(561): apply_filters(‘the_title’, ‘Forums’) #3 /opt/lampp/htdocs/th-fixed/wp-includes/class-wp-hook.php(286): bbp_template_include_theme_compat(‘/opt/lampp/htdo…’) #4 /opt/lampp/htdocs/th-fixed/wp-includes/plugin.php(203): WP_Hook->apply_filters(‘/opt/lampp/htdo…’, Array) #5 /opt/lampp/htdocs/th-fixed/wp-content/plugins/bbpress/includes/core/sub-actions.php(434): apply_fi in /opt/lampp/htdocs/th-fixed/wp-content/plugins/woocommerce/includes/class-wc-template-loader.php on line 399)

    Lastest everything both tested on xampp locally.

    #195376

    In reply to: bbpress user roles

    Robin W
    Moderator

    in bbpress plugin in my site the moderator roles the forum is not showing in dashboard,

    It could be a theme or plugin issue issue, so you’ll need to test to find out which

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #195375
    Robin W
    Moderator

    something is putting that code there, you will need to work out what

    It could be a theme or plugin issue issue, so you’ll need to test to find out which

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #195374
    Robin W
    Moderator

    ok, sorry but you can only fault find by testing.

    Only having a live site is not a good policy, suggest you invest time in creating a test site

    Creating a Test Site

    #195244
    Robin W
    Moderator

    @ashaani

    It could be a theme or plugin issue issue, so you’ll need to test to find out which

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #195240

    In reply to: Messages are stacking

    Robin W
    Moderator

    1. bbpress is free software offered under OSF. There is no guarantee of support. If I gave you a free car, would you also expect me to service it for you for free?

    2. BBpress is supported by volunteers (mainly me) who do so in their free time for no payment, so you expect someone to reply within 7 hours is frankly being a bit hopeful.

    3. If you have followed the troubleshooting information in ‘before posting’ before er.. posting then you would probably have an answer without involving me, but to save you reading it…the most relevant part for you is

    It could be a theme or plugin issue issue, so you’ll need to test to find out which

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #195224
    davidsavill
    Participant

    Hello,

    I’m having a issue where forum messages are all stacking onto of each other at the top of the page,

    Test Topic

    Anyone come across this before?

    Any ideas?

    Thankyou

    #195218
    Robin W
    Moderator

    It could be a theme or plugin issue issue, so you’ll need to test to find out which

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #195213
    timmoser
    Participant

    ok, so i just tested it with some image from google (reuse with modification) as you can see above and it worked flawlessly. this surprised me so i did it the same way i did it last time. i uploaded an image of mine to imgur and tried it with that one. and it does not show. so apparently it is imgur specific.

    lets see if directly posting the link works:

    View post on imgur.com

    i men’t to edit my post and add the imgur pic but somehow i ended up posting my post twice. please feel free to delete one.

    Cheers

Viewing 25 results - 1,726 through 1,750 (of 11,570 total)
Skip to toolbar