Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 27,626 through 27,650 (of 64,518 total)
  • Author
    Search Results
  • #125149

    Thank you so much for your reply! The information indeed helped me.

    I have the database converted to a MySql database and can see the table information. Now it’s a matter of configuring the example.php

    My next question: Where can I find a diagram of how bbPress 2.0 works with WordPress’ database structure? I know they share a database and tables. I know WP’s structure, but even Google won’t inform me how BBP interacts with WP. Simply put, I think from here it’s just a matter of linking the 2 together so that import will do the rest.

    Thanks again!

    Remi
    Participant

    A really small bug caused incorrect menu_order of new replies if a topic reached over 1000 replies.

    The solve this the file includes/replies/functions.php has to be changed.
    Line 264: ‘menu_order’     => bbp_get_topic_reply_count( $topic_id, false ) + 1;

    Should be: ‘menu_order’     => bbp_get_topic_reply_count( $topic_id, true ) + 1;

    If not true a comma will be added for the thousands. Which results in only the number before the comma will be used.

    I will be glad to see this will be changed in the next version of bbPress.

    #125145
    stl99
    Participant

    Unfortunately I wasn’t able to find anything useful (working, stable, supported, up-to-date ..) in order to add a rating/vote up/reputation feature to my bbpress installation so far. Therefore I’m about to use something like wpanswers for my Q&A site but I’d prefer to use bbpress in order to promote the forum.

    Any ideas how to professionally integrate a voting up or rating feature into bbpress would be highly appreciated!

    Many thanks in advance!

    Cheers,
    Thomas

    #125146
    Stephen Edgar
    Keymaster

    This is now in bbPress trac https://bbpress.trac.wordpress.org/ticket/2163

    (All updates will be posted at the above URL from now on i.e. download from trac NOT GitHub)

    The docs will be on the codex at https://codex.bbpress.org/import-forums/mingle/

    #125143
    tigernsw
    Participant

    Don’t know what was the story, but our site have installed bbPress before and have run one event successfully a year ago. This plugin has been removed for some reason(I’m the second person to use this plugin).

    I’ve just installed and activated bbPress again, seems all the configurations are still there. But the forumbase URL broken:
    http://www.mamamia.com.au/nissanforums/forum/

    No matter what I’ve changed config, it refuse to work, including following:
    Forums base – changed to ‘forums’ and restored back
    Forum Prefix – checked and unchecked
    Other options
    Etc

    I’ve also checked documentations but no luck.

    It’ll be grateful if anyone can help, thanks in advance.

    #125142
    Stephen Edgar
    Keymaster

    Smileys & Open/Closed Topics are done, stickies we can’t do for now and that will have to wait.

    Grab the latest again with https://gist.github.com/4534229/download

    I’m still not sure why the extra blank post is turning up 🙁

    rossagrant
    Participant
    #125140
    srjrol
    Participant

    ‘wp_forum_threads’ has a ‘closed’ column where 0 is open and 1 is closed.

    ‘wp_forum_threads’ has a ‘status’ column with values of ‘sticky’ or ‘open’.

    I have no problems re-creating the parent forums personally, I just wanted to make sure we had the correct setting as I am sure there will be others who try to use this.

    Everything has really gone so much better than I hoped for so I could not be happier with the outcome. Thanks again for all of your help with this!

    #125139
    Stephen Edgar
    Keymaster

    So it imported users, forums, topics & replies? Nice 🙂

    There is a blank post by the original author at the start of each topic causing false count

    Let me double check that I am not importing something twice…

    Parent forums are missing (everything was imported under ‘Forum’)

    Joining the `wp_forum_groups` will be a pain if there are ‘id’ conflicts, easy workaround is just manually create the parent category with bbPress.

    Custom Smileys, Closed Topics are open again & Stick Topics are normal topics

    These three are easy,

    Smiley’s: I think these are done 😉

    Closed Topics: Does the table `wp_forum_threads` have a specific column for the open/closed status of a topic? If so what are the potential values?

    Sticky Topics: Does the table `wp_forum_threads` have a specific column for the sticky status of a topic? If so what are the potential values?

    (For the closed and sticky table options, sometimes its numerical 0,1,2 or it might have a value normal or sticky or closed etc)

    #125138
    srjrol
    Participant

    I downloaded the new version and the import was successful under wp_ prefix but it seems the same issues remain as I listed above. Many of these are not a problem for me personally except for the blank first post issue which would be nice to correct.

    #125136
    Stephen Edgar
    Keymaster

    Cool…. Everything should work…

    With the two posts above of your errors.

    Case 1. You used `wp_forum_` on that first revision when I used forum , threads, posts & user as the from_tablename’s, the error you posted was `’str1210409063589.wp_forum_user’` and that is correct as the importer was trying to find `wp_forum_user` which indeed does not exist.

    Case 2. You used `wp_` on that second revision when I used forum_forums , forum_threads, forum_posts & users as the from_tablename’s, the error you posted was `’str1210409063589.wp_forums’` and that is not what I would expect to see here, it should be forum_forums.

    Can you confirm by downloading the latest revision with this link and replacing Mingle.php with the version extracted from this zip file and use `wp_` as the table prefix.
    https://gist.github.com/4534229/download

    #125135
    srjrol
    Participant

    I do have them, I was just listing what was relevant to the Mingle Forums but here is the entire list which contains tables from activate and inactive plugins not related to the forums.

    wp_blogs
    wp_blog_versions
    wp_commentmeta
    wp_comments
    wp_forum_forums
    wp_forum_groups
    wp_forum_posts
    wp_forum_reputation_posts
    wp_forum_threads
    wp_forum_usergroup2user
    wp_forum_usergroups
    wp_links
    wp_options
    wp_postmeta
    wp_posts
    wp_site
    wp_sitemeta
    wp_terms
    wp_term_relationships
    wp_term_taxonomy
    wp_usermeta
    wp_users
    (Edit: I just culled unneeded tables from the list, Netweb)

    #125134
    Stephen Edgar
    Keymaster

    Yes, thats what I wanted…. Why do you not have any WordPress tables in your old site?
    Specificity if your users are not stored in `wp_users` where are they stored?

    #125133
    Stephen Edgar
    Keymaster

    If you view the source of the importer browser window, the ‘yellow window’ panel you should see the SQL queries listed in the source…

    There are 4 main queries and they should look like this:

    • SELECT convert(forum_forums.id USING …
    • SELECT convert(forum_threads.id USING …
    • SELECT convert(forum_posts.id USING …
    • SELECT convert(users.ID USING …

    This matches the table structure I listed above and use `wp_` as the table prefix.

    #125132
    srjrol
    Participant

    PHPMyAdmin for the OLD site im importing from:

      wp_forum_forums
      wp_forum_groups
      wp_forum_posts
      wp_forum_reputation_posts
      wp_forum_threads
      wp_forum_usergroup2user
      wp_forum_usergroups

    I hope this is what you were asking, it was not clear to me exactly.
    PHPMyAdmin for the NEW site im importing into:

      wp_bbp_converter_translator
      wp_commentmeta
      wp_comments
      wp_links
      wp_options
      wp_postmeta
      wp_posts
      wp_terms
      wp_term_relationships
      wp_term_taxonomy
      wp_usermeta
      wp_users
    #125131
    Stephen Edgar
    Keymaster

    Ok… What is the table structure showing in phpMyAdmin?
    This would be the old WP/Mingle site (these are based on the DB schema in your first post)

    • wp_commentmeta
    • wp_comments
    • wp_forum_forums
    • wp_forum_groups
    • wp_forum_posts
    • wp_forum_threads
    • wp_forum_usergroup2user
    • wp_forum_usergroups
    • wp_links
    • wp_options
    • wp_postmeta
    • wp_posts
    • wp_terms
    • wp_term_relationships
    • wp_term_taxonomy
    • wp_usermeta
    • wp_users

    The WP site you are importing into

    • wp_commentmeta
    • wp_comments
    • wp_links
    • wp_options
    • wp_postmeta
    • wp_posts
    • wp_terms
    • wp_term_relationships
    • wp_term_taxonomy
    • wp_usermeta
    • wp_users
    #125130
    srjrol
    Participant

    Yes for the newest file but for the import that worked I used the older file and wp_forum_

    #125129
    Stephen Edgar
    Keymaster

    Did you use `wp_` as the table prefix?

    #125128
    srjrol
    Participant

    Using the older version was successful, but the new file gives me this error when importing with or without the users box checked.

    `
    WordPress database error: [Table ‘str1210409063589.wp_forums’ doesn’t exist]
    SELECT convert(forums.id USING “utf8”) AS id,convert(forums.parent_id USING “utf8”) AS parent_id,convert(forums.name USING “utf8”) AS name,convert(forums.description USING “utf8”) AS description,convert(forums.sort USING “utf8”) AS sort FROM wp_forums AS forums LIMIT 0, 100
    `

    Before anything appeared on the site I ran a complete repair with all option checked. After this was done and the wp_users table was exported/imported through phpMyAdmin everything is showing up. Before the users were imported it still worked but all except the admin posts were Anonymous.

    Working:

    • All forums that contained posts are present
    • Forum descriptions
    • The timestamps
    • User account links and info (Forum Role,Topics Started, Replies Created)
    • Topic/Voice counts
    • bbcode is working for text formatting
    • Started By and Freshness authors
    • HTML code was imported and is displaying correctly

    Not working:

    • Parent forums are missing (everything was imported under ‘Forum’)
    • There is a blank post by the original author at the start of each topic causing false count
    • Custom Smileys “
    • Closed Topics are open again.
    • Stick Topics are normal topics
    #125127
    Stephen Edgar
    Keymaster

    What’s next? What works and doesn’t work?

    • Is the imported forum hierarchy and order correct?
    • Sticky topics, eg ‘sticky’ and/or ‘global sticky’ topics?
    • Open or closed topics?
    • Does Mingle use BBCodes eg [b]blod[/b] and do we need to convert them from custom HTML to WordPress/bbPress friendly HTML? If so what BBCodes does Mingle use?

    Are there any other forums, topics or replies behaviour that has not been imported?

    #125126
    Stephen Edgar
    Keymaster

    Ahhh… Yes, if you are importing to the existing install of WordPress that Mingle is using you do not need to import the users as the existing users will have the same mappings.

    If you want to import to a separate WordPress install you will need to import the users.

    That was the reason I originally had each field as `’forum_forums’` and I have switched all the fields back to this so now and you should use the table prefix `wp_` on the import settings. I also updated user mappings, I just copied them in from the bbPress1.php importer as this is in the same boat.

    I also added some extra phpdoc’s to the code and cleaned up some whitespace and changed the code layout style to match the other importers.

    You should be able to use the same links above to download and compare the revisions.

    #125125
    srjrol
    Participant

    Thank you Stephen you are my hero! It appears to have worked flawlessly for the forums, but the users were not included. Here is the error I see when trying the import including users:

    `
    WordPress database error: [Table ‘str1210409063589.wp_forum_user’ doesn’t exist]
    SELECT convert(user.userid USING “utf8”) AS userid,convert(user.password USING “utf8”) AS password,convert(user.salt USING “utf8”) AS salt,convert(user.username USING “utf8”) AS username,convert(user.email USING “utf8”) AS email,convert(user.homepage USING “utf8”) AS homepage,convert(user.joindate USING “utf8”) AS joindate,convert(user.aim USING “utf8”) AS aim,convert(user.yahoo USING “utf8”) AS yahoo FROM wp_forum_user AS user LIMIT 0, 500
    `
    From what I can tell bbpress uses the same registered users as WordPress so I may be able to import those separately.

    On another note, if I import to an existing installation instead of a fresh one would the forums be duplicated or just skipped during the import, so only the topics and replies are added?

    Stephen Edgar
    Keymaster

    Can you create a ticket for this over in trac for this please: https://bbpress.trac.wordpress.org/
    (Adding some ‘numbers’ would also help eg #subscribers & #posts so we can test this ourselves.)

    #125123
    LiveFreeOrDie
    Participant

    I’m having this issue after having the issue in this thread, and following the instructions by mesayre:

    Custom Theme critical fault: Class 'BBP_Theme_Compat' not found…Whut!?

    Did anybody solve this?

    Warning: get_class() called without object from outside a class in /home//public_html/wp-content/themes/theme1/functions.php on line 825

    #125120
    Tippon
    Participant

    I’m setting up a site at http://aberdaremctc.co.uk/forums/ and using BuddyPress and bbPress for the first time. I’ve managed to set everything up ok, but I can’t adjust the colour of the forum.

    I want to either make it the same colour as the rest of my site, or make it transparent, so it fits in a bit better. Can anyone give me some pointers please, even if it’s just the name of the box I want to change so I can search properly 😛

Viewing 25 results - 27,626 through 27,650 (of 64,518 total)
Skip to toolbar