WordPress Version 4.7.1
bbPress Version 2.5.12
Theme: Hayden
https://bible-translations.com/forums/
Hello, I am having great difficulty getting any widgets to appear in my Forums sidebar. I believe now that it relates to the page I have bbPress running on. After initially installing bbPress I later added a new page and added [bbp-forum-index] as directed to do in the documentation. However, when I’ve tried to use the Forums page id to exclude the Forums link from automatically appearing in the footer it did not work. Also I had to use (.bbpress) in my css to style the header of the page as .page-id- was not working.
My issue still occurs when tested using Twenty Seventeen.
i’ve remove my 2.6 aplha and instal 2.6 beta 1 after the fix on an testforum with 120 forums and 500 posts
the install runs fast (few seconds) it looks like there is no converting in the database to convert usermeta to postmeta. There is no big performancechange
i had understand that beta 1 is an good performance update. And makes Bbpress faster for big forums. Am i right?
1. I’ve confirmed this is a wider issue with ALL wordpress registrations. It is not a BBpress issue.
IF SOMEONE ELSE is having trouble with registration emails, you should test general WordPress user registrations:
– make sure “Anyone can register” is checked in Settings/General
– go to yourwebsite.com/wp-admin
– click register
– see if you get the registration email.
2. There’s a discussion from three months ago (~October 2016) about Godaddy blocking WordPress registration emails b/c they think they are spam. https://wordpress.org/support/topic/godaddy-internet-community-ib212-filtering-wordpress-registration-emails-as-spam/
3. There’s a nifty plug-in to check email from your site called “Check Email”. I’m able to get emails sent from this plug in. So it seems likely that I may also be a victim of registration emails being blocked as spam.
—
I will post more results as I get them.
I need help and although I have 2 domains once .com and .de. These two sides I have installed on my Websever in 2 different folders and installed both the same plugins. I would like to have a possibility to connect both sides. So the bbpress on both sides the same user possesses however one one on .de or .com in the profile go can be without the bbpress only over one domain is callable.
The problem I had namely with the test it as multisite run. There bbpress was then only over the main page, ie the first page attainable and the subdomain which I had with a plugin on .de changed had no bbpress profile.
I would like to have the profile with the .de or .com menu bar on top and thus the profiles have to be retrievable on both sides. Is there such a possibility
ok, something has changed, it could be a theme or plugin update
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
This is great news!
Unfortunately I did pretty much hit a fatal error straight away (I reported it and added a patch here – hopefully that was the right place/course of action) though I believe that will only impact those who test this out in a site that was already running bbPress, vs a clean installation.
Per the announcement post:
If you’re going to test 2.6 on a live site, maybe don’t just yet. It runs a database upgrade routine to migrate favorites & subscriptions from usermeta to postmeta, and for large forums that may take a while or possibly lock things up for a bit.
So I’d suggest waiting until we hit beta 2, by then we should be able to better analyse how the upgrade routing has worked for some larger sites, mainly wordpress.org.
i’ve the same problem with 1,1 miljon posts.
Here it takes 4 to 6 seconds to post. Not very fast.
There a serveral topics about this problem.
It looks like the author’s of Bbpress don’t see that as a big problem.
for them Bbpress posting is fast. (i think they testing on a small forum)
ok, so something must have happened to make you lose them. Have you installed other plugins or changed themes?
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
@rajaindian – great let me cut a version for you – I’ll do a minimum of testing and then come back
Hey everyone! Guess what?
bbPress 2.6, Release Candidate 3, is now available for testing.
Download it from here: https://downloads.wordpress.org/plugin/bbpress.2.6-rc-3.zip
Why is this cool? For starters, @jeffr0 may finally climb down off my back and stop giving me grief for how long it’s been since we shipped a major release.
bbPress 2.5.0 in 2014, 3 years ago.
Most people wouldn’t be proud to say that, but… I am. The 2.5 branch of bbPress has been so stable & well received, we were able to take our time with 2.6 and double-down on upstream improvements to WordPress.
bbPress 2.6 will come with:
* Per-forum moderators
* Improved favorites & subscriptions management
* Improved BuddyPress integration
* Performance improvements across the board
* UX improvements to meta-boxes and admin-area tools
* Tighter integration with WordPress’s Dashboard
* Template tweaks & clean-up
* About 110 other things
If you’re going to test 2.6 on a live site, maybe don’t just yet. It runs a database upgrade routine to migrate favorites & subscriptions from usermeta to postmeta, and for large forums that may take a while or possibly lock things up for a bit.
We are already running 2.6 here and on bbPress.org, so enjoy the speedier new posting experience, and we’ll let you know when the next beta is ready!
Hello,
is there a possibility of bulk closing old topics? Eg doing it from dashboard? At the moment, I am only able to do it in a very slow way (open every single topics and close it)…
Or can I set some time limit for automatic closing?
Thank you for any insight!
Best,
Jan
(BBpress, WP – latest versions, site: http://www.fotoguru.cz/foto-forum/)
@robin-w yes I can test it
ok, so
create a directory on your childtheme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpress
where %your-theme-name% is the name of your childtheme
find
wp-content/plugins/bbpress/templates/default/bbpress/form-reply.php
Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/form-reply.php
bbPress will now use this template instead of the original
and you can amend this
so amend this file – copy it to your Pc and use norepad or similar
around line 70 you will see
<?php if ( bbp_allow_topic_tags() && current_user_can( 'assign_topic_tags' ) ) : ?>
replace this with
<?php
$user_id = wp_get_current_user()->ID;
$topic_id = bbp_get_topic_id() ;
$topic_author = bbp_get_topic_author_id( $topic_id ) ;
$is_topic_author = ($topic_author == $user_id ? true : false) ;
if ( bbp_allow_topic_tags() && current_user_can('assign_topic_tags' ) && ($is_topic_author || bbp_is_user_keymaster() ) : ?>
This is untested, and if it doesn’t work – do come back !
untested, but this should do it, come back if not
change line 3 to
if ( is_user_logged_in() && is_bbpress() ) {
and line 6 to
elseif ( !is_user_logged_in() && is_bbpress() ) {
ok, I’ve just loaded your code to my test site, and I can set a user to member and it holds
Suspect either theme or other plugins
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
Hello,
I am getting the following errors:
Warning: ksort() expects parameter 1 to be array, object given in /home/content/p3pnexwpnas10_data01/99/2483599/html/wp-content/plugins/bbpress/includes/core/template-functions.php on line 316
Warning: Cannot modify header information – headers already sent by (output started at /home/content/p3pnexwpnas10_data01/99/2483599/html/wp-content/plugins/bbpress/includes/core/template-functions.php:316) in /home/content/p3pnexwpnas10_data01/99/2483599/html/wp-login.php on line 394
Warning: Cannot modify header information – headers already sent by (output started at /home/content/p3pnexwpnas10_data01/99/2483599/html/wp-content/plugins/bbpress/includes/core/template-functions.php:316) in /home/content/p3pnexwpnas10_data01/99/2483599/html/wp-login.php on line 407
I cannot log in as an admin. My site is artintheblood.net. I should have the latest update of WordPress, but I cannot confirm because I cannot enter the site. Any advice you can offer is greatly appreciated.
you would need to know how to copy a bbpress template, modify it and then load it to your child theme
so you would need FTP access to your site
If that sound possible, the come back and I’ll try to help further
posting this untested code in here just so I don’t lose it !
<?php
$user_id = wp_get_current_user()->ID;
$topic_id = bbp_get_topic_id() ;
$topic_author = bbp_get_topic_author_id( $topic_id ) ;
$is_topic_author = ($topic_author == $user_id ? true : false) ;
if ( bbp_allow_topic_tags() && current_user_can( 'assign_topic_tags' ) && $is_topic_author ) : ?>
Hi, I’ve been working on migrating my large Drupal site to WordPress. I’ve managed to do the majority of the site but now I’m stuck on the forum.
I’m using Drupal 6 and Advanced Forum, I have 26K topics and 700K replies.
I’ve tried running the script on a couple of different local machines, and on my VPS server where I’ve had the most success; the script does the 26K topics smoothly but then hangs pretty early in the replies, around the 700th row. Locally, it gets stuck before. Weird thing is that a couple of times I’ve left it running for longer, eventually it manages to go past that sticking point and just continues extremely slowly.
Also: I’ve read the troubleshooting instructions, which make sense but I don’t understand how to pinpoint the line numbers within the database, specifically these points:
- “Now drop all the rows in the database that are not in the range of rows that failed during import”
- “Once you have your list of offenders and the import has finished delete these rows from the database and test again to make sure it completes without hanging
So question #1: if I look at my database in phpMyAdmin for example, and I know the problem is in rows 700-799 of my replies, how do I locate these rows?
Question #2: Is there a way to know for sure if the problem is performance/memory related or if it’s an encoding issue in a specific row? I don’t know if I should be directing my efforts to solving performance issues or pinpointing problem rows.
And finally question #3: Does anybody here have experience with these issues and would be willing to be hired to do this migration? Contact me if you do please!
Thank you very much for any help you can provide 🙂
me too.
http://korear.net/?forum=test_forum2
click ‘test_forum2’, http 500 error
yet unbelievably there seems to be no-one who has a solution after all the years of BBpress being around.
I suspect that this is because it is the symptom of many problems.
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
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
@rajaindian – I have done some coding, but do you have the ability to test this first on a test site to make sure it works?
I totally forgot about this thread.
I fixed it with css:
nav .menu li a span {
display: none;
font-size: 10px;
font-weight: 400;
opacity: 0.6;
}
But I guess it would be better to edit some code instead?
Url is: http://testsentralen.no/nyfotoblogg2/