Forum Replies Created
-
In reply to: SMF to bbpress
Firstly, you should use bbPress 2.6-alpha, it has a heap of importer improvements, you can get it from this page https://bbpress.org/download/
boards
,log_notify
,topics
,messages
, andmembers
are the only SMF tables you need, these might also be prefixed withsmf_
, e.g.smf_boards
In reply to: Making a Forum ‘Member Only’Use this to get rid of that silly
Private
prefix 🙂https://gist.github.com/ntwb/8662354
p.s. We’ll get that removed from bbPress and/or WordPress proper one of these days ;P
In reply to: Making a Forum ‘Member Only’Use bbPress’ “Private Forums”:
* Private – Only logged in registered users with a forum role can see these forumsIn reply to: Unable to assign forum user rolesExcellent, glad that worked.
The full details and code for bbPress’ fix is here if that kind of thing interests you 🙂
In reply to: Anonymous Posting: Error postingHmm, strange indeed, I’ve not tried Jetpack with an Anonymous forum.
If you want to track this down further creating a ticket on our bug tracking site with some detailed information on how your site is setup, what versions and what features you have enabled of WordPress, bbPress, Jetpack etc and how we’d recreate/simulate your setup.
https://bbpress.trac.wordpress.org/newticket#ticket
Also if you find just a Jetpack issue you can create a ticket for that here:
https://github.com/Automattic/jetpack/issuesIn reply to: Import CrazinessIs the repair tools compatible with php7??
Yes
Does it work if you run all the repair tools except “Recalculate the position of each reply”?
In reply to: PHP 7.0 CompatibilitybbPress compatible with PHP 7 and HHVM
The warnings you see are from a 3rd party library, these issues would only affect you if you are importing forums from another forum software package.
You can see our Travis CI PHP 7 tests here: https://travis-ci.org/ntwb/bbPress/jobs/147321446
(We don’t have 100% code coverage yet but we are progressing nicely)In reply to: Unable to assign forum user rolesDoes it work if you use the dropdown from the bottom of the list instead?
It should, theres a bug with thats been fixed for this in the next bbPress release 🙂
In reply to: Huge bbPress 1.2 – bbPress 2.5.8 importYes, sorry, “Recalculate the position of each reply” is the one I meant, don’t worry about running it. 1) It will take forever and 2) bbPress 1.x never supported “threaded replies” which is what its trying to repair.
In reply to: Huge bbPress 1.2 – bbPress 2.5.8 importThere is no wp-cli commands sadly, it’s a great idea though :+1
Running each tool one by one is the only way at this stage, run each of the “low” impact tools first.
Do not run the “Reply menu order” repair tool though, this is pretty broken at the moment
Nice, I didn’t know about the GitHub mirror :+1
In reply to: Profile editing impossible after upgradeNice catch, I didn’t even think of BuddyPress and it’s 2.6.1.1 version, nice catch Pascal 🙂
In reply to: Installation on OpenShift@oldshaghat Ha, there we go, on our bug tracker already, glad we were on the right path at least. Great either your workaround or the one mentioned in the ticket until fixed 🙂
In reply to: Installation on OpenShift$content_dir (from the constant ‘WP_CONTENT_DIR’) resolves as:
/var/lib/openshift/hexkey/app-root/data/current/wp-content
content_url gives mydomain/wp-content
and the file location starts out as :
/var/lib/openshift/hexkey/app-root/data/plugins/bbpress/templates/default/js/editor.js
That last path, I’d expect that to be
/var/lib/openshift/hexkey/app-root/data/wp-content/plugins/bbpress/templates/default/js/editor.js
i.e. after
data
iswp-content
which is beforeplugins
Plugins are “typically” installed unto the
wp-content
directory, WordPress has some constants available to change these, typicallyWP_CONTENT_DIR
andWP_CONTENT_URL
are used,WP_PLUGIN_DIR
andWP_PLUGIN_URL
are not used anywhere near as much, maybe the Openshift configuration has these defined in thewp-config.php
file in the root directory?https://codex.wordpress.org/Determining_Plugin_and_Content_Directories#Constants
This probably needs further investigation by bbPress, mainly to check the constants
WP_PLUGIN_DIR
andWP_PLUGIN_URL
so these can be used standalone whenWP_CONTENT_DIR
andWP_CONTENT_URL
are not used at all.
@oldshaghat can you check in yourwp-config.php
if any of the above constants are defined please?In reply to: Converter for Dizkus Forumsif it hangs up and I restart, should it continue from where it stopped?
Yes, with a caveat, if the importer is processing
100
rows at a time, you may end up with some duplicates as it will re-import that chunk again.In reply to: Profile editing impossible after upgradeThe latest version of bbPress is 2.5.10, 2.6 will be the next major release and 2.6.1.1 does not, nor will probably ever exist…
They’re all available from https://bbpress.org/plugins/legacy/
In reply to: Installation on OpenShiftbbPress queues up its CSS stylelsheet using WordPress’ standard functions
wp_enque_stylesheet()
so it shouldnn’t cause any issues.I’ve never tried Redhat’s Openshift, nor even knew it was a thing until now.
Do they use a “standard” copy of WordPress or is it modified somehow?
What versions of WordPress and bbPress are you having this issue with?
In reply to: Converter for Dizkus ForumsFingers crossed for your localhost test
In reply to: BBPress slowness saveThe “Notice: bbp_setup_current_user was called incorrectly.” will be caused by either your theme or a plugin.
Try switching theme to Twenty Fifteen to see if the error is fixed, if not deactivate all your plugins except bbPress and then reactivate each plugin one-by-one until the error appears again, then you’ll know which one is causing the problem.
In reply to: Getting Last Topic or Post DateWhat do you have your permalinks set to?
/wp-admin/options-permalink.php
?In reply to: Getting Last Topic or Post DateDid you run the “repair tools” to repair the forums metadata after your “manual import”?
In reply to: BBPress slowness saveDid you run the “bbPress repair tools” after importing?
If not, go to the WordPress Dashboard -> Tools -> Forums and run each of the repair tools
In reply to: How to place top navigation in bbpress topics?I think this is it: https://bbpress.trac.wordpress.org/ticket/2785
In reply to: Forum displays topics of other forumsAll those topics in those forums are “super sticky”
Go to topics dashboard https://example.com/wp-admin/edit.php?post_type=topic
On each of those topics in the list click “Unstick”
Your issue should be fixed now
See https://codex.bbpress.org/getting-started/forum-moderation/common-tasks/#sticking-a-topic for more info