Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 2,501 through 2,525 (of 3,695 total)
  • Author
    Search Results
  • #115248
    r-a-y
    Keymaster

    Sounds like you’re using a caching plugin like W3 Total Cache.
    If you have it enabled, disable it.

    Right now, there are a few issues with using object caching plugins.

    Stay tuned to the following ticket for updates:
    https://buddypress.trac.wordpress.org/ticket/2636

    #115198

    In reply to: too many redirects

    @mercime
    Participant
    #115038
    Stigmartyr
    Member

    Update: I read the bp-core.php file and created a file called bp-custom.php and put this in my /plugins folder as instructed with the username_compatibility code as instructed above and it’s still not working for me. That doesn’t seem to have done anything and neither is editing the wp-config.php.

    I’ve made 4 test users and autofill doesn’t find anything.

    #114981
    r-a-y
    Keymaster

    It’s possible, but the plugin would have to create its own tables to store the data. The Group Documents plugin that Dennis mentioned does something similar codewise and can be used as a jumping off point.

    It would be better if BP had a dedicated meta table for PMs like the activity component. Then you could easily add this time of information without creating a separate table. I created a ticket here about this:
    https://buddypress.trac.wordpress.org/ticket/3083

    #114975
    Stigmartyr
    Member

    Hello all – I ran into this issue as well, and tried using the code fix in my wp-config.php file but it’s not working. Also I cannot find bp-custom.php anywhere in /plugins/buddypress – was it moved or renamed? Do I still need to add it there?

    However, even with the wp-config.php custom setting in place I cannot even auto-fill messages to test users without dots in their names. Oddly it will autofill the admin’s nickname but that’s it..

    #114970
    Stigmartyr
    Member

    Ditto :)

    #114699
    carstiee09
    Participant

    Hello iwazaru,

    you have to past the code in the: bp-messages-cssjs.php

    try this code:

    <?php

    function messages_add_autocomplete_js() {
    global $bp;

    // Include the autocomplete JS for composing a message.
    if ( $bp->current_component == $bp->messages->slug && ‘compose’ == $bp->current_action ) {
    add_action( ‘wp_head’, ‘messages_autocomplete_init_jsblock’ );

    wp_enqueue_script( ‘bp-jquery-autocomplete’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.autocomplete.js’, array( ‘jquery’ ) );
    wp_enqueue_script( ‘bp-jquery-autocomplete-fb’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.autocompletefb.js’ );
    wp_enqueue_script( ‘bp-jquery-bgiframe’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.bgiframe.min.js’ );
    wp_enqueue_script( ‘bp-jquery-dimensions’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.dimensions.js’ );
    }

    }
    add_action( ‘wp’, ‘messages_add_autocomplete_js’, 2 );

    function messages_add_autocomplete_css() {
    global $bp;

    if ( $bp->current_component == $bp->messages->slug && ‘compose’ == $bp->current_action ) {
    wp_enqueue_style( ‘bp-messages-autocomplete’, BP_PLUGIN_URL . ‘/bp-messages/css/autocomplete/jquery.autocompletefb.css’ );
    wp_print_styles();
    }
    }
    add_action( ‘wp_head’, ‘messages_add_autocomplete_css’ );

    function messages_autocomplete_init_jsblock() {
    global $bp;
    ?>

    jQuery(document).ready(function() {
    var acfb =
    jQuery(“ul.first”).autoCompletefb({urlLookup:’root_domain . ‘/wp-load.php’ ?>’});

    jQuery(‘#send_message_form’).submit( function() {
    var users = document.getElementById(‘send-to-usernames’).className;
    document.getElementById(‘send-to-usernames’).value = String(users);
    });
    });

    <?php
    }

    i you have installed buddypress via a subdomain.

    Carsten

    #114635
    carstiee09
    Participant

    i have the same problem…

    #114531
    LPH2005
    Participant

    You might start out small. Install BuddyPress and enable just the activity stream; disable everything else. Make sure that the theme css works well with the activity stream. You’ll need to install the BuddyPress template pack. After you are satisfied with the activity stream then change WP install to multi-site. You’ll want to lock it down so that you control creation of blogs – so that you don’t have to deal with splogs. Once you have that working then you can add a few other BP features – private messaging, etc.

    #114493
    Reboot
    Member

    I have been looking for PM attachments as well! Would love to have that feature.

    #114488
    jonhorner
    Member

    Thanks for the reply. Been looking at some group docs extensions. I would also need one to allow users to upload and share documents with each other outside of groups. Will have a go at developing one but don’t want to repeat work if it’s already been done.

    #114452
    dennissmolek
    Participant

    There isnt a plugin I know about, but there are a few for group docs and things like that..

    #114255
    stwc
    Participant

    BP is CPU and memory-hungry on top of regular WP requirements. Depending on what web host you’re using, if you’re on a shared hosting plan, it may just be dieing due to hard limits on resources. I ran a small BP install (along with other sites) on a Dreamhost shared account for while, but have since moved to a virtual private server, because, well: it’s heavy.

    That may or may not be the problem.

    #114228

    In reply to: Group Feed Activity

    Scotty501
    Member

    OK I had aply but still need some help please. What I have done followed a hack from another thread by @r-a-y to move the activity thread along the tabs and make the forum one home – so at least when people look at the group it does not confuse them. This along with making the thread private means that the Main Activity thread does not get cluttered with group posts. Not ideal – but will have to do.

    This though causes another issue – if you click Group Directory – you get no topics found – further confusion to the users. If I turn off Group Directory in the settings, the button still remains – but if you click the button it goes to the site home page – more confusion to users.

    Can anyone help me my problem another way?

    Seems Groups are not very well thought through :(

    OK editing the php.ini file is a little out of my league. My host won’t let me do it but if I understand the UNIX shell I can reinstall another ini (I have no idea how to do this) so I believe the patches root is the way to go for me. Can you recommend either someone who has successfully done this or a tutorial you or buddypress has for this? Also – when will the patched version be released? Thanks again for all your help!

    #114183
    Hugo Ashmore
    Participant

    @DJPaul spoilsport :p

    @vegasparty607 erm yes and that link is to an American educational resource! try looking up a general one and you will find that there are exceptions and differences to the use or not of a comma and ‘and’ :)

    #114180
    Paul Wong-Gibbs
    Keymaster

    Closing topic. This is not the place to argue about grammatical syntax in English language.

    #114179

    I’m not arguing. I’m just saying you have a grammatical error, but obviously you don’t want to fix it.

    #114178
    Paul Wong-Gibbs
    Keymaster

    If you lot want to argue spelling, or grammar, or punctuation, do it on your own blogs or another discussion forum. Not here.

    My only comment will be that I do not view this as an error. This may be a British/American English thing, but I’m certainly not well-informed enough.

    #114177

    Look it up or am I being rude and in fact you’re an English teacher in which case I’ll shut up

    ???

    http://grammar.ccc.commnet.edu/grammar/commas.htm

    #114176
    aces
    Participant

    I don’t think it should have a second comma in the UK….

    #114173
    Hugo Ashmore
    Participant

    No not necessarily – he said once again :)

    Look it up or am I being rude and in fact you’re an English teacher in which case I’ll shut up ;)

    #114172

    In proper English grammar there is a comma.

    `Joe, Bill, and Phil went to the store.`

    #114170
    Hugo Ashmore
    Participant

    Not necessarily. In what version of English do you write? The tendency to add the comma before the word ‘and’ is, as far as I recall, an Americanism; in English English you wouldn’t have the last comma the ‘and’ makes it redundant.

    Thx for your help. I am trying to get the host to make the switch. I’ll update this post and explain what happens.

Viewing 25 results - 2,501 through 2,525 (of 3,695 total)
Skip to toolbar