Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 32,601 through 32,625 (of 32,678 total)
  • Author
    Search Results
  • #33967

    In reply to: ldap authentication

    Deadpan110
    Member

    Although WordPress / MU use its own WP authentication methods, I would state that LDAP will never be a plugin module for BuddyPress.

    BuddyPress is a plugin for Social Networking – asking it to deal with authentication is like wanting your office document application to play mp3’s.

    Authentication however – within WordPress / MU is pluggable and if there is a plugin out there that supports LDAP, then give it a go as BuddyPress will only check if you are logged in or out and has nothing to do with authentication.

    #33966
    jbzz
    Participant
    #33955
    gpo1
    Participant

    What album plugin for wordpress mu do you recommend for now?

    #33940
    Deadpan110
    Member

    Revision 571 seems to have fixed the problem here too, I am glad that WordPress action hooks go a little further than I realised.

    I just seem to have a problem with random blogs throwing a 404 on the main site now… but as its the weekend, not had chance to look any deeper.

    Good work Andy :)

    #33933

    In reply to: URL Translation

    dudboi
    Participant

    Sorry to hijack this thread, but I’ve been wanting to change the groups URIs, and ok, so I know that groups is hardcoded in.

    But I tinkered around with it and basically created a GROUP_SLUG and set that, in my case, to “projects”. Everything works fine (I had to change a few template things but otherwise it’s ok) except I have a teensy weensy problem with the catchuri function

    So now all my pages are something like siteurl.com/members/username/projects/action

    (siteurl.com/members/username/projects/, siteurl.com/members/username/projects/my-groups, siteurl.com/members/username/projects/group-finder. You get the idea)

    And it works fine until I create a wordpress page called projects, then for some reason siteurl.com/members/username/projects rewrites to siteurl.com/projects, which in my case would be the wordpress page instead of the groups memberpage. I’ve tried taking a look at catchuri, and playing around with the is_page function, but even if I try to name the page something else, like say “projects main”, it still ends up trying to add the template into the page, which naturally fails and ends up with the 404 template.

    I also don’t know if it’s related, but my wordpress mu is in a subdirectory, which looking at the catchuri code, doesnt seem to deal with subdirectories at the first explosion of the uri to rewrite (but I may be mistaken), so before the explosion of the actual site_uri function, $bp_uri[component_index] ($bp_uri[0]) actually returns me the subdirectory that my wp mu is in. I’m not sure if this is a bug and/or if it affects muy uri rewriting, but I thought I’d mention it.

    p.s. when I delete the projects page, members/username/projects rightfully shows me the my-group template.

    you can take a look at it here http://donicethings.org/beta

    If anyone could help me I’d be most grateful, thanks!

    #33932

    In reply to: I´m curious!

    db2008
    Member

    I’m with you ‘ricwes’! I can’t wait to implement BuddyPress into my website!!! This is really exciting. I can’t wait to see how it develops.

    I’m preparing a proposal for my company to use WordPress for blogging too.

    #33929
    Andy Peatling
    Keymaster

    I think I’ve fixed it.

    When using the BuddyPress function bp_core_do_catch_uri() via the ‘template_redirect’ action, there needs to be a remove_action() on redirect_canonical() to stop the BuddyPress redirection and WordPress redirection conflicting.

    Basically adding a remove action on line 158 of bp-core-catchuri.php seems to work:

    remove_action( ‘template_redirect’, ‘redirect_canonical’ );

    add_action( ‘template_redirect’, ‘bp_core_do_catch_uri’ );

    This seems to fix the problem of conflicting page names/group names.

    #33928
    Andy Peatling
    Keymaster

    BuddyPress is doing its own thing.

    Take a look at bp-core/bp-catch-uri.php

    The URL is split up into variables and used within plugins. This is obviously interfering with some of the WordPress URL’s. I’m going to take a look at this and see if there is a solution to put pages on a exclude list.

    #33924
    Deadpan110
    Member

    I have been doing a little more digging into this problem and the same bug effects:

    • domain.com/blogs/*
    • domain.com/groups/*
    • domain.com/members/*

    For instance, you have a post on your main blog called ‘testing BuddyPress’, and someone creates a group called ‘test’ – each time you try to access that group, WordPress will magically use its rewrite rules class and send you to the post entry.

    To start with, I thought it may have been a WordPress bug, but no… its WordPress’ default behavior.

    It seems that currently BuddyPress is doing its own URL rewriting and then WordPress takes over to convert domain.com/anything/you/like/except/THIS to find ‘THIS‘ as a possible candidate for a place to be.

    I have no experience using the correct methods of plugging into the WordPress rewrite rules structure and I am still getting familiar with the ins and outs of BuddyPress – but I hope to keep people posted on my findings.

    Firstly, https://codex.wordpress.org/Function_Reference/WP_Rewrite makes it sound simple to utilise the correct and preferred WordPress ways of doing things correctly.

    Secondly, If this is the case – it is a good job this has been spotted early because I have a feeling that fixing BuddyPress to use the above would require some core changes.

    For anyone interested in the way WordPress looks at its URL’s, paste the following into the <body> of your test theme’s header.php

    <pre>
    <?php global $wp_rewrite;
    print_r($wp_rewrite);
    ?>
    </pre>'

    The important part to look at is [rules] => Array that has no mention of blogs, groups or members.

    Anyways…

    I will continue getting to grips with BuddyPress internals and reporting my findings…

    I hope this has helped someone getting closer to fixing!

    #2471

    Topic: Thank You!!!

    in group forum Installing BuddyPress
    Dfa327
    Participant

    I successfully incorporated the plugins to my wordpress mu site last night and the overall response has been AMAZING!!! Thank you SOOOOOO much! Please feel free to check out our implementation of the latest trunk. You made this so easy to do and the benefit is tremendous!!! You guys ROCK!!!! Oh and the site is http://www.getpaidfrom.us.

    advinci
    Participant

    I had a WordPress MU installation before adding BuddyPress to it, with users and blogs.

    Translated .po and .mo files were made and put into wp-content/mu-plugins/bp-languages. WPMU was translated before installing BPress. In the Dashboard>Settings I changed the language to English and back to Estonian to make sure it turned the language on. Translated the templates too.

    And whhile template changes work, most things aren’t translated, so it seems that .mo file isn’t working.

    And another problem I have is that old members aren’t showing up in the members list. Only those who registered after installing BuddyPress are in the list.

    I don’t know much about databases, but it seems to me like maybe the databases haven’t registered the changes and need some kind of refresh or something?

    Please help, my site is live and has active users, which make it pretty urgent for me.

    #33892
    Deadpan110
    Member

    OK, I have submitted a better patch to allow complete customisation of the admin bar using add_action() WordPress hooks.

    It also has log in and register and is available from https://trac.buddypress.org/ticket/174

    Please Note, this patch will possibly not work if used on top of the previous patch, so make sure you have the original core files installed first.

    #33878

    In reply to: I´m curious!

    gogoplata
    Participant

    Is there something specific you’re looking for. Most WordPress plugins and WPMU plugins will work alongside BuddyPress. Right now the focus is on getting all the basic features stable for a formal release in the next month or so, but additional plugins will definitely be developed for this system.

    Deadpan110
    Member

    I’m trying to track down what is causing this – but so far seem to have no luck.

    1: clicking Random Blog redirects to a random blog

    2: WordPress MU then redirects to a post on the main site using the slug ‘blogs*’ to find my post called ‘Blogs and Social Networking’ and uses a 301 Permanent to do so.

    I initially thought WordPress was finding an old slug within wp_1_postmeta and have checked to see if the post had an old slug – but found nothing.

    Just in case, I also disabled the wp_old_slug_redirect function by making it return straight away and still no luck.

    I was wondering if anyone else has had (or having) similar problems or if anyone has any ideas on where else I should look to track down this behavior.

    #33809

    fused network should be avoided by all costs. im suspicious of their fake reviews, as they have a contest that says “write a review, win an iPod.”

    here’s a good write up: http://www.hollywood-newsroom.com/tech/fused-network-review-sucks-avoid-for-wordpressmu-buddypress/

    #33803

    In reply to: No Blog Registration

    jordanh
    Member

    Yeah this works, I’ve done it on a recent install of BP where I didn’t want the WordPress admin interface being used. When the ability to update your blog from the main frontend comes along, I’ll re-enable.

    Jordan

    #2449
    kunefr
    Member

    Hi !

    It seems that there is a compatibility problem with the Sitewide tags plugin of Donncha (http://ocaoimh.ie/2008/10/01/wordpress-mu-sitewide-tags-pages-031/) and the Activity component of buddypress.

    The line that raise this problem is in the bp_blogs.php:

    add_action( 'publish_post', 'bp_blogs_record_post' );

    Any idea to solve it ?

    #2439
    ibo123
    Member

    I want to portLifeStream WordPress Plugin as feature in bp,

    how do you port it or is there any doc of porting wp plugins into bp?

    #33737
    skozyk
    Member

    Andy,

    I think I figured out what was causing the problem. When I originally installed WordPress MU, I had had to re-install it a few time until I got it right. File permissions weren’t set properly at the time of installation, etc. When I went into my “Sites” are of the Admin Settings panel, I found that I had about a half dozen sites listed, all with the same name. I deleted all except for the most current installation and now I am able to upload the avitar images. This multiple site listing didn’t seem to affect any other site functionality, WordPress MU or BuddyPress related. Just wanted to let you know the problem and the solution.

    Best,

    Steve

    #2430

    I tried setting up BuddyPress and WordPressMU on Bluehost, but found out they don’t support wildcards.

    Who has had good successes creating Buddypress sites? What hosting, ISP do you recommend? Thx!

    #2396
    Michael Berra
    Participant

    Maybe that’s a bug:

    In “my blogs” I find only the blogs I created. But not the ones I write in or am Admin of. In the WordPressMU Backend they are all listed as “my blogs” but not in Buddypress. I think, that would be nice…

    #2394
    Andy Peatling
    Keymaster

    For those people experiencing issues with avatar uploads, and avatars not showing when cropping – please try r519+.

    I have made some changes to upload locations and have forced all avatars to upload to the root blog upload directory.

    The problems being experienced were related to internal WordPress file permissions. When a user uploads an image to their blog – that image cannot be viewed from another subdomain other than the root. For example:

    An image uploaded to: http://andysblog.domain.com/wp-content/blogs.dir/1/files/avatars/myimage.jpg

    http://andysblog.domain.com/wp-content/blogs.dir/1/files/avatars/myimage.jpg — WORKS

    http://domain.com/wp-content/blogs.dir/1/files/avatars/myimage.jpg — WORKS

    http://janesblog.domain.com/wp-content/blogs.dir/1/files/avatars/myimage.jpg — 404 DOESN’T WORK

    Hopefully that makes some sense.

    #2389
    Andy Peatling
    Keymaster

    I’ve now generated a BuddyPress POT file that can be used to translate BuddyPress into other languages.

    You can find the POT file in /bp-languages/buddypress.pot when you check out the latest revision (r510+). I will keep the PO file up to date with the latest revision.

    Please note – there are new text strings going into BuddyPress all the time right now, so if you create a language file before the first release, you will need to keep it up to date with the latest revision.

    For more information on translating, check out the WordPress Codex page on translation, the same methods apply.

    I have added a new BuddyPress Codex page for language translations. If you make a new language translation, please add a codex page for it, and and a link to where it can be downloaded. For example, German: http://codex.buddypress.org/translations/deutsch.

    Please let me know if there are any problems with this.

    #33599
    Andy Peatling
    Keymaster

    First of all you’ll want to get set up with an installation of WPMU and make sure that is running correctly.

    It’s probably a good idea to head over to the WPMU forums where there are a lot of expect WPMU users (https://mu.wordpress.org/forums). They will be able to help you get started with MU.

    Once you have that up and running, come back here and we can guide you through installing BuddyPress on top.

    #2383
    fredericd
    Member

    My WordPress mu intallation is in French and the buddypress plugins are in English.

    My question is : How do I translate Buddypress in French?

    Which files I need to edit?

    Some of the widgets are in english and I need to translate them as well, how do I do this?

Viewing 25 results - 32,601 through 32,625 (of 32,678 total)
Skip to toolbar