Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 2,426 through 2,450 (of 11,571 total)
  • Author
    Search Results
  • #179900
    Pascal Casier
    Moderator

    What version of bbPress are you using ? Did you upgrade to the latest 2.5 ?
    Pascal.

    #179894
    Schoelje
    Participant

    Hi senatorman,

    My apologies for the late reply. I haven’t looked at this for quite some time and I haven’t tested it on any other situation/environment than my own.

    If you still need it: I usually use phpMyAdmin to export data to a csv file.

    #179892
    mohamedouqas
    Participant

    Hey Everybody .
    im using wordpress with bbpress plugin i can’t send followup emails or any other email except a new user notification email .
    my email tests and new subscription email works but any other email service does not( follow up or new topics email, new discussion … )
    wp-mail-smtp to test emails
    im using wordpress 4.6.1
    bbpress: 2.5.11
    Can you please help me solve this problem
    thank you

    inderdeepbajwa
    Participant

    I have the latest 4.7 version of WordPress and installed the latest bbPress plugin (updated 4 days ago).

    When I click on Forums->All forums, in the WP Dashboard, it shows me a full white blank page. Upon typing website.com/forums, it shows a blank page. The newly created forum link website.com/forums/forum/forum is also completely blank. I’ve tried this on two themes – Twenty Sixteen and Twenty Seventeen. Both showed blank page.

    I tried creating a new page and pasting [bbp-forum-index] but that gave me the following code as the result:
    {{ partial “head.html” . }}
    {{ partial “header.html” . }} {{ partial “sidebar.html” . }} {{ partial “post/header-cover.html” . }}
    {{ $paginator := .Paginate (where .Data.Pages “Type” “post”) }} {{ range $paginator.Pages }} {{ .Render “summary” }} {{ end }} {{ partial “pagination.html” . }}
    {{ partial “footer.html” . }}
    {{ partial “foot.html” . }}

    #179835
    #179800
    Stephen Edgar
    Keymaster

    Can you add some more details please?

    Does this happen if you do this yourself with a new test user?

    If you could add some reproducible steps like these:

    1. Create a new user testuser
    2. Add the participant role to testuser
    3. Signed in as admin I create a topic xyz
    4. Log out of admin, login as testuser
    5. Reply to topic xyz

    Actual Result:

    I see the reply author as….

    Expected Result:

    I expected to see the reply author as….

    #179771
    OFS
    Participant

    Hi,

    So we’ve tried everything & can’t understand why this area of a person’s profile isn’t showing the design of the theme.

    http://www.awesomescreenshot.com/image/1940542/c825d5493b4b28be3f483097398658d0

    It also produces a 404 status.

    We tested it on the 2015 theme & it didn’t work there either.

    Please help.

    Thanks

    #179761

    In reply to: Fetch different avatar

    ysiggen
    Participant

    Now that you state the obvious I didn’t even think of looking around that. Yes, BP’s profile gets displayed when someone clicks on a member while browsing the bbpress forums.

    The thing is, I guess, that the wp profile image stays the default and “true” one. Ideally, either wp should sync its avatar with BP or the other way around (BP fetches wp avatar and uses that one).

    Now as I’d like to keep it as it’s built, since it is quite good looking already, I mean I’d like to fully use the BP profile (that bbpress redirects to, as you pointed out), I’m not too sure of what would be the fastest or/and easiest:

    • Do the wp profile images gets synced with the BP profile image (since it has one on its own)
    • Tell bbpress to go fetch the BP profile image, since my users only have access to their BP profile

    I looked for plugins that do either, already, I didn’t quite find my fit yet. And I was hoping someone would have done something similar or knows enough to talk me roughly through what I need to do in order to achieve what I want to do.

    Either way, if anyone has some clue, that would be nice.

    If there is no luck at it, I guess I’ll be trying to do it by myself, but as I am no php expert and don’t really know much about either wp, bbpress or BP, I’ll have to get going with more reading first.

    Thank’s for your reply Setphen, it lit a bulb on my side.

    #179732
    Stephen Edgar
    Keymaster

    I’m not seeing any issues with this @piratesjv81

    If you look at this screenshot https://cloudup.com/c-PvKdbwPl0

    The forum testtesttest is a sub-forum of the revision tests forum and they both have the subscribe link to subscribe to the forums

    #179724
    horizon70s
    Participant

    I think this may be related to a couple other complaints, but there’s no menus once there’s an install on WP 4.7

    I’ve tested on 2 different vanilla installs, on 2 different domains.

    Thanks

    #179687
    AITpro
    Participant

    Also I don’t know if this function I created to add capabilities did anything in combination with deactivating and activating bbPress, but this function was in my Theme functions.php file during the process of doing the deactivation and activation. šŸ˜‰

    // bbPress Keymaster capabilities fix
    function aitpro_add_caps_bbp_keymaster_fix() {
    
    $capabilities = array( 
    		'keep_gate', 
    		'spectate', 
    		'participate', 
    		'moderate', 
    		'throttle', 
    		'view_trash', 
    		'publish_forums', 
    		'edit_forums', 
    		'edit_others_forums', 
    		'delete_forums', 
    		'delete_others_forums', 
    		'read_private_forums', 
    		'read_hidden_forums', 
    		'publish_topics', 
    		'edit_topics', 
    		'edit_others_topics', 
    		'delete_topics', 
    		'delete_others_topics', 
    		'read_private_topics', 
    		'publish_replies', 
    		'edit_replies', 
    		'edit_others_replies', 
    		'delete_replies', 
    		'delete_others_replies', 
    		'read_private_replies', 
    		'manage_topic_tags', 
    		'edit_topic_tags', 
    		'delete_topic_tags', 
    		'assign_topic_tags' 
    		//'test' 
    		);
    
        $role = get_role( 'bbp_keymaster' );
    	
    	foreach( $capabilities as $cap ) {
            $role->add_cap( $cap );
    	}
    }
    
    add_action( 'admin_init', 'aitpro_add_caps_bbp_keymaster_fix');
    #179683
    AITpro
    Participant

    Eureka I found where the problem is. Yeah!

    On my Live site this is the DB value for wp_options > wp_user_roles is missing the “keep_gate” and all other capabilities.

    Live site DB value: s:13:"bbp_keymaster";a:2:{s:4:"name";s:9:"Keymaster";s:12:"capabilities";a:0:{}}

    Local Dev test site DB value: s:13:"bbp_keymaster";a:2:{s:4:"name";s:9:"Keymaster";s:12:"capabilities";a:29:{s:9:"keep_gate";b:1;s:8:"spectate";b:1;s:11:"participate";b:1;s:8:"moderate";b:1;s:8:"throttle";b:1;s:10:"view_trash";b:1;s:14:"publish_forums";b:1;s:11:"edit_forums";b:1;s:18:"edit_others_forums";b:1;s:13:"delete_forums";b:1;s:20:"delete_others_forums";b:1;s:19:"read_private_forums";b:1;s:18:"read_hidden_forums";b:1;s:14:"publish_topics";b:1;s:11:"edit_topics";b:1;s:18:"edit_others_topics";b:1;s:13:"delete_topics";b:1;s:20:"delete_others_topics";b:1;s:19:"read_private_topics";b:1;s:15:"publish_replies";b:1;s:12:"edit_replies";b:1;s:19:"edit_others_replies";b:1;s:14:"delete_replies";b:1;s:21:"delete_others_replies";b:1;s:20:"read_private_replies";b:1;s:17:"manage_topic_tags";b:1;s:15:"edit_topic_tags";b:1;s:17:"delete_topic_tags";b:1;s:17:"assign_topic_tags";b:1;}}

    #179621

    In reply to: bbPress like Flarum

    akgt
    Participant

    another minor update, using the latest files uploaded yesterday directly into the patent theme, things work better, still needs some updates but works better,

    Maybe you have your bbpress setup slightly different, what are you bbpress settings ?

    user settings wont work with buddypress active in this theme.
    it changes url forums/users/Adam/ to members/Adam/edit/

    also doing this make not difference.

    Maybe theme put styles in <?php wp_footer(); ?>
    try to remove <?php wp_footer(); ?> from bbpress.php and view did work.

    #179618
    u_Oi
    Participant

    I tested the site and runs fast…

    #179609
    senatorman
    Participant

    It look like the authors off BBpress ignore an very big problem that the performance goes bad on big forums.
    They can’t test this, because they have no big testforum, so they think BBpress is fast enough, but it isn’t

    PLEASE PUT YOUR TIME IN THIS PROBLEM, IF YOU WILL MAKE BBPRESS GROW.

    Take a look of my forum. 1100000 posts, 72000 topics, 50000 members.

    http://www.opel-forum.nl

    #179592
    reedy
    Participant

    Those patches are over two years old. I’m running the latest version of bbpress and still have this issue. Do I need to apply the patches above to core? Why aren’t they in the current stable release?

    themichaelglenn
    Participant

    @consultjoseph @siparker Sorry it took me so long to respond to you guys.

    I am using the version of this plugin I put on Github in a beta test of a site I’m moving from Joomla to WordPress. I’m using WordPress 4.6.1 and bbPress 2.5.11.6121 and am using a child theme of Twentysixteen.

    The biggest thing is that with the version of the plugin I’m using, bbPress Settings need to be adjusted:

    1. Go into Forum Settings and set “Forum Root” to “forums”
    2. UN-check Forum Prefix – you do NOT want to prefix all forum content the Forum Root Slug
    3. Make sure that the Single Forum Slug for “Forum” is “forum”

    Next, go into Permalink Settings:

    1. Under Common Settings, select “Post Name”
    2. Save changes

    If you don’t set or RESET your permalinks, you will get 404s! But if you reset your permalinks after activating the plugin, everything will work.

    I expect to take my beta site live within a week or so; when I do I’ll provide a link to the permanent live site so you can see the bbPress URLs in action.

    #179579
    Robin W
    Moderator

    that pipe is from the admin links and seems to be an extra one.- not sure why this appears for you – 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.

    That will hopefully tell you what is causing it

    #179569

    In reply to: Forum style / setup

    Thomas_k
    Participant

    @robin-w

    I deleted all cache via the wp fastest cache.

    Can you add me on Skype: thomask1993@hotmail.com

    Thanks

    #179566

    In reply to: bbPress like Flarum

    akgt
    Participant

    Ive just tried testing the theme on my site, I followed the instuctions but it does not look the same.
    also is it possible to have the search and user panel below the main menu ?

    forum image
    topic image

    #179556
    Robin W
    Moderator

    ok, untested but try

    wp-content/plugins/bbpress\templates\default\bbpress\form-search.php

    copy to your PC and

    line 17

    <input tabindex="<?php bbp_tab_index(); ?>" class="button" type="submit" id="bbp_search_submit" value="<?php esc_attr_e( 'Search', 'bbpress' ); ?>" />

    change to

    <input tabindex="<?php bbp_tab_index(); ?>" class="button" type="submit" id="search_submit" value" />

    save this file to

    ie wp-content/themes/%your-theme-name%/bbpress/form-search.php

    where %your-theme-name% is the name of your theme

    #179552

    In reply to: Forum style / setup

    Robin W
    Moderator

    suspect that wp fastest cache might be saving a version.

    #179542

    In reply to: Forum style / setup

    Thomas_k
    Participant

    @robin-w

    Akismet
    BBP Style Pack
    BB Press
    Coming Soon WP
    Constant Contact forms for WordPress
    Custom Sidebars
    Jetpack
    Theme my Login
    TinyMCE Advanced
    Ultimate Form Builder Lite
    WP Fastest Cache
    Yoast SEO

    #179530
    Stephen Edgar
    Keymaster

    Testing one space @atmojones
    Testing two spaces @atmojones
    Testing three spaces @atmojones
    Testing four spaces @atmojones
    Testing five spaces @atmojones
    Testing six spaces @atmojones

    The resulting code from the above:

    
    <p>Testing one space <a href="https://bbpress.org/forums/profile/atmojones/" rel="nofollow">@atmojones</a>
        <br> Testing two spaces <a href="https://bbpress.org/forums/profile/atmojones/" rel="nofollow">@atmojones</a>
        <br> Testing three spaces <a href="https://bbpress.org/forums/profile/atmojones/" rel="nofollow">@atmojones</a>
        <br> Testing four spaces <a href="https://bbpress.org/forums/profile/atmojones/" rel="nofollow">@atmojones</a>
        <br> Testing five spaces <a href="https://bbpress.org/forums/profile/atmojones/" rel="nofollow">@atmojones</a>
        <br> Testing six spaces <a href="https://bbpress.org/forums/profile/atmojones/" rel="nofollow">@atmojones</a>
     </p>
    

    The above doesn’t really show the code, multiple spaces are stripped:

    #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

Viewing 25 results - 2,426 through 2,450 (of 11,571 total)
Skip to toolbar