Forum Replies Created
-
In reply to: What is Username displayed by default?
Right, clear as mud then π But this does sound like this is the expected behaviour π
Trivia: bbPress.org theme here shows both @username and “Display Name” because people used to try and ping me via
@Stephen Edgar
, rather than@netweb
, hence we added both to the template loops πIn reply to: Documented import from snitz access database@ sziban Cool, 1st up, you should use the development version bbPress 2.6-alpha, it has some improvements for anonymous users, you can get it from https://bbpress.org/download/
Take a look at the phpBB and SMF importers for good examples:
https://bbpress.trac.wordpress.org/browser/trunk/src/includes/admin/converters/phpBB.php
https://bbpress.trac.wordpress.org/browser/trunk/src/includes/admin/converters/SMF.phpIn particular, the following was added to add support to import topics and replies from “anonymous” users.
So rather than trying to import each of your legacy anonymous users as WordPress users the changes above will assign each of them to the built in bbPress anonymous user, and assign the “legacy” “nickname” to the imported topic or reply, its kind of cool and I’m pretty sure it will do what you are after.
Let me know how it goes or any other questions you may have π
In reply to: phpbb to bbpress converter and best practice?@abiliocaetano, thanks for this, I added it to our codex article here.
In reply to: What is Username displayed by default?Did I get it backwards? I confused myself when testing this. :/
Can you test this with a new user please and create the appropriate ticket based on the results if needed π
β’ When a new user is created they *only* have a username
β’ The user does *not* have a first and last name
β’ Once a user adds their first and last name the username is still used
β’ Now, if a user goes to their profile and *chooses* their display name to *use* their first and last name then that is that users *choice*In reply to: What is Username displayed by default?bbPress uses the users username by default, a user can change their own profile to use first/last name if they wish via the “Display name” on the users edit profile screen.
In reply to: vbulletin 3.x importThe
βββββββ-
is typically due to WordPress losing its database connection πIf you open up a second tab to your
/wp-admin
page and occasionally refresh that page (30-60mins) that should prevent that from happening again.In reply to: Anyway to auto-populate a forum structure?You can also use the built in export WordPress WXR (which is just an XML file), and WordPress Importer plugin.
In reply to: Adding structured data to topic pagesIf you want to customise your site to match any of these formats then creating a child theme with the template changes that you’ve already made is the way to go.
And just some FYI on on this stuff from a bbPress context, historically bbPress has supported Microformats as this is also what WordPress uses and most of the search engines also support, Google included.
There is a long standing ticket in bbPress to get its breadcrumbs to work better with search engines though the fact as noted in that ticket is that none of the proposed specifications have been finalised, as none of the HTML5 microdata, Google Microdata Breadcrumbs or Bing Microdata Breadcrumbs specs are complete so we’ll probably go with the accessibility proposal instead.
In reply to: Anyway to auto-populate a forum structure?You can also use
bbp_create_initial_content()
with somebbp_parse_args()
to generate your content, bbPress uses this to crate some sample/initial content when installing on multisite installs.https://bbpress.trac.wordpress.org/browser/branches/2.5/includes/core/update.php#L174
I just read that #1550 ticket, last time I read it I think it made little to no sense π
In reply to: Imported phpBB, where are the forums?Awesome π
In reply to: Converter for Dizkus ForumsFirstly, awesome job at what you’ve done so far π
I just sent through a pull request with some basic/minor changes
These are the things I noticed when comparing the DB schema to the importer:
Categories:
β’ This will be tricky as they are in a different tablenuke_dizkus_categories
, can you manually create these and add the forums to them later after import etc?Forum subscriptions:
β’ Your schema suggestsnuke_dizkus_subscription
rather than thiszk_dizkus_forum_subscription
Topic Author IP:
β’ With some juggling of the phpBB query this should be possible I thinkTopic content:
β’ This doesn’t quite look right, have you had issues with multiple same topics imported when you run the import at the moment?Topic favorites:
β’ It looks like there are no topic favorites, though I do see forum favorites innuke_dizkus_forum_favorites
, unless the value stored inuser_favorites
stored in thenuke_dizkus_users
table is for user favorites maybePasswords:
β’ Passwords are hard πPassword verify class:
β’ If password importing works this field should match the importer class namedizkusZK
In reply to: Converter for Dizkus ForumsAwesome, I’ll take a look a bit later, should be all I need now to get most of it up and running for you
In reply to: Converter for Dizkus ForumsI did spend several hours trying to modify the phpBB converter to work with the Dizkus database tables before coming here. Was able to get it partly working but was losing meta data like poster name, post time, and it seemed the posts (replies) werenβt always assigned to the right topic.
If you still have the code for what you did here could you also upload that please, will save me some time and help me out quite a bit if you could π
In reply to: Converter for Dizkus ForumsActually it looks like it is Zikula v1.3 or v1.4 and Dizkus module v3.1 or v4.0
Let me know which version and I’ll take a look at the database schema to help match up the missing meta data you mentioned ( meta data like poster name, post time)
In reply to: Converter for Dizkus ForumsIs the latest version of Dizkus v1.3?
Does this look like the source code? https://github.com/paustian/Dizkus
The partial work that you did could you post the source code to GitHub please and I’ll take a look https://gist.github.com/
In reply to: Converter for Dizkus ForumsI’ve never heard of Dizkus π
You could try making some more changes to the phpBB importer yourself if it already partially works:
Also checkout both of these for SMF and phpBB for the upcoming bbPress 2.6 release.
https://bbpress.trac.wordpress.org/browser/trunk/src/includes/admin/converters/phpBB.php
https://bbpress.trac.wordpress.org/browser/trunk/src/includes/admin/converters/SMF.phpIn reply to: Import data from Drupal 6.x Advanced forumCool…
Looking into supporting importing avatars to at least support BuddyPress’ avatars out of the box is one of the many things on my todo list that I just haven’t got to yet, maybe I’ll take a look at it for bbPress 2.7, 2.6 is close to being out the door so fingers crossed for 2.7 π
In reply to: Import data from Drupal 6.x Advanced forumOn the avatars front, maybe this will help?
https://github.com/CybMeta/kunena-attachments-to-bbpressIn reply to: Import data from Drupal 6.x Advanced forumIf you look at the phpBB importer it has the
callback_html
and parses a bunch or regular expressions to manipulate the previous BBCode or HTML strings, will that work for you?https://bbpress.trac.wordpress.org/browser/trunk/src/includes/admin/converters/phpBB.php#L934
In reply to: Imported phpBB, where are the forums?I think so, I doubt you’d have to downgrade though 2.6 is pretty stable and hopefully be released really soon π
In reply to: Import data from Drupal 6.x Advanced forumAwesome π
Just to add that the standard Drupal forums module for Drupal 7 was included in bbPress 2.5, I’m not sure if there is anything in that that you may not have in your Drupal 6.
Also, two of the importers SMF and phpBB have some cool new things for the upcoming bbPress 2.6, importing favourites, subscriptions, anonymous topics/replies/posts, you may want to have a look there to see if they help in importing more data from Drupal
https://bbpress.trac.wordpress.org/browser/trunk/src/includes/admin/converters/phpBB.php
https://bbpress.trac.wordpress.org/browser/trunk/src/includes/admin/converters/SMF.phpIn reply to: Help with custom bbpress Like/Dislike pluginCool, as its no biggie, I’ve added your site to our list here: https://bbpress.org/about/examples/ π
In reply to: Help with custom bbpress Like/Dislike pluginOh, can’t seem to find it, not in the spam or moderation queue Β―\_(γ)_/Β―
In reply to: Help with custom bbpress Like/Dislike pluginp.s. I like what you’re doing where with your homepage and bbPress http://www.utehub.com π