Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 9,976 through 10,000 (of 64,454 total)
  • Author
    Search Results
  • #179508

    In reply to: bbPress Update Error

    pcpro178
    Participant

    Hi Stephen. WordPress and other plugins update without any problems. I have spoken with my web host. They looked at it and said I needed to contact bbPress support. How does uninstalling bbPress modify the database?

    #179506
    pcpro178
    Participant

    Whenever I try to update bbPress I keep getting this error:

    The update process is starting. This process may take a while on some hosts, so please be patient.

    Enabling Maintenance mode…

    Updating Plugin bbPress (1/1)
    Downloading update from https://downloads.wordpress.org/plugin/bbpress.2.5.11.zip…
    Unpacking the update…
    Installing the latest version…
    Removing the old version of the plugin…
    Plugin update failed.

    An error occurred while updating bbPress: The update cannot be installed because we will be unable to copy some files. This is usually due to inconsistent file permissions. templates/default/bbpress/bbpress-templates

    Disabling Maintenance mode…

    All updates have been completed.

    Wordpress Version 4.6.1
    bbPress Version 2.5.10
    Website URL: https://sopearly.com

    #179505
    Stephen Edgar
    Keymaster

    Not so much what I need, it is what you need to help work out what the issue is 😉

    At a quick glance it looks like the bootstrap.css is overwriting the bbPress CSS styles.

    Can you make the topic a “sticky” again please:

    This is the forum correct? EDIT: Removed URL

    #179504
    Anonymous User 15184782
    Inactive

    How do I add any widgets in forum pages created with bbPress?
    Thanks for the help.

    -Andrea

    ico33
    Participant

    I have a WordPress site with inside a BBPRESS forum.

    When in the forum (in a topic or reply) I put the link to a Post in my wordpress site, it shows in bbpress the Image, an exerpt, and at the bottom-left there is the name of my site. In the left corner it whows the WordPress logo. Can I remove that logo? How?

    #179501
    eapapyrus
    Participant

    Hello,

    I test the plugin “GD bbPress Attachments” which looks very interesting, but I can’t get “attached files” in BBPress topics and answers. In fact, I noticed that this button to download is visible when I am logged in to the admin, however I don’t want that forum’s participants have to create an account to add attachments (especially pdf’s files) in their comments.
    Can you help me, please?
    Thanks in advance.

    Best regards,

    #179500
    Stephen Edgar
    Keymaster

    I would suggest trying it on a local setup using MAMP or XAMP

    Then export the forum using WordPress’ “Export” tool, and then the “Import” tool on your site.

    p.s I haven’t tested or seen anyone do a Vanilla install for quite a while and sugget you take a close look at the import o make sure it works. Also try bbPress 2.6-alpha, lots of importer improvements, you can get it from here https://bbpress.org/download

    #179496

    In reply to: Forum List

    deepthyxavier
    Participant

    Thank you for your response.
    Solved the problem by changing the code in plugins/bbpress/includes/common/widgets.php
    made a small change around the line no: 586

    	
    
  • <div class=”user-avatar”><?php bbp_author_link($widget_query->post->ID ); ?></div>
    <div class=”forum-title”>
    post->ID ); ?>”><?php bbp_forum_title( $widget_query->post->ID ); ?>
    <div class=”user-name”><?php bbp_author_link($widget_query->post->ID ); ?></div>
    <div class=”date-time”><?php bbp_topic_last_active_time( $topic_id ); ?></div>
    </div>
  • Thank You..

#179494
vizcano
Participant

@netweb can you help me with my other post?

see here:

help wrong display of topic

thanks

#179493
Stephen Edgar
Keymaster

The theme used here on bbpress.org is called bbpress-org, the theme used on buddypress.org is called buddypress-org, I see a pattern emerging, the theme used on codex.bbpress.org is called codex-bbpress-org, the theme used on codex.buddypress.org is called codex-buddypress-org, there is a pattern here :shakes fist: ;P

Along with the above, each of those themes is a WordPress child theme, the parent theme is named bb-base, as you can see below per the announcement blog posts all the above parent and child themes and plugins used on all the sites were “open sourced” back in March 2014

Open Sourcing bbPress.org

Open Sourcing BuddyPress.org

The above posts also link to the source repos, there is also a new child theme that is now used on the bbPress 2.x powered https://wordpress.org/support/ forums and an even newer evolution of this theme is being worked on for the updated redesign of the WordPress forums, you can even sneak a peak at the new design by visiting this URL: https://wordpress.org/support/?new-theme=1

The updates to all of the above and the migration of the WordPress Support Forums to bbPress 2.x, rather 2.6-alpha is one of the reasons bbPress 2.6 isn’t out yet, it’s because we’re making sure bbPress 2.6 will be the best it possibly can be, and by deploying it on wordpress.org and the ensued battle testing of it that has been taking place we’ve got a few things to do before we can say bbPress 2.6 is ready to be released.

#179489
mikehaceman
Participant

Ok it was hanging for too long so here what i found out:

on the patch page (https://bbpress.trac.wordpress.org/attachment/ticket/3026/3026.patch) you made few mistakes:

1. Line 663 KEY meta_join (meta_key, meta_value) ) {$charset_collate};”;
should finish with ” , ” not ” ;”; ” otherwise it will crash error

2. Line 660 PRIMARY KEY (meta_id),
is duplicated so i guess 660 or 661 can be removed

3. when running import after those changes in wordpress, converter is giving error message:

