Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 1,151 through 1,175 (of 64,427 total)
  • Author
    Search Results
  • #236257
    johnboyfred11
    Participant

    Hi Robin, I have destroyed the keymaster entity but am thinking that on a clean install that BBpress would select the administrator account as the keymaster so I find myself wondering why it does not attach itself to the person who has the administrator function for the website because I have not found the word keymaster anywhere in the drop downs pertaining to roles.

    #236251
    Robin W
    Moderator

    ok, so yes only keymasters can see forums in the dashboard

    and only a keymaster can appoint another keymaster, so you’ll need to get the ID with the role to appoint you :

    dashboard>users>all users> and select the ID you want to appoint, then edit and near the bottom you’ll see the bbpress roles listed.

    #236247
    #236240
    johnboyfred11
    Participant

    Hi, I had a fully functional version of bbpress and have changed my domain name in repurposing my site, however when I log in to the dashboard where bbpress had three tabs Forum, Topics and Replies but recently have only two Topics and Replies so am unable to create new forum topics. The menu name I used for access the forums was Forum or Forums which I have read somewhere can create a clash, I have uninstalled and reinstalled bbpress a few times but cannot get it to work. wordpress 6.2.2, Ocean WP template, Elementor 3.13.4, Elementor pro 3.13.2 the link being geelongtoday.com Thanks

    #236232
    codejp3
    Participant

    @tealcfr – what Robin W suggested is probably your best bet if you need it done immediately.

    Considering that there are plenty of other topics on this very same thing and there’s been a 9 year old ticket for this very thing (https://bbpress.trac.wordpress.org/ticket/2605), your options are limited. A simple and logical approach without any code like Robin suggested above, or custom queries and perhaps some custom code like I suggested before that.

    I’ve taken a look at /includes/converters/bbPress1.php and /includes/classes/class-bbp-converter-base and I think it’s realistic to make a bbPress2.php converter to use within the default bbPress importer (and would also solve the outstanding ticket #2605). If you don’t have the skills to do that, I’d consider doing it as an addition to the bbPress community, but I’d want you (and others) to test it before it gets submitted as a patch. I could have it ready for testing within a week or two. Not a good option if you’re in a rush.

    #236223
    codejp3
    Participant

    I don’t have time to do a detailed answer right now, but what’s wrong mysqldump:
    mysqldump -u db_username -p db_name dbprefix_posts --where="post_type='forum' OR post_type='topic' OR post_type='reply'" > bbp_content.sql

    That will give you a db dump of all forum content.

    Then within phpmyadmin or whatever, doing a select query to get all of the post IDs for that forum content (forums/topics/replies):
    `
    SELECT ID FROM dbprefix_posts WHERE post_type=’forum’ OR post_type=’topic’ OR post_type=’reply’;
    `

    Export that query result from phpmyadmin which should give you a new query similar to this:
    `
    SELECT ID FROM dbprefix_posts WHERE (dbprefix_posts.ID = 5) OR (dbprefix_posts.ID = 8) OR (dbprefix_posts.ID = 11) OR (dbprefix_posts.ID = 43) OR (dbprefix_posts.ID = 86) OR (dbprefix_posts.ID = 87) OR (dbprefix_posts.ID = 88) OR (dbprefix_posts.ID = 89) OR (dbprefix_posts.ID = 91) OR (dbprefix_posts.ID = 92) OR (dbprefix_posts.ID = 93) OR (dbprefix_posts.ID = 94) OR (dbprefix_posts.ID = 95) OR (dbprefix_posts.ID = 96) OR (dbprefix_posts.ID = 97) OR (dbprefix_posts.ID = 98) OR (dbprefix_posts.ID = 99) OR (dbprefix_posts.ID = 100) OR (dbprefix_posts.ID = 110) OR (dbprefix_posts.ID = 111) OR (dbprefix_posts.ID = 112) OR (dbprefix_posts.ID = 114) OR (dbprefix_posts.ID = 115) OR (dbprefix_posts.ID = 116) OR (dbprefix_posts.ID = 117);
    `

    Then you just need to do a little find/replace to re-do the query so that it grabs all of the post_meta for those forum posts (forums/topics/replies).

    find all: dbprefix_posts
    replace with: dbprefix_postmeta

    change the beginning: ‘SELECT ID FROM’
    to: ‘SELECT * FROM’

    then find all remaining: ID
    replace with: post_id

    That will give you a new query ready to dump the post_meta like this:
    `
    SELECT * FROM dbprefix_postmeta WHERE (dbprefix_postmeta.post_id = 5) OR (dbprefix_postmeta.post_id = 8) OR (dbprefix_postmeta.post_id = 11) OR (dbprefix_postmeta.post_id = 43) OR (dbprefix_postmeta.post_id = 86) OR (dbprefix_postmeta.post_id = 87) OR (dbprefix_postmeta.post_id = 88) OR (dbprefix_postmeta.post_id = 89) OR (dbprefix_postmeta.post_id = 91) OR (dbprefix_postmeta.post_id = 92) OR (dbprefix_postmeta.post_id = 93) OR (dbprefix_postmeta.post_id = 94) OR (dbprefix_postmeta.post_id = 95) OR (dbprefix_postmeta.post_id = 96) OR (dbprefix_postmeta.post_id = 97) OR (dbprefix_postmeta.post_id = 98) OR (dbprefix_postmeta.post_id = 99) OR (dbprefix_postmeta.post_id = 100) OR (dbprefix_postmeta.post_id = 110) OR (dbprefix_postmeta.post_id = 111) OR (dbprefix_postmeta.post_id = 112) OR (dbprefix_postmeta.post_id = 114) OR (dbprefix_postmeta.post_id = 115) OR (dbprefix_postmeta.post_id = 116) OR (dbprefix_postmeta.post_id = 117);
    `

    You can then export all of the post_meta as sql dump file(s)

    Then you just have to import those dump files into the new DB, and run the bbPress fixes to re-do counts and stuff like that.

    NOTE: this approach will only work if you’re importing into a fresh DB where there are no posts with the same ID as the old DB. To import into a DB where there are existing/conflicting post IDs, a little extra work would have to be done.

    Like I said, don’t have time to give you a “polished” script to run or anything, but this should point you in the right direction.

    #236222
    Robin W
    Moderator

    php level.

    Frankly it’s really not easy to move forums, topics and replies between sites if not moving the while site.

    bbpress users custom post types, and manages the relationships between them via both post_parent and post meta. If you just export and import again, if the post ID frtom the source site is already being used by the destinatiion site, the the wp import process just allocates a free number, so the relationships gets all messed up.

    ditto if the user ID’s do not exactly match, then again these get to be wrong.

    I have done transfers as paid jobs for clients in the past, and have some code that does a few bits that get over this, but it is not really generic, so would need someone who knows WordPress database well and is happy with php. I am short on time at the moment to do the job.

    #236221

    In reply to: TinyMCE for guests?

    codejp3
    Participant

    Follow-up:

    Apparently this is only a problem on some sites with misconfiguration/other issues, and also for certain browsers.

    I am able to get the TinyMCE editor control buttons to display properly on a fresh test site, and it works well on every common browser.

    The issue at hand is on a specific site with specific issues that need to be dug into a little deeper. It is not an overall bbPress/TinyMCE issue. You can ignore this topic and not post any suggestions (unless you really want to).

    Pierre
    Participant

    Hi,

    I’m trying to find a way to export and then import my forum
    about 120k subjects and about 1 244K replies.

    We also need to be sure that accounts are imported and correctly linked to replies.

    I saw a git project which is not anymore updated for 6 years, and linked to wp-cli/bbpress package that doesn’t exist anymore.

    Do you have any solutions to solve this ?

    #236217

    In reply to: Account

    ricoto
    Participant

    Hi,
    Is it possible to do the same thing with BBpress Style Pack?

    #236205
    Anonymous User 21018580
    Inactive

    Hello. I’m currently using Ultimate Member in conjunction with bbpress. I’m looking for a way to display the user’s submitted topics on their own profile so that they are able to add/manage their own topics.

    I would also like the member’s friends to be able to view the member’s submitted and published topics on their profile.

    Is there a plugin available to assist with this or does anyone know a way to achieve the results I’m looking for?

    Thank you in advance for your help.

    #236199
    terryfindlay
    Participant

    bbPress Version 2.6.9
    WP Version 6.2.2

    New Forum

    A registered member of the forum is having trouble posting. He keeps getting this message:
    “Error: Duplicate reply detected; it looks as though you’ve already said that.”. The text he is trying to post has definitely not been posted before.

    Any suggestion? Thanks.

    #236198
    Robin W
    Moderator

    On the basic bbpress plugin, you can approve/reject topics in the backend dashboard, but the user sees nothing.

    There is a moderation section in my style pack additional plugin which adds better moderation options

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Moderation

    #236197
    Robin W
    Moderator

    ok, no one else is reporting this, and I cannot replicate this error.

    This suggests it is site specific.

    If you are happy that you are getting this on a reply from you where you have definitely only hit the submit button once, then I can only suggest you do the standard fault finding

    it could be a theme or plugin issue

    Themes

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

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    Otherwise maybe talk to your hosting provider about site speed

    #236194

    In reply to: Account

    ricoto
    Participant

    I want the same user menu as on this site bbpress.org.
    How can I do it?
    It’s the same as there is in the toolbar than WordPress at the top right.
    https://postimg.cc/Lhwz65RW
    https://postimg.cc/LYT2QnD8

    PS: How to post an image on the forum I don’t know how to do it

    #236187
    ricoto
    Participant

    Hi,

    I created a shortcode to move it to a tab on my page.

    The problem is that when I place this shortcode(Post Comments as bbPress Topics) in this tab it also remains at the bottom of my page at the initial place of the comments so I have it duplicated.

    And if I remove the display of comments in the template my shortcode is not displayed.

    How to do please?

    #236186

    In reply to: Plugin bbP g-plus-one

    ricoto
    Participant

    There is this error in the response form when I activate the plugin:

    Fatal error: Uncaught TypeError: Cannot access offset of type string on string in C:\xampp\htdocs\w9\wp-content\plugins\g-plus-one\g-plus-one.php:42 Stack trace: #0 C:\xampp\htdocs\w9\wp-includes\class-wp-hook.php(308): g_plus_one_display('') #1 C:\xampp\htdocs\w9\wp-includes\class-wp-hook.php(332): WP_Hook->apply_filters('', Array) #2 C:\xampp\htdocs\w9\wp-includes\plugin.php(517): WP_Hook->do_action(Array) #3 C:\xampp\htdocs\w9\wp-content\themes\oceanwp\bbpress\loop-single-reply.php(62): do_action('bbp_theme_befor...') #4 C:\xampp\htdocs\w9\wp-includes\template.php(785): require('C:\\xampp\\htdocs...') #5 C:\xampp\htdocs\w9\wp-content\plugins\bbpress\includes

    #236183
    Robin W
    Moderator

    sorry no, bbpress only works as a plugin within wordpress.

    #236179
    webmestrecgdt
    Participant

    Solved: I found a solution, it was insufficient rights, in addition to the role of administrator I have that of keymaster added by the installation of bbPress. But obviously the capabilities of keymaster (including create_forums) were not taken into account. I added this ability “create_forums” to the administrator role and I found in the dashboard on the forums tab: “add new” and it works!

    #236178
    Bruce
    Participant

    I assume that bbPress can be installed without WordPress. However, is there documentation for the process especially the MySQL setup?

    #236175
    milicagpg
    Participant

    Hi,

    I have several forums on my site and want to customize them to look different.
    I create custom css for global look, but I don’t know how to customize different look for particular forum.
    I tried with #bbpress-forums li.bbp-forum-143737 where is 143737 forum’s id but it didn’t works.
    The idea is to put different forums in three columns in one page. Then the cover for each one should be some photo or text. Click on the photo opens the forum’s topics.

    Anyone can help?

    WP is 6.2.2, bbPress 2.6.9, theme is Kleo, site is still at localhost.

    #236172
    ricoto
    Participant

    Hi,
    I use the Post Comments as bbPress Topics plugin which works very well but when creating the topic I would not like it to create a first post, I want it to remain empty.
    How to do?

    #236171
    webmestrecgdt
    Participant

    Hello, I have bbPress 2.6.9 installed (WP 6.2.2), on the dashboard I find “Forums”, “topics”, “replies” but not “add new”. However, as an administrator I also have the role of “Keymaster”. What can I do ? THANKS

    #236170

    In reply to: Account

    ricoto
    Participant

    What do you recommend as a connection plugin?

    What is the plugin on this bbpress.org site?

    #236169

    In reply to: topic user template

    ricoto
    Participant

    Do you know how I can:
    https://postimg.cc/7G5PLrbm

    1: Reverse the response form, i.e. put it at the top and the last comment just below

    2: Remove the use of tags

    I use bbPress + Post Comments as bbPress Topics

    What is the file to edit please?

Viewing 25 results - 1,151 through 1,175 (of 64,427 total)
Skip to toolbar