Search Results for 'test'
-
Search Results
-
Topic: bbPress 2.5.13 doesn’t work.
Hello guys, i’ve created a website on free hosting. Installed latest version of WP (4.8.1), installed some plugins, theme, everything works perfectly. But, when i installed bbPress 2.5.13, i saw that i wasn’t tested on this version of WB, but i tried. As result: when i go to mydoman.com/forums/ it shows me ERROR 500. Also, when i go in dashboard >> Forums >> List of Forums (maybe it’s named so, cuz i’m using russian version of WP) it also shows me ERROR 500.
I Decided to downgrade (reinstall) the entire WP without any plugin and theme. I choosed version 4.7.5 as it says that is tested on bbPress 2.5.13. So, i installed WP, installed bbPress, and tried to go to dashboard >> Forums >> List of Forums and it returns me this:

if image is too small, here’s the link to it: http://i.imgur.com/UPirh3p.png
Idk what to do and what to try.
Thanks for helping.Topic: Fatal error: Uncaught Error:
Hello,
i jsut got into WordPress and wanted to use bbPress.
So I installed bbPress and it lets me change my Preferences under Preferences–> Forum.
I also can create new Forums and they show up in my bbPress Widgeds.However everytime i open the Forum Page an Error occurs. (I copyed the entire Errormessage below).
I use WordPress on my xampp Server (localy) for testing.Also i deactivated all other plugins and changed my theme to wordpress-standard. No Luck though. Im using shapely Theme
If anyone could help it would be highly aprichiated.
Fatal error: Uncaught Error: [] operator not supported for strings in C:\xampp\apps\wordpress\htdocs\wp-content\plugins\bbpress\includes\forums\functions.php:1800 Stack trace: #0 C:\xampp\apps\wordpress\htdocs\wp-includes\class-wp-hook.php(298): bbp_pre_get_posts_normalize_forum_visibility(Object(WP_Query)) #1 C:\xampp\apps\wordpress\htdocs\wp-includes\class-wp-hook.php(323): WP_Hook->apply_filters(”, Array) #2 C:\xampp\apps\wordpress\htdocs\wp-includes\plugin.php(515): WP_Hook->do_action(Array) #3 C:\xampp\apps\wordpress\htdocs\wp-includes\class-wp-query.php(1683): do_action_ref_array(‘pre_get_posts’, Array) #4 C:\xampp\apps\wordpress\htdocs\wp-includes\class-wp-query.php(3248): WP_Query->get_posts() #5 C:\xampp\apps\wordpress\htdocs\wp-includes\class-wp.php(617): WP_Query->query(Array) #6 C:\xampp\apps\wordpress\htdocs\wp-includes\class-wp.php(735): WP->query_posts() #7 C:\xampp\apps\wordpress\htdocs\wp-includes\functions.php(955): WP->main(Array) #8 C:\xampp\apps\wordpress\htdocs\wp-admin\includes\post.php(1072): wp(A in C:\xampp\apps\wordpress\htdocs\wp-content\plugins\bbpress\includes\forums\functions.php on line 1800
Antivirus software is a computer software to detect and remove malicious software. Antivirus software was developed to remove the computer virus. antivirus software are powerful pieces of software that are essential computers. An antivirus is an essential part of multi-layered security strategy. The antivirus software relies on virus definitions to detect malware. Antivirus companies have to continually keep-up-to-date with the latest piece of malware, releasing definition updates that ensure the malware is caught by their program. Customer need to safeguard from the malware, restrain your device from some unknown websites, all along customer’s confidentiality transaction , parents control etc user have demand the technical suggestion to get the solution. There are avalanche of antivirus are available in the market but only minority of antivirus will follow all obligation accurately. User need some professional touch that is why our company provide user the antivirus support team. Antivirus support team arrange lots of service like avg support and Norton Support team. AVG Antivirus is computer software by AVG technologies. It is available for window, mac OS , android. Our company provides AVG antivirus free from window, mac and android. There user can easily download, install, update and use. For Avg Customer Service and Avg Technical Support user must need to purchase some premium plan.
WP : 4.8
BBpress : 2.5.13Website : Only on private access (I use a test version of my website for all upgrade before to mupgrade by official website)
After the upgrade (from 2.5.12 version) my sidebar has disappeared on my forums…
What can I do?
Thanks for your support to fix it.
Benoit
Hi,
I am running the latest bbpress 2.5 (not 2.6 yet) and today updated buddypress.and after the buddypress update avatars do not show anymore in bbpress forums.
every user has the default blank avatar.,they avatars still show, when exploring buddypress..
if it is any help. it is WordPress MU version.
has anyone else got the same problem? or managed to resolve it?
tnankskris
Hello,
WordPress version: 4.8 | bbPress version: 2.5.13
when I try to visit a profile I find myself endig up on the 404 page. It happens with every account but one – mine. Its the oldest account on this installation. But that’s all. I tried it with other Users who got the exact same rights I have and so on but nothing changes.
I tried:
– different themes
– every possible changes in user roles
– deactivating from pluginsBut the strange and unique thing in my case is that there is one account that isn’t facing any problems.
I can’t finde a solution. Would be awesome if anybody could help me out with that!
You can test it here: https://netzwerk-schienenlaerm.de/foren/thema/1-phase-der-oeffentlichkeitsbeteiligung-des-eba-im-rahmen-der-eu-umgebungslaermrichtlinie/
Thanks!
Jonas
WordPress 4.8
PHP 7
bbpress 2.5.12
buddypress 2.8.2I’m using group types on my bbpress/buddypress site. I’ve had to get creative when it comes to breadcrumbs. There was one minor changes to the bbp_get_breadcrumb function that I had to make to make the breadcrumbs work. I copied the function into my functions.php and added a filter. I’m getting an error/notice:
Notice: Use of undefined constant mod_bbp_get_breadcrumb – assumed ‘mod_bbp_get_breadcrumb’The function is doing exactly what I want it to do. but this error is showing up. The functions is originally located in bbpress/includes/common/template.php file
here’s the code:
<?php
function mod_bbp_get_breadcrumb( $args = array() ) {// Turn off breadcrumbs
if ( apply_filters( ‘bbp_no_breadcrumb’, is_front_page() ) )
return;// Define variables
$front_id = $root_id = 0;
$ancestors = $crumbs = $tag_data = array();
$pre_root_text = $pre_front_text = $pre_current_text = ”;
$pre_include_root = $pre_include_home = $pre_include_current = true;/** Home Text *********************************************************/
// No custom home text
if ( empty( $args[‘home_text’] ) ) {$front_id = get_option( ‘page_on_front’ );
// Set home text to page title
if ( !empty( $front_id ) ) {
$pre_front_text = get_the_title( $front_id );// Default to ‘Home’
} else {
$pre_front_text = __( ‘Home’, ‘bbpress’ );
}
}/** Root Text *********************************************************/
// No custom root text
if ( empty( $args[‘root_text’] ) ) {
$page = bbp_get_page_by_path( bbp_get_root_slug() );
if ( !empty( $page ) ) {
$root_id = $page->ID;
}
$pre_root_text = bbp_get_forum_archive_title();
}/** Includes **********************************************************/
// Root slug is also the front page
if ( !empty( $front_id ) && ( $front_id === $root_id ) ) {
$pre_include_root = false;
}// Don’t show root if viewing forum archive
if ( bbp_is_forum_archive() ) {
$pre_include_root = false;
}// Don’t show root if viewing page in place of forum archive
if ( !empty( $root_id ) && ( ( is_single() || is_page() ) && ( $root_id === get_the_ID() ) ) ) {
$pre_include_root = false;
}/** Current Text ******************************************************/
// Search page
if ( bbp_is_search() ) {
$pre_current_text = bbp_get_search_title();// Forum archive
} elseif ( bbp_is_forum_archive() ) {
$pre_current_text = bbp_get_forum_archive_title();// Topic archive
} elseif ( bbp_is_topic_archive() ) {
$pre_current_text = bbp_get_topic_archive_title();// View
} elseif ( bbp_is_single_view() ) {
$pre_current_text = bbp_get_view_title();// Single Forum
} elseif ( bbp_is_single_forum() ) {
$pre_current_text = bbp_get_forum_title();// Single Topic
} elseif ( bbp_is_single_topic() ) {
$pre_current_text = bbp_get_topic_title();// Single Topic
} elseif ( bbp_is_single_reply() ) {
$pre_current_text = bbp_get_reply_title();// Topic Tag (or theme compat topic tag)
} elseif ( bbp_is_topic_tag() || ( get_query_var( ‘bbp_topic_tag’ ) && !bbp_is_topic_tag_edit() ) ) {// Always include the tag name
$tag_data[] = bbp_get_topic_tag_name();// If capable, include a link to edit the tag
if ( current_user_can( ‘manage_topic_tags’ ) ) {
$tag_data[] = ‘‘ . esc_html__( ‘(Edit)’, ‘bbpress’ ) . ‘‘;
}// Implode the results of the tag data
$pre_current_text = sprintf( __( ‘Topic Tag: %s’, ‘bbpress’ ), implode( ‘ ‘, $tag_data ) );// Edit Topic Tag
} elseif ( bbp_is_topic_tag_edit() ) {
$pre_current_text = __( ‘Edit’, ‘bbpress’ );// Single
} else {
$pre_current_text = get_the_title();
}/** Parse Args ********************************************************/
// Parse args
$r = bbp_parse_args( $args, array(// HTML
‘before’ => ‘<div class=”bbp-breadcrumb”><p>’,
‘after’ => ‘</p></div>’,// Separator
‘sep’ => is_rtl() ? __( ‘‹’, ‘bbpress’ ) : __( ‘›’, ‘bbpress’ ),
‘pad_sep’ => 1,
‘sep_before’ => ‘<span class=”bbp-breadcrumb-sep”>’,
‘sep_after’ => ‘</span>’,// Crumbs
‘crumb_before’ => ”,
‘crumb_after’ => ”,// Home
‘include_home’ => $pre_include_home,
‘home_text’ => $pre_front_text,// Forum root
‘include_root’ => $pre_include_root,
‘root_text’ => $pre_root_text,// Current
‘include_current’ => $pre_include_current,
‘current_text’ => $pre_current_text,
‘current_before’ => ‘<span class=”bbp-breadcrumb-current”>’,
‘current_after’ => ‘</span>’,
), ‘get_breadcrumb’ );/** Ancestors *********************************************************/
// Get post ancestors
if ( is_singular() || bbp_is_forum_edit() || bbp_is_topic_edit() || bbp_is_reply_edit() ) {
$ancestors = array_reverse( (array) get_post_ancestors( get_the_ID() ) );
}// Do we want to include a link to home?
if ( !empty( $r[‘include_home’] ) || empty( $r[‘home_text’] ) ) {
$crumbs[] = ‘‘ . $r[‘home_text’] . ‘‘;
}// Do we want to include a link to the forum root?
if ( !empty( $r[‘include_root’] ) || empty( $r[‘root_text’] ) ) {// Page exists at root slug path, so use its permalink
$page = bbp_get_page_by_path( bbp_get_root_slug() );
if ( !empty( $page ) ) {
$root_url = get_permalink( $page->ID );// Use the root slug
} else {
$root_url = get_post_type_archive_link( bbp_get_forum_post_type() );
}// Add the breadcrumb
$crumbs[] = ‘‘ . $r[‘root_text’] . ‘‘;
}// Ancestors exist
if ( !empty( $ancestors ) ) {// Loop through parents
foreach ( (array) $ancestors as $parent_id ) {// Parents
$parent = get_post( $parent_id );// Skip parent if empty or error
if ( empty( $parent ) || is_wp_error( $parent ) )
continue;// Switch through post_type to ensure correct filters are applied
switch ( $parent->post_type ) {// Forum
case bbp_get_forum_post_type() :
// PAA – modified
//echo ‘forum title’. bbp_get_forum_title( $parent->ID) ;
$test_title = bbp_get_forum_title( $parent->ID) ;
if ($test_title == ‘Group Forums’){
$base_url = bp_get_root_domain();
$crumbs[] = ‘Groups‘;}
else
{$crumbs[] = ‘ID ) ) . ‘” class=”bbp-breadcrumb-forum”>’ . bbp_get_forum_title( $parent->ID ) . ‘‘; };break;
// Topic
case bbp_get_topic_post_type() :
$crumbs[] = ‘ID ) ) . ‘” class=”bbp-breadcrumb-topic”>’ . bbp_get_topic_title( $parent->ID ) . ‘‘;
break;// Reply (Note: not in most themes)
case bbp_get_reply_post_type() :
$crumbs[] = ‘ID ) ) . ‘” class=”bbp-breadcrumb-reply”>’ . bbp_get_reply_title( $parent->ID ) . ‘‘;
break;// WordPress Post/Page/Other
default :
$crumbs[] = ‘ID ) ) . ‘” class=”bbp-breadcrumb-item”>’ . get_the_title( $parent->ID ) . ‘‘;
break;
}
}// Edit topic tag
} elseif ( bbp_is_topic_tag_edit() ) {
$crumbs[] = ‘‘ . sprintf( __( ‘Topic Tag: %s’, ‘bbpress’ ), bbp_get_topic_tag_name() ) . ‘‘;// Search
} elseif ( bbp_is_search() && bbp_get_search_terms() ) {
$crumbs[] = ‘‘ . esc_html__( ‘Search’, ‘bbpress’ ) . ‘‘;
}/** Current ***********************************************************/
// Add current page to breadcrumb
if ( !empty( $r[‘include_current’] ) || empty( $r[‘current_text’] ) ) {
$crumbs[] = $r[‘current_before’] . $r[‘current_text’] . $r[‘current_after’];
}/** Separator *********************************************************/
// Wrap the separator in before/after before padding and filter
if ( ! empty( $r[‘sep’] ) ) {
$sep = $r[‘sep_before’] . $r[‘sep’] . $r[‘sep_after’];
}// Pad the separator
if ( !empty( $r[‘pad_sep’] ) ) {
if ( function_exists( ‘mb_strlen’ ) ) {
$sep = str_pad( $sep, mb_strlen( $sep ) + ( (int) $r[‘pad_sep’] * 2 ), ‘ ‘, STR_PAD_BOTH );
} else {
$sep = str_pad( $sep, strlen( $sep ) + ( (int) $r[‘pad_sep’] * 2 ), ‘ ‘, STR_PAD_BOTH );
}
}/** Finish Up *********************************************************/
// Filter the separator and breadcrumb
$sep = apply_filters( ‘bbp_breadcrumb_separator’, $sep );
$crumbs = apply_filters( ‘bbp_breadcrumbs’, $crumbs );// Build the trail
$trail = !empty( $crumbs ) ? ( $r[‘before’] . $r[‘crumb_before’] . implode( $sep . $r[‘crumb_after’] . $r[‘crumb_before’] , $crumbs ) . $r[‘crumb_after’] . $r[‘after’] ) : ”;return apply_filters( ‘mod_bbp_get_breadcrumb’, $trail, $crumbs, $r );
}add_filter( ‘bbp_get_breadcrumb’,mod_bbp_get_breadcrumb, 98, 2);
?>At this point I’m not sure what else to do or if it’s ok to ignore the warning

