Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 1,726 through 1,750 (of 11,582 total)
  • Author
    Search Results
  • #196075
    #196055
    Robin W
    Moderator

    I meant test with just bbpress, so eliminating toolkit, which you have done.

    If it was working, and now is not, then something has changed with that account.

    So first, I suggest you go though the settings for the working and not working user and check any differences

    #196051
    maksanse
    Participant

    Hi Robin,
    Thanks for the quick answer, but I don’t understand it. What do you mean ?

    Disabling bbp toolkit doesn’t solve the issue. (I need to have the Tiny MCE editor you see on picture WORKING because my users need to upload images). And btw, it was working correctly a few days ago, so disabling it is not the solution for me.

    I made some other test and it appears that if I use other admin account, the editor displays correctly. So it’s only with ONE admin account (the one I do everything on my forum) that the issue is present.

    Any other idea ?

    #196043
    mygirlfriday805
    Participant

    Hello,

    It was recently brought to my attention that registrations were not being sent. I asked the users to try the “forgot password” link and this does not work either. I set up the plugin “Easy WP SMTP” and tested it and it works… but now I have 332 users registered and they cannot login. What do I do?

    Robin W
    Moderator

    not that I know – I cab only suggest as a test you remove your string modifier and see if that fixes.

    Robin W
    Moderator

    what is confusing me is that in

    dashboard>settings>forums>single forum slug you have

    discussion where I have forum, and it is this slug that is the extra one showing in the url.

    Why you have discussion, I have no idea, I have not seen this before

    all I can suggest is that 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.

    and see what is setting this to discussion

    Then come back

    lookingahead
    Participant

    also, i’m using what i believe is the latest version of buddypress (version 3.2.0)

    lookingahead
    Participant

    @robin-w i’m using version 2.5.14 — that’s the latest version, right?

    #195956
    Robin W
    Moderator

    untested, but this should do it

    add_filter ('bbp_after_has_search_results_parse_args', 'my_function')
    
    my_function ($args) {
    	
    		// bbp_get_closed_status_id() REMOVED,
    		$post_statuses = array(
    			bbp_get_public_status_id(),
    			bbp_get_spam_status_id(),
    			bbp_get_trash_status_id()
    		);
    
    		// Add support for private status
    		if ( current_user_can( 'read_private_topics' ) ) {
    			$post_statuses[] = bbp_get_private_status_id();
    		}
    
    		// Join post statuses together
    		$args['post_status'] = implode( ',', $post_statuses );
    		
    return $args ;
    
    }
    #195946
    Robin W
    Moderator

    sorry, untested and taken from my files – try

    function rew_no_reply_per_forum ($reply_address) {
    	$forum_id = bbp_get_forum_id() ;
    	if ($forum_id == 6 ) $reply_address =  'xxx@yyy.com' ;
    	if ($forum_id == 7) $reply_address =  'abd@hdhd.com' ;
    	return $reply_address ;
    }
    
    add_filter ('bbp_get_do_not_reply_address', 'rew_no_reply_per_forum') ;
    #195923
    Gregg
    Participant

    Hello,
    I’m working with a 3.1v of phpBB. I’ve worked my way through a few hurdles but I’m stuck on the current one. The latest error I’m getting is [Unknown column ‘forums.forum_topics’ in ‘field list’]. For the life of me, I have no idea where this is coming from. The error info

    SELECT convert(forums.forum_id USING “utf8mb4”) AS forum_id,convert(forums.parent_id USING “utf8mb4”) AS parent_id,convert(forums.forum_topics USING “utf8mb4”) AS forum_topics,convert(forums.forum_posts USING “utf8mb4”) AS forum_posts,convert(forums.forum_topics_real USING “utf8mb4”) AS forum_topics_real,convert(forums.forum_name USING “utf8mb4”) AS forum_name,convert(forums.forum_desc USING “utf8mb4”) AS forum_desc,convert(forums.left_id USING “utf8mb4”) AS left_id,convert(forums.forum_type USING “utf8mb4”) AS forum_type,convert(forums.forum_status USING “utf8mb4”) AS forum_status FROM phpbb_forums AS forums LIMIT 0, 100 /* From…

    The very first error I had to overcome was the utf8mb4 issue. I backed up the database and then restored it in a new database. Judging by what I’m seeing it looks like I wasn’t successful?

    #195918
    Vili
    Participant

    How would I make bbPress functions available for a WordPress template file?

    Specifically, I’m building some custom RSS feeds, one of which lists the latest topics posted on the website, but with some modifications. While I can pull the latest topics with a query_posts() call using (‘post_type’ => ‘topic’) and parse them with a standard post loop, I can’t figure out how to access tags related to each topic. I assume that bb_get_topic_tags() should get me the tags but the function is not available for the RSS file template which is in my WordPress template directory. I have basically been using this method for custom RSS feeds.

    Since a function_exists() call for bb_get_topic_tags() returns false, I assume that I should first prime or load the bbPress plugin somehow. But how? Or am I approaching this completely wrong? I suppose I could always do a direct SQL query but I would like to avoid that if possible.

    I have tried searching here and elsewhere but keep drawing blanks. The closest I could get to is this topic but it doesn’t really give an answer, or at least not one that I can understand.

    I’m running the latest public bbPress and WordPress versions.

    #195917
    AiratTop
    Participant

    bbPress 2.5.14:

    FILE: /var/www/test.site/wp-content/plugins/bbpress/includes/admin/converter.php
    -------------------------------------------------------------------------------------------------
    FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
    -------------------------------------------------------------------------------------------------
     310 | WARNING | INI directive 'safe_mode' is deprecated since PHP 5.3 and removed since PHP 5.4
    -------------------------------------------------------------------------------------------------
    
    FILE: /var/www/test.site/wp-content/plugins/bbpress/includes/admin/tools.php
    -----------------------------------------------------------------------------------------------------------
    FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
    -----------------------------------------------------------------------------------------------------------
     144 | WARNING | Function create_function() is deprecated since PHP 7.2; Use an anonymous function instead
    -----------------------------------------------------------------------------------------------------------

    In bbPress 2.6-RC6 everything is good.

    bbPress 2.5.14
    PHP Compatibility Checker 1.4.6

    #195867
    newmomstribe
    Participant

    Hello,

    I have been trying to test my forums and sometimes I get an error message that says “ERROR: Your reply cannot be created at this time.” I have checked my settings and I cannot figure out why this error message is coming up. A few people who have tried to post have told me that they received this message as well. It does not happen to every forum or every topic, only some of them. Does anyone know how I can fix this? I am using the BB Press plugin. Thank you.

    Kristin

    #195865

    In reply to: Spam Forum Topics

    Robin W
    Moderator

    @illuminstr

    If you do not have caching software that might be not accepting the change to the settings, then

    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

    #195850
    marketing050
    Participant

    I tried testing the twentyfifteen and the other twenty-themes, did not work. Also deactivated the plugins, did not work. I think the hosting is using mysql for it servers.

    #195847
    Robin W
    Moderator

    you’ll need to do some fault finding

    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

    #195678
    alanbuddyboss
    Participant

    Hi robin, thx for the reply.

    Unfortunately, that “previous versions” is the same as the trac, which doesn’t have the ‘tests’ folder that contains all the unit testing.

    #195675
    pandraka
    Participant

    I just ran into this issue, it turns out one of words in our moderation list was “ass”. This was causes any topics with words like class, associate, assembly, password etc to be held for moderation (pending status). After a bunch of testing the only solution was to remove “ass” from the moderation list.

    #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

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