Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 11,251 through 11,275 (of 64,496 total)
  • Author
    Search Results
  • #175415
    mica123
    Participant

    I apologise for asking this question again:
    I have some bbpress files in my child theme. I checked
    the differences on bbpress trac. I can see that most
    of my modified files are unaffected as no changes have been made in them.
    However I have a modified bbpress.php file (which @robkk helped me with) –
    this files just creates a customised main bbpress page.
    I can see that a couple of changes were made in the bbpress.php
    file in the plugin parent folder.
    All I need to know is if I can safely update to 2.5.9 without worrying
    about the bbpress.php I have in my child theme.
    Thank you.

    #175410
    rblea24
    Participant

    I’ve imported forums, forums topics, and forum replies from a Rainmaker site that used BBPress. It looks like everything imported correctly except the forum post count. Can someone please help me with this?

    https://www.goalsarecool.com/forums/

    Thanks in advance!

    Blake

    jamesburden
    Participant

    Thanks for your answer Robin. Maybe I wasn’t clear enough though. I’m fully aware how to enforce strong passwords. I’ve got force-strong-passwords installed as a default plugin (I host with WPEngine and it’s an MU plugin). The issue is that these solutions don’t seem to work within the bbPress environment. Or at least in the configuration that I’m running (using WOffice to facilitate an extranet).

    I’ve also tried enforcing strong passwords by using iThemes security options (both in conjunction and separately from force-strong-passwords). And that doesn’t work either.

    I’m wondering if someone else has had a similar problem and can point me towards a possible solution.

    Thanks

    #175402

    In reply to: This Forum Is Empty

    Robin W
    Moderator

    it is in

    bbpress\includes\forums\template.php line 2021

    But the easiest way to change it is to put this into your functions file :

    function change_translate_text( $translated_text ) {
    	$text = 'This forum is empty.' ;
    	if ( $translated_text == $text ) $translated_text = 'new text here' ;
    	return $translated_text;
    }
    add_filter( 'gettext', 'change_translate_text', 20 );
    
    

    and change ‘new text here’ to the wording you want

    #175401
    Robin W
    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    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

    Vitor Madeira
    Participant

    @scorpnetwork, I too am planning on converting a vbulletin 3.8 forum into bbPress, so I’m looking for the most information that I can get to help me on doing the best moves.

    Are you using bbPress right now? Did the migration went well?

    Thank you.

    #175399
    Vitor Madeira
    Participant

    Dear @nwcountry, did you give up on migration from vbulletin to bbPress?

    Thank you.

    #175398
    Robin W
    Moderator

    ok, so you don’t have private groups and the error is not the same error as the issue above apart from the first 9 words which are generic 🙂

    sorry this is a totally different issue.

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    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.

    #175397
    lh800
    Participant

    No. I have not.

    I just tried deleting bbpress using this method: https://techjourney.net/how-to-completely-uninstall-and-remove-bbpress-clean-up-databases/.

    And reinstalled it – and I get the same message as soon as I install it again:

    http://www.screencast.com/t/5jjrCLDnxlO

    Any advice?

    Best wishes
    Lars

    #175396
    sasenzon
    Participant

    This problem does not happen when I deactivate bbpress forum plugin.

    I don’t have the private group plugin.

    Vitor Madeira
    Participant

    @fmckinnon, I just visited your forum and it seems that you went back to vbulletin.

    bbPress did not do the trick on running your community forums?

    I too am planning on converting a vbulletin 3.8 forum into bbPress, but really need to get other folks opinions before taking such move.

    Thanks.

    #175393
    Vitor Madeira
    Participant

    @beerallica, thank you so very much for your detailed information.

    I’m planning on converting a vbulletin 3.8 into bbPress but I’m reading all of the experiences from other folks that I’m able to find and yours seemed to be one of the most detailed ones.

    How do you rate yourforum now when comparing with the old vbulletin?

    Thanks.

    #175392
    Vitor Madeira
    Participant

    Hey @mikebare, have you got good news regarding your migration from vbulletin to bbPress?

    Thanks.

    #175391
    junglejim620
    Participant

    Hi bbpress,

    I would like to change the phase ” This forum is empty “, can you help me to locate which file and the directory to change it from?

    Please advise for help, thanks,

    #175390
    aurelienpierre
    Participant

    I kinda look for the same things, but I’m managing forum groups through BuddyPress groups :

    No access to the sub-forums of Buddypress groups forums for group members

    No answer in almost a year. The fact is group-based read/write permissions are a basis of serious forum management, but nobody cares in the bbP dev team…

    Tweaking the template to hide the topic/reply form looks nasty as it’s only front-end. This kind of permissions should be built-in CMS-side.

    #175387
    giobby
    Participant

    After further investigations I’ve found a workaround that should work.

    Just to recap on the error: it seems like several posts are left with the old phpBB poster id rather than using the new wordpress user_id (which really makes me think that somewhere in the converter code a wrong reference has been used).

    The best way to work around the issue is the following (assuming a fresh installation):

    1) before migration
    – check what is the highest user_id in your phpBB installation (e.g.: 6235)
    – insert a dummy row in wp_users with id grater than that (e.g.: 6236, or even better, round it up to 10000). In this way all the converted users will have their IDs starting from a higher value (e.g.: 10001, 10002, …) and it will be easy to spot the posts with wrong author (e.g. post_author < 10000).

    2) launch migration as usual
    3) after migration, create a temporary table that lists all the bbpress posts with wrong author

    /* Get all posts with wrong author and correspondent right author from bbpress translator table */
    create table TMP_ORPHANS as
    select 
    wp_posts.ID, 
    wp_posts.post_author,
    wp_bbp_converter_translator.value_id real_author, 
    IFNULL(wp_posts.post_date, NULL) post_date,
    IFNULL(wp_posts.post_date_gmt, NULL) post_date_gmt,
    wp_posts.post_content, 
    CASE 
    	WHEN wp_posts.post_type = 'reply'
        THEN (SELECT tmposts.post_title from wp_posts as tmposts where tmposts.id = wp_posts.post_parent)
        ELSE wp_posts.post_title
    END post_title, 
    wp_posts.post_excerpt, 
    pescasubac, 
    wp_posts.quea.wp_posts.post_status, 
    wp_posts.comment_status, 
    wp_posts.ping_status, 
    wp_posts.post_password, 
    wp_posts.post_name, 
    wp_posts.to_ping, 
    wp_posts.pinged, 
    IFNULL(wp_posts.post_modified, NULL) post_modified,
    IFNULL(wp_posts.post_modified_gmt, NULL) post_modified_gmt,
    wp_posts.post_content_filtered, 
    wp_posts.post_parent, 
    wp_posts.guid, 
    wp_posts.menu_order, 
    wp_posts.post_type, 
    wp_posts.post_mime_type, 
    wp_posts.comment_count,
    	(	select wp_postmeta.meta_value 
    		from wp_postmeta 
    		where 
    			wp_postmeta.meta_key = '_bbp_author_ip' and 
    			wp_postmeta.post_id = wp_posts.id
    	) user_ip
    from wp_posts 
    left join wp_users on wp_posts.post_author = wp_users.id
    left join wp_bbp_converter_translator on wp_posts.post_author = wp_bbp_converter_translator.meta_value
    where 
    wp_posts.post_type in ('forum', 'reply', 'topic') and
    (wp_users.id is null or 
    wp_users.id = 1) and /* all posts of type forum looks to be assigned to the site admin (id=1 in my case)*/
    wp_bbp_converter_translator.value_type = 'user' and 
    wp_bbp_converter_translator.meta_key = '_bbp_old_user_id';
    
    /* this is to be able to create indexes later */
    ALTER TABLE TMP_ORPHANS modify column post_date datetime default NULL;
    ALTER TABLE TMP_ORPHANS modify column post_date_gmt datetime default NULL;
    ALTER TABLE TMP_ORPHANS modify column post_modified datetime default NULL;
    ALTER TABLE TMP_ORPHANS modify column post_modified_gmt datetime default NULL;
    ALTER TABLE TMP_ORPHANS modify column user_ip varchar(40);
    ALTER TABLE TMP_ORPHANS modify column post_title varchar(255);
    
    /* indexes to speed up access to the table (some are useless) */
    ALTER TABLE TMP_ORPHANS ADD INDEX(post_date);
    ALTER TABLE TMP_ORPHANS ADD INDEX(post_author);
    ALTER TABLE TMP_ORPHANS ADD INDEX(real_author);
    ALTER TABLE TMP_ORPHANS ADD INDEX(user_ip);
    ALTER TABLE TMP_ORPHANS ADD INDEX(post_title);

    4) Now that you’ve got the list of posts with wrong authors, you can update your wp_posts table accordingly

    /* Revert bad authors to good authors */
    UPDATE 
    wp_postsINNER JOIN TMP_ORPHANS 
    ON wp_posts.id = TMP_ORPHANS.id
    set wp_posts.post_author = TMP_ORPHANS.real_author 
    where wp_posts.post_type in ('reply', 'topic') ;

    Final consideration:
    – this workaround seems to be working for me, but of course I don’t assume any responsibility in case it doesn’t work for you. The update trusts the converter table generated by the bbpress forum converter and assumes that a wrong author id matches the original author id of phpBB forum (I executed some checks and it seems like the problem is always the same = phpBB author id rather than new wordpress author id).
    – the update doesn’t fix posts of type ‘forum’ because by default these are assigned to the wordpress site administrator. If you wish to assign them to the original phpBB author, just modify the where condition:
    where wp_posts.post_type in ('forum','reply', 'topic') ;

    message to the developers: I truly believe somewhere in the converter code a wrong reference is used under certain conditions. The pattern of the error is always the same: when the author doesn’t match it’s because the author id of the phpBB forum rather than the new converted author id.


    @netweb

    Robkk
    Moderator

    This is already fixed in 2.6.

    https://bbpress.trac.wordpress.org/ticket/2607

    #175378

    In reply to: CSS (new user)

    Robin W
    Moderator

    bbp-style pack lets you style bbpress

    https://wordpress.org/plugins/bbp-style-pack/

    #175375

    Topic: CSS (new user)

    in forum Themes
    checmark
    Participant

    New to bbPress and I’ve looked everywhere for how to change the colors to match my site design better. I thought I had found the correct CSS to change the background color and added it to my custom CSS for the Avada theme –

    #bbpress-forums {
    background-color:#0d4d00 !important;
    }

    but it did nothing. Appreciate if someone could steer me in the right direction. Thanks.

    jamesburden
    Participant

    Hi – hope someone can help with this.

    I have a forum website set up using bbPress. Forum members are specifically invited as it is a leadership course for selected individuals. I create their user accounts including a strong password etc and send them the details.

    An issue that I’ve come across is that the participants are widely spread around the world, some of whom have limited awareness of security issues on the internet. I want to ensure that they cannot change their password to an insecure one.

    I’ve got iThemes security installed on the site and have activated the strong password enforcements with a minimum level of Subscriber. All of the course participants have a primary role of subscriber, with a forum role of Participant. With the settings I have in place they should not be able to change their password to a weak one. And yet they are currently able to log in and change the password to ‘changeme’ for example.

    I’ve reached out to iThemes security but nothing helpful from them yet,

    Can anyone here help me to figure out how to ensure that forum users cannot change their passwords to weak ones? Is there some setting in bbPress that I’m missing? Or some workaround that others use? I can’t imagine for a minute that I’m the only one to have come across this issue, but googling has turned up a surprising lack of information about how to resolve it.

    Many thanks for your help.

    James Burden

    Site URL: http://gcfleadership.org
    WordPress version: 4.5.2
    bbPress version: 2.5.9

    #175371

    In reply to: bbPress 2.5.9

    mica123
    Participant

    Before I upgrade to bbpress 2.5.9 I’d like to check on the following:

    1. I put some bbpress php files into my child theme ((bbpress.php – modified by @robkk; the following files were modified by me: feedback-no-forums.php, feedback-no-replies.php, feedback-no-search.php, feedback-no-topics.php, form-forum.php, form-reply.php, form-topic.php, loop-single-form.php) – will I have to do something after the upgrade?

    2. Should I worry about the text editor missing after the upgrade as reported in the post above?

    Thank you.

    Robin W
    Moderator

    I don’t do development of bbpress, just write supporting plugins and offer support here.

    #175358
    Fuskeduske
    Participant

    Hi Randr,

    Are you sure it is bbpress? The website itself seems really slow, you could try making a clone of the website and disable theme / plugins, then enable them again one by one.

    According to tools.pingdom.com this element is bringing up 2.5 seconds of load alone on the frontpage:

    http://vpinball.com/?wc-ajax=get_refreshed_fragments

    -Mads

    Sybre Waaijer
    Participant

    Thanks for confirming Robin!

    As WP_Query::is_search is a public variable, why don’t we simply alter it in real-time within bbPress itself? This will make sure people won’t need an external fix :), and it will leave plugin/theme developers out of question and responsibility.

    jglemza
    Participant

    You can pull this off by hiding the 3rd li. Something like this should do the trick.

    body.page #bbpress-forums li:nth-child(3) {
    	display: none;
    }
Viewing 25 results - 11,251 through 11,275 (of 64,496 total)
Skip to toolbar