Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 17,776 through 17,800 (of 22,685 total)
  • Author
    Search Results
  • #82437

    In reply to: Private group RSS?

    r-a-y
    Keymaster

    The problem is WordPress doesn’t support HTTP authentication, which is what is used for most password-protected RSS feeds.

    Not much you can do at the moment… unless someone else has any other ideas?

    #82433
    abcde666
    Participant
    #82430
    Hugo Ashmore
    Participant

    Are you being asked to grant ftp access for the download?

    #82427
    paulhastings0
    Participant

    Could you go into a little more detail?

    viau5
    Participant

    It looks as though wordpress isn’t installed for any of the extra users. There’s no dashboard, login… nothing! So would this in fact be a buddypress issue or should I be contacting WordPress.org?

    #82411
    techguy
    Participant

    @Leroy12
    JJJ commented on the trac ticket. You might check it out. I know that WordPress use to allow and even check for the uppercase. Although, I just tried and it’s no longer worrying about case it seems. Maybe you could look into it more and update the trac ticket as well.

    viau5
    Participant

    that’s the thing… the themes are all activated sitewide but I’m not able to enter the dashboard for these specific blogs in order to modify the theme. So it’s kind of a double whammy problem. None of my users can access their dashboard, nor see their themes on their blog.
    In my database, I modified all instances of http://joliepapeterie.com/wordpress-mu/ (old server) to point to the new server http://myindiejunction.com/
    So I know the links are pointing in the right direction since the info is showing up… just the ability to manage the blogs has disappeared?

    #82371
    grosbouff
    Participant

    Ok. Here my code now :

    loader.php
    function yclads_bp_init() {
    require_once( YCLADS_BP_PLUGIN_PATH . 'includes/yclads-bp-core.php' );
    }
    add_action( 'bp_init', 'yclads_bp_init');

    yclads-bp-core.php

    function bp_yclads_setup_globals() {
    global $bp;

    // For internal identification
    $bp->yclads->id = 'yclads';

    $bp->yclads->format_notification_function = 'bp_yclads_format_notifications';
    $bp->yclads->slug = YCLADS_SLUG;

    // Register this in the active components array
    $bp->active_components[$bp->yclads->slug] = $bp->yclads->id;

    do_action( 'bp_yclads_setup_globals' );

    }
    //TO FIX
    //add_action( 'bp_setup_globals', 'bp_yclads_setup_globals' );
    add_action( 'wp', 'bp_yclads_setup_globals');
    add_action( 'admin_menu', 'bp_yclads_setup_globals');

    function bp_yclads_setup_root_component() {
    /* Register 'yclads' as a root component */
    bp_core_add_root_component( YCLADS_SLUG );

    }
    //TO FIX
    //add_action( 'bp_setup_root_components', 'bp_yclads_setup_root_component' );
    add_action( 'wp', 'bp_yclads_setup_root_component');
    add_action( 'admin_menu', 'bp_yclads_setup_root_component');

    function bp_yclads_setup_nav() {
    global $bp;
    global $post;

    if ((is_single()) && ($post->post_type=='yclad')) {

    // This is a single ad.
    $bp->is_single_item = true;
    $bp->yclads->current_ad = $post;

    [...]

    }

    [...]

    print_r($bp->current_component);
    exit;

    do_action( 'yclads_setup_nav', $bp->yclads->current_ads->user_has_access );

    }
    //TO FIX
    //add_action( 'bp_setup_nav', 'bp_yclads_setup_nav' );
    add_action( 'wp', 'bp_yclads_setup_nav' );
    add_action( 'admin_menu', 'bp_yclads_setup_nav' );

    If I access /wordpress/classified-ads/i-give-kitties/ (single-ad)


    print_r($bp->current_component);
    exit;

    outputs “i-give-kitties” while it should output “classified-ads”. So something is wrong with all this.
    Any idea ?

    #82360
    gfa202
    Member

    within those quotes was the php call for the sidebar, didn’t realize php is prohibited, woops! sorry.

    #82359
    gfa202
    Member

    For example, I go into /activity/index.php and i delete the “”, yet somehow the sidebar still shows up on my activity page, in the same broken way as before. How is that possible?

    #82344

    No need to worry. All is well. :) I can assure you BuddyPress is 100% not abandoned.

    My excuses are more client work than I can handle, and building lots of core API’s to make extending BuddyPress /much/ easier in 1.3. Custom post types in WordPress 3.0 have me sidetracked also :)

    I’ll post something up in the blog with some official updates and words to address this topic in better detail.

    #82325

    In reply to: Localization problem.

    r-a-y
    Keymaster

    Just updated the instructions.

    The updated instructions are much easier as you don’t need to download translation files for WordPress.

    Re: your other question – You’ll need to download your WordPress language file and add them to /wp-includes/languages/

    https://codex.wordpress.org/WordPress_in_Your_Language

    #82310
    Paul Wong-Gibbs
    Keymaster

    Some good points, but remember that each of us has the power to shape BuddyPress; that is what is great about the larger WordPress community. I agree with hnla’s points about community leaders; I have clients, lots of twitter messages and emails from all sorts of people who keep asking where Andy Peatling’s gone to.

    Without being disrespectful towards Automattic, the consequence of them having Andy work on other projects, such as wordpress.com, is that Andy has less time to work on BuddyPress. As Andy is very much the project leader and is the man with the vision, our community has slowed to some extent. This has caused some concerns, which is why we have this thread. This wouldn’t affect the WordPress project in the same way, because it’s a significantly more mature project and has many more contributors.

    It’s worth considering that the current user base of BuddyPress may have reached a plateau at the moment, and that the lack of new users isn’t a sign of weakness in the product; the last big driver for activity was when BuddyPress became compatible with regular WordPress.

    Finally, regarding active contributors on these forums; it seems to me that the more “active” forum contributors now earn some sort of money from BuddyPress or WordPress work, and that there just aren’t enough hours in a day to devote to work, clients, our own themes/plugins as well as helping on the forums.
    From the perspective of a forum moderator, I can say that the team do take notice of people who do contribute in some way in the forums, and we all are very appreciative of everyone’s contributions.

    rebecca
    Participant

    Thankyou for replying so quickly! So, you were right. I’m a wordpress noob.

    Anyone who is having similar problems try this walk through to PROPERLY set up the MU feature: http://wpveda.com/wordpress-3-0-enable-wordpress-multisite-tutorial/

    Otherwise everything is better now :)

    #82302
    fab
    Participant

    @cnorris23

    sorry… but I have this problem when I install buddypress in multiple sites like “site 2” with define ( ‘BP_ROOT_BLOG’, 2 ); in the wp_config.php file.
    I have a different promlem in the same case of @Retroriff

    #82299
    Brandon Allen
    Participant

    @LOOOL
    This is a thread about getting a blank site in WP 3. You don’t have a blank site, and in fact, you seem to have a completely different issue. Please start a new topic instead of hijacking @Retroriff‘s.

    #82298
    @mercime
    Participant

    The URL you gave leads to subsite with the old WordPress default theme. Going to your main site with bp-default theme, there’s no big gap at top of the page using IE 6/7, Safari 4.0.4, and Google Chrome.

    #82297
    fab
    Participant

    There is a preblem with wordpress 3 … every BuddyPress pages show the members list page… so I can’t view and update my profile..

    Any suggestion?

    #82296
    fab
    Participant

    Same issue too :O

    rebecca
    Participant

    I’m using WordPress 3.0 which I thought had MU integrated into the core.

    #82283
    r-a-y
    Keymaster
    Hugo Ashmore
    Participant

    Thanks for updating r-a-y. I wonder what the actual solution is as JJJ has just firmed up the hack?.

    @arunbaaillal that solution does work but only by dint of the fact that this what you can always do with WP, state a template page to be used as front. do you not think it would be better to add the patch to your functions file then you would have a workaround that works for the moment quite satisfactorily.

    r-a-y
    Keymaster

    Updated patch commited by JJJ:
    https://trac.buddypress.org/changeset/3066

    #82271
    r-a-y
    Keymaster

    This is working for me on my testbox.

    Though I did upgrade from WPMU 2.9.2 mind you.

    [EDIT]
    Here’s another post you might want to look at:
    https://buddypress.org/community/groups/installing-buddypress/forum/topic/blank-site-after-installing-buddypress-in-wordpress-3/

    #82263
    FredTech
    Participant

    I’m having the exact same issue with WP3, running Buddypress on a secondary blog. Clicking on a member name from anywhere only shows the members directory.

Viewing 25 results - 17,776 through 17,800 (of 22,685 total)
Skip to toolbar