WordPress database error: [Key column ‘meta_id’ doesn’t exist in table]
CREATE TABLE wp_bbp_converter_translator ( value_id bigint(20) unsigned not null default ‘0’, meta_key varchar(255) null, meta_value varchar(255) null, PRIMARY KEY (meta_id), KEY value_id (value_id), KEY meta_join (meta_key, meta_value) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci

Btw… im not a coder. No clue about php im just applying some logic to what i see 😉

#179484

@mikehaceman – that was it.

See: https://bbpress.trac.wordpress.org/ticket/3026

Can you try what Netweb suggested again, and see if it works now?

#179483

Hey @mikehaceman, sorry you are having trouble.

This isn’t usually necessary, but something between your two installations isn’t cooperating, and in these rare cases it unfortunately requires a bit of scrutiny.

WordPress installations since 4.4 and beyond will try to use utf8mb4 for their character set, and utf8mb4_unicode_ci for their collation. Traditionally these are InnoDB tables, but you’re usually free to decide this for yourself.

utf8mb4 tables have reduced maximum key lengths due to the additional bytes required for each character, so the safe maximum length is reduced to 191. It’s possible we haven’t updated our special converter table to handle this, so I’ll check, and update it if that’s the case.

If you wanted, it may be worth going through all databases, all tables, and all columns, and ensure that your encoding & collations are what you expect them to be. (This means in your old forums, and your new ones.)

[Edit: Updated this post to reflect what we’ve updated in bbPress’s converter]

#179480
mikehaceman
Participant

Thank you for the reply. I have downloaded and installed alpha.
When running import im getting error:

Repair any missing information: Continue
WordPress database error: [Specified key was too long; max key length is 1000 bytes]
CREATE TABLE wp_bbp_converter_translator ( meta_id mediumint(8) unsigned not null auto_increment, value_type varchar(25) null, value_id bigint(20) unsigned not null default ‘0’, meta_key varchar(255) null, meta_value varchar(255) null, PRIMARY KEY (meta_id), KEY value_id (value_id), KEY meta_join (meta_key, meta_value) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci

I tried to find this error and potential solution. I found someone recommending bbpress toolkit. I have installed it and system info is as follow:

WP version 4.6.1
Theme Twenty Sixteen 1.3
PHP version 5.4.19
bbPress version 2.6-alpha-6091
Active Plugins Name and Version
– p1 bbP Toolkit 1.0.6
– p2 bbPress 2.6-alpha

Any idea ?

#179473
Stephen Edgar
Keymaster

A couple of things, if you use bbPress 2.6-alpha that should fix your issues, you can download it from https://bbpress.org/download

You “might” need to update your old SMF database to the latest version, its too difficult to maintain multiple database versions for ~25 or so forum imports we support.

#179469
Stephen Edgar
Keymaster

Per forum moderator support has been added to the upcoming bbPress 2.6

#179462
Robin W
Moderator

There is a plugin

https://wordpress.org/plugins/bbpressmoderation/

It is a bit old, and I haven’t used it, but it may well work

#179461

In reply to: Capabilities and Roles

Chad R. Schulz
Participant

Yeah, the role of moderator would allow this user to edit topics/replies. Check out the prebuilt roles/caps here.

Also, by giving them the role of author they’d gain access to the back-end of your site for other content (create posts, etc.), as well.

These are two separate roles that do two different things.

#179459

In reply to: Login Issue

davidnator
Participant

Thanks for replying Stephen! Interestingly enough, when I went into incognito mode as my second account, I didn’t encounter anything wrong this time within the forums themselves. However, when I went onto the homepage, I got the same glitch again where it logged me out.

After deactivating all plugins besides bbpress and buddypress, I didn’t see the issue come up again.

#179458
xmatter
Participant

Today I changed theme to GeneratePress. Under the “Forums” Page, I changed Content No Sidebar & Full Width Content. Still the Forums page will NOT remove the sidebar. When originally installing bbPress, I created a Forums page with the slug “forums” and that is how its communicating. From there as a diagnostic step, I created another page named Forums2 and added the shortcode to display the forums index. That page would NOT displat it full width (no sidebar) no matter what I tried. Any help would be awesome.

#179447
u_Oi
Participant

It looks you are using a plugin to show that information. Apparently, It won’t be a bbPress problem…

You can fix it with css.

#179446
u_Oi
Participant

Try this code. Put it on the function.php

/* Hide SideBar in bbPress Profiles and Topics*/
function disable_all_widgets( $sidebars_widgets ) {       
    if ( function_exists('is_bbpress') ) {
        if (is_bbpress()) {
            $sidebars_widgets = array(false);
            remove_all_actions('bp_register_widgets');
            unregister_sidebar( 'bp_core_widgets' );
        }
    }
    return $sidebars_widgets;
}

add_filter('sidebars_widgets', 'disable_all_widgets', 1, 1);

You don’t say if You want the full-width to all pages or only to topics, forums, or profiles.

Regards,

#179419
oeroes
Participant

Hi,

the content beneath Latest replies is aligned centered. Is it possible to align the text left? What custom-css I can use to achieve this?
I asked the support of the theme I use (Avada), but they tell me to turn you.

I’m using wordpress 4.6, bbPress-version 2.5.10-6063.
The link to my site is: http://psd2.nl/forum/

Thanks very much for your help!

Best regards,
Oeroes

#179414
suraj1977
Participant

Hi all, I have recently uploaded BBPress forum to [MOD EDIT – site removed in case this is an seo spam] site on my root domain. And I want to allocate role of moderator to another site member. Is there any way to allocate him this role from beginning itself?

Kindly guide me as we are new to this plugin.

Also, kindly guide if we need to create subdomain dedicated for forums especially for security reasons.

Thanks in advance,

Suraj Awadhani

#179400
crmentality
Participant

Hi. I would like to create a forum using BBpress but I do not wish the forum to be time sensitive (no dates or time shown).

How can I do this?

Thanks

Viewing 25 results - 9,976 through 10,000 (of 64,454 total)
Skip to toolbar