Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 24,376 through 24,400 (of 68,948 total)
  • Author
    Search Results
  • #149647
    mvk15
    Participant

    I’m not hosted on the internet yet. I thought I’d give this a try on a virtual machine first before I start using it in anger. I also tried installing it on a laptop and I had the same results there. I tried uploading with a file manager as well. Same result. (All the files were in plugins/buddypress already, and it looked exactly the same after removing and adding manually)
    Is having a domain a requirement? Currently I have wordpress set up with a local ip address which seems to work fine. I can install plugins, themes and can upload media ok.

    #149646
    Rocio Valdivia
    Participant

    Meanwhile, I’ve tested the BP demo of this one /loginradius-for-wordpress/ and it doesn’t duplicate the user. But I prefer not to use a external service.

    So, I found this one buddydev.com/plugins/buddypress-facebook-connect-plus/ (thanks to @mercime) and it looks perfect for what I’m looking for. Any of you have used it? if you do, does it duplicate the same FB user in wp_users? and does it work fine importing users Facebook data to BuddyPress profile?

    Thank you very much for your help and if I find more usefull info about this, I will post it here 🙂

    Roman
    Participant

    @fivehead

    You are should add it to bp-custom.php
    If you don’t have this file:
    https://codex.buddypress.org/developer/customizing/bp-custom-php/

    #149635
    uspeh
    Participant

    thank you! i create new sub-domain, where activate only 2 plugins BuddyPress, BuddyPress Template Pack and default theme, but problem is not solved http://my.4wv.ru
    screenshot http://my.4wv.ru/wp-content/uploads/2013/01/friends.png

    #149632
    @mercime
    Participant

    @bluellipse What version did you upgrade from? The BP Default theme has been responsive since BP 1.5 and we’re on BP 1.6.2 so this shouldn’t be a surprise. Are you using a bp-default child theme or using the BP Default theme?

    fivehead
    Participant

    @Roman, I’ve seen a similar fix out there on the interwebs, but it didn’t work for me. Yours looks to be tweaked a bit from what I’ve seen, so I’ll give it a go. Where did you put this bit of code?

    Roman
    Participant

    Hi @fivehead
    I had already found decision for me. This small hack completely fixed avatar and group avatar problem for my site in MULTIBLOG mode:

    `
    /* This fixes the MULTIBLOG avatar problem */
    function nfm_bp_avtar_upload_path_correct($path){
    if ( bp_core_is_multisite() ){
    // $path = ABSPATH . get_blog_option( BP_ROOT_BLOG, ‘upload_path’ );
    $path = ABSPATH . ‘wp-content/uploads/’;
    }
    return $path;
    }
    add_filter(‘bp_core_avatar_upload_path’, ‘nfm_bp_avtar_upload_path_correct’, 1);

    function nfm_bp_avatar_upload_url_correct($url){
    if ( bp_core_is_multisite() ){
    $url = get_blog_option( BP_ROOT_BLOG, ‘siteurl’ ) . “/wp-content/uploads”;
    }
    return $url;
    }
    add_filter(‘bp_core_avatar_url’, ‘nfm_bp_avatar_upload_url_correct’, 1);
    `

    @mercime
    Participant
    #149608
    @mercime
    Participant
    #149604
    wrowlands
    Participant

    Recently we have updated to the new BuddyPress 1.6.2. Ever since the upgrade, the confirmation email is not going out to members attempting to register as new members. Our site is http://rotarymeansbusiness.com/. We now see that others are having this problem. We did not have this problem before the upgrade. We also use the plugin “Buddypress Pending Activations.

    Please advise,

    Wayne Rowlands

    fivehead
    Participant

    Good call, @Roman. Defining both fixed one problem, but introduced many more.

    Delving deeper, I believe that multisite is designed, on purpose, to keep things separate amongst network sites. That includes avatars, group avatars, etc. That is why each site has a separate upload directory (wp-content/blogs.dir/3/files/avatars, wp-content/blogs.dir/4/files/group-avatars and so on…).

    By default, each subsite’s upload path is something like wp-content/blogs.dir/5/files. And the home site’s upload path is wp-content/uploads. If no root blog is set (which @Roman pointed out that we can’t set a root blog AND enable multiblog), then the code will set the current site as the root blog and grab that site’s upload path. For example, if I’m on site 5 of a WPmultisite/BPmultiblog install, the site will look to pull files from the wp-content/blogs.dir/5/files folder. Accordingly, it will find any files that were uploaded to that directory, from site 5. It won’t find your avatar, because you likely uploaded them via the home site, and those avatars reside in the wp-content/uploads folder.

    While this design probably works for most implementations, it does not suit my purposes. I need to show avatars and group avatars across all sites (sounds like you both do as well). With that in mind, here is the path I’m heading down:

    The Network Admin Sites/Settings page (accessible via wp-admin dashboard at wp-admin/network/site-settings.php?id=4) allows you to update the “Upload Path”, “Upload URL Path”, and “Fileupload URL”. For my project, I modified all subsites to be the same as the home site upload path: “wp-content/uploads”, “http://example.com/wp-content/uploads”, and “http://example.com/wp-content/uploads”, respectively. HOWEVER, you can update them until you are blue in the face, but you will never successfully upload to the directory you update to. This is because WP overwrites these custom upload paths with the default upload paths mentioned above. This is done on the last line of wp-includes/ms-settings.php. As @Andrea Rennick points out on wordpress.org, this was done to protect ourselves from…ourselves by hosing things up in a multisite environment. On that same WP thread, @cooliojones proposed the fix of commenting out the last line in wp-includes/ms-settings.php, which is ms_upload_constants();.

    YES, it’s a core hack, and NO it’s not the ideal solution, but I’m plowing forward with it anyway because I don’t want my project to die while I throw on my One Love cape and try to solve all the BP/WP integration problems of the world. I guess you have to ask yourself which is more important to you: common avatars across sites OR maintaining separate upload directories across sites?

    Hope that helps.

    As a last second, chuck it into the end zone and pray…Since I only need group/avatars to display across the multisites, I’m thinking it would be ideal if there way some way to define separate upload paths for group/avatars from all other uploads. Anyone have the golden ticket for that?

    Related Reading:

    #149592
    Ben Hansen
    Participant

    i am also seeing a discrepancy between front end activity time stamps and what is shown in wp admin. i think whats happening at least for us is that the wp admin area is showing gmt time regardless of the local time. example:

    latest post:

    published – 13:54 local time (GMT-8)
    front activity entry – 54 minutes ago
    wp admin activity time stamp – 9:54 PM
    current time – 14:48

    current version of bbpress/buddypress/wp/multisite

    #149590
    Ben Hansen
    Participant

    @mercime i hadn’t actually thought of that before (doh!) but i just checked it again and no there wasn’t any change to the behavior of the button when i activated bp default. Also there was no corresponding line of code in reviewit. :/

    #149589
    mgkoller
    Participant

    I am using WordPress 3.5. , BuddyPress Version 1.6.2, BBPress Version 2.2.3

    BBPress is displaying the correct time, Buddpyress activity displays the correct time I.E “posted 5 seconds ago” But times are wrong in Dashboard > Activity , which causes searching for activity updates along with plugins such as BuddyPress Component Stats to pull the wrong times.

    #149588
    Paul Wong-Gibbs
    Keymaster

    What versions of bbPress and BuddyPress are you using, and which is displaying the wrong time?

    #149586
    Paul Wong-Gibbs
    Keymaster

    Going to close this thread; BuddyPress doesn’t have any ads in it, so it’s either another plugin, your theme, or — most likely — malware on your computer.

    #149583
    Hugo Ashmore
    Participant

    Yes plenty are using it on production sites, doesn’t mean though that there isn’t work involved in getting/keeping it running, WP/BP may work out the box but that’s only the beginning of things and issues are a fact of life with any application.

    edpitts
    Participant

    Looks like it is displaying the time in GMT. Now if I can change that.
    My settings under general is for CDT.

    edpitts
    Participant

    Mine is showing 6 hours ago for a forum entry I just entered.

    #149578
    panashe
    Participant

    my website is test.iamatopprospect.com, the link im having issues with is http://test.iamatopprospect.com/members-2/

    when it shows the list of members the background is the same as my theme bg. how can i change that? is just just an alignment issue with BP Compatability?

    I am using WP theme 1349 which can be seen at

    http://wp.io/wordpress-theme/wordpress-theme-1349/

    #149576
    @mercime
    Participant
    #149572
    David Dean
    Participant

    @harvey1233 – I don’t see any hypertext ads on this site or on justinharvey.com. I think something has infected your browser or your PC.

    #149571
    ProgramerJutsu
    Participant

    Still having issues with this Forum: Index -> main page

    #149570
    ProgramerJutsu
    Participant

    K, I’m doing it the way you said because when i update my files in buddy press the html that i copied stays the same.
    Props xD

    #149565

    In reply to: No Register Page

    @mercime
    Participant

    I have a register page in my pages but it just redirects back to the homepage so really I dont have a register page?

    @jchamp311 That happens by default when you’re logged in naturally. Log out first to check out register page 🙂

Viewing 25 results - 24,376 through 24,400 (of 68,948 total)
Skip to toolbar