Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 93,026 through 93,050 (of 94,540 total)
  • Author
    Search Results
  • #37143

    In reply to: BuddyPress Beta 2

    danbpfr
    Participant

    Worked too, thank you Andy !

    royak
    Member

    1) Upload WordPress Mu package

    2) open .htaccess and add :

    AddType x-mapp-php5 .php

    AddHandler x-mapp-php5 .php

    3) Install WordPress Mu with the subdirectory option ( subdomain option does not work)

    4) Enable blog+account creation from admin panel

    5) Test your installation by creating one test-user account+blog , then remove test-user account+blog

    6) Go to your PHPMyAdmin interface and create the following tables:

    CREATE TABLE wp_bp_activity_sitewide (

    id int(11) NOT NULL auto_increment,

    user_id int(11) NOT NULL,

    item_id int(11) NOT NULL,

    secondary_item_id int(11) default NULL,

    content longtext NOT NULL,

    primary_link varchar(150) NOT NULL,

    component_name varchar(75) NOT NULL,

    component_action varchar(75) NOT NULL,

    date_cached datetime NOT NULL,

    date_recorded datetime NOT NULL,

    PRIMARY KEY (id),

    KEY date_cached (date_cached),

    KEY date_recorded (date_recorded),

    KEY user_id (user_id),

    KEY item_id (item_id),

    KEY component_name (component_name)

    ) TYPE=MyISAM ;

    CREATE TABLE wp_bp_friends (

    id int(11) NOT NULL auto_increment,

    initiator_user_id int(11) NOT NULL,

    friend_user_id int(11) NOT NULL,

    is_confirmed tinyint(1) default ‘0’,

    is_limited tinyint(1) default ‘0’,

    date_created datetime NOT NULL,

    PRIMARY KEY (id),

    KEY initiator_user_id (initiator_user_id),

    KEY friend_user_id (friend_user_id)

    ) TYPE=MyISAM ;

    CREATE TABLE wp_bp_groups (

    id int(11) NOT NULL auto_increment,

    creator_id int(11) NOT NULL,

    name varchar(100) NOT NULL,

    slug varchar(100) NOT NULL,

    description longtext NOT NULL,

    news longtext NOT NULL,

    status varchar(10) NOT NULL default ‘open’,

    is_invitation_only tinyint(1) NOT NULL default ‘0’,

    enable_wire tinyint(1) NOT NULL default ‘1’,

    enable_forum tinyint(1) NOT NULL default ‘1’,

    enable_photos tinyint(1) NOT NULL default ‘1’,

    photos_admin_only tinyint(1) NOT NULL default ‘0’,

    date_created datetime NOT NULL,

    avatar_thumb varchar(250) NOT NULL,

    avatar_full varchar(250) NOT NULL,

    PRIMARY KEY (id),

    KEY creator_id (creator_id),

    KEY status (status),

    KEY is_invitation_only (is_invitation_only)

    ) TYPE=MyISAM ;

    CREATE TABLE wp_bp_groups_groupmeta (

    id int(11) NOT NULL auto_increment,

    group_id int(11) NOT NULL,

    meta_key varchar(255) default NULL,

    meta_value longtext,

    PRIMARY KEY (id),

    KEY group_id (group_id),

    KEY meta_key (meta_key)

    ) TYPE=MyISAM ;

    CREATE TABLE wp_bp_groups_members (

    id int(11) NOT NULL auto_increment,

    group_id int(11) NOT NULL,

    user_id int(11) NOT NULL,

    inviter_id int(11) NOT NULL,

    is_admin tinyint(1) NOT NULL default ‘0’,

    is_mod tinyint(1) NOT NULL default ‘0’,

    user_title varchar(100) NOT NULL,

    date_modified datetime NOT NULL,

    comments longtext NOT NULL,

    is_confirmed tinyint(1) NOT NULL default ‘0’,

    is_banned tinyint(1) NOT NULL default ‘0’,

    invite_sent tinyint(1) NOT NULL default ‘0’,

    PRIMARY KEY (id),

    KEY group_id (group_id),

    KEY is_admin (is_admin),

    KEY is_mod (is_mod),

    KEY user_id (user_id),

    KEY inviter_id (inviter_id),

    KEY is_confirmed (is_confirmed)

    ) TYPE=MyISAM ;

    CREATE TABLE wp_bp_groups_wire (

    id int(11) NOT NULL auto_increment,

    item_id int(11) NOT NULL,

    user_id int(11) NOT NULL,

    content longtext NOT NULL,

    date_posted datetime NOT NULL,

    PRIMARY KEY (id),

    KEY item_id (item_id),

    KEY user_id (user_id)

    ) TYPE=MyISAM ;

    CREATE TABLE wp_bp_messages_messages (

    id int(11) NOT NULL auto_increment,

    sender_id int(11) NOT NULL,

    subject varchar(200) NOT NULL,

    message longtext NOT NULL,

    date_sent datetime NOT NULL,

    message_order int(10) NOT NULL,

    sender_is_group tinyint(1) NOT NULL default ‘0’,

    PRIMARY KEY (id),

    KEY sender_id (sender_id),

    KEY message_order (message_order),

    KEY sender_is_group (sender_is_group)

    ) TYPE=MyISAM ;

    CREATE TABLE wp_bp_messages_notices (

    id int(11) NOT NULL auto_increment,

    subject varchar(200) NOT NULL,

    message longtext NOT NULL,

    date_sent datetime NOT NULL,

    is_active tinyint(1) NOT NULL default ‘0’,

    PRIMARY KEY (id),

    KEY is_active (is_active)

    ) TYPE=MyISAM ;

    CREATE TABLE wp_bp_messages_recipients (

    id int(11) NOT NULL auto_increment,

    user_id int(11) NOT NULL,

    thread_id int(11) NOT NULL,

    sender_only tinyint(1) NOT NULL default ‘0’,

    unread_count int(10) NOT NULL default ‘0’,

    is_deleted tinyint(1) NOT NULL default ‘0’,

    PRIMARY KEY (id),

    KEY user_id (user_id),

    KEY thread_id (thread_id),

    KEY is_deleted (is_deleted),

    KEY sender_only (sender_only),

    KEY unread_count (unread_count)

    ) TYPE=MyISAM ;

    CREATE TABLE wp_bp_messages_threads (

    id int(11) NOT NULL auto_increment,

    message_ids longtext NOT NULL,

    sender_ids longtext NOT NULL,

    first_post_date datetime NOT NULL,

    last_post_date datetime NOT NULL,

    last_message_id int(11) NOT NULL,

    last_sender_id int(11) NOT NULL,

    PRIMARY KEY (id),

    KEY last_message_id (last_message_id),

    KEY last_sender_id (last_sender_id)

    ) TYPE=MyISAM ;

    CREATE TABLE wp_bp_notifications (

    id int(11) NOT NULL auto_increment,

    user_id int(11) NOT NULL,

    item_id int(11) NOT NULL,

    secondary_item_id int(11) default NULL,

    component_name varchar(75) NOT NULL,

    component_action varchar(75) NOT NULL,

    date_notified datetime NOT NULL,

    is_new tinyint(1) NOT NULL,

    PRIMARY KEY (id),

    KEY item_id (item_id),

    KEY secondary_item_id (secondary_item_id),

    KEY user_id (user_id),

    KEY is_new (is_new),

    KEY component_name (component_name),

    KEY component_action (component_action)

    ) TYPE=MyISAM ;

    CREATE TABLE wp_bp_user_blogs (

    id int(11) NOT NULL auto_increment,

    user_id int(11) NOT NULL,

    blog_id int(11) NOT NULL,

    PRIMARY KEY (id),

    KEY user_id (user_id),

    KEY blog_id (blog_id)

    ) TYPE=MyISAM ;

    CREATE TABLE wp_bp_user_blogs_blogmeta (

    id int(11) NOT NULL auto_increment,

    blog_id int(11) NOT NULL,

    meta_key varchar(255) default NULL,

    meta_value longtext,

    PRIMARY KEY (id),

    KEY blog_id (blog_id),

    KEY meta_key (meta_key)

    ) TYPE=MyISAM ;

    CREATE TABLE wp_bp_user_blogs_comments (

    id int(11) NOT NULL auto_increment,

    user_id int(11) NOT NULL,

    blog_id int(11) NOT NULL,

    comment_id int(11) NOT NULL,

    comment_post_id int(11) NOT NULL,

    date_created datetime NOT NULL,

    PRIMARY KEY (id),

    KEY user_id (user_id),

    KEY blog_id (blog_id),

    KEY comment_id (comment_id),

    KEY comment_post_id (comment_post_id)

    ) TYPE=MyISAM ;

    CREATE TABLE wp_bp_user_blogs_posts (

    id int(11) NOT NULL auto_increment,

    user_id int(11) NOT NULL,

    blog_id int(11) NOT NULL,

    post_id int(11) NOT NULL,

    date_created datetime NOT NULL,

    PRIMARY KEY (id),

    KEY user_id (user_id),

    KEY blog_id (blog_id),

    KEY post_id (post_id)

    ) TYPE=MyISAM ;

    CREATE TABLE wp_bp_xprofile_data (

    id int(11) unsigned NOT NULL auto_increment,

    field_id int(11) unsigned NOT NULL,

    user_id int(11) unsigned NOT NULL,

    value longtext NOT NULL,

    last_updated datetime NOT NULL,

    PRIMARY KEY (id),

    KEY field_id (field_id),

    KEY user_id (user_id)

    ) TYPE=MyISAM ;

    CREATE TABLE wp_bp_xprofile_fields (

    id int(11) unsigned NOT NULL auto_increment,

    group_id int(11) unsigned NOT NULL,

    parent_id int(11) unsigned NOT NULL,

    type varchar(150) NOT NULL,

    name varchar(150) NOT NULL,

    description longtext NOT NULL,

    is_required tinyint(1) NOT NULL default ‘0’,

    is_default_option tinyint(1) NOT NULL default ‘0’,

    field_order int(11) NOT NULL default ‘0’,

    option_order int(11) NOT NULL default ‘0’,

    order_by varchar(15) NOT NULL,

    is_public int(2) NOT NULL default ‘1’,

    can_delete tinyint(1) NOT NULL default ‘1’,

    PRIMARY KEY (id),

    KEY group_id (group_id),

    KEY parent_id (parent_id),

    KEY is_public (is_public),

    KEY can_delete (can_delete),

    KEY is_required (is_required)

    ) TYPE=MyISAM ;

    CREATE TABLE wp_bp_xprofile_groups (

    id int(11) unsigned NOT NULL auto_increment,

    name varchar(150) NOT NULL,

    description mediumtext NOT NULL,

    can_delete tinyint(1) NOT NULL,

    PRIMARY KEY (id),

    KEY can_delete (can_delete)

    ) TYPE=MyISAM ;

    CREATE TABLE wp_bp_xprofile_wire (

    id int(11) NOT NULL auto_increment,

    item_id int(11) NOT NULL,

    user_id int(11) NOT NULL,

    content longtext NOT NULL,

    date_posted datetime NOT NULL,

    PRIMARY KEY (id),

    KEY item_id (item_id),

    KEY user_id (user_id)

    ) TYPE=MyISAM ;

    7) Replace site name and site description and insert to database:

    INSERT INTO wp_bp_user_blogs VALUES (1, 1, 1);

    INSERT INTO wp_bp_user_blogs_blogmeta VALUES (1, 1, ‘name’, ‘site Name’);

    INSERT INTO wp_bp_user_blogs_blogmeta VALUES (2, 1, ‘description’, ‘Site Description’);

    INSERT INTO wp_bp_user_blogs_blogmeta VALUES (3, 1, ‘last_activity’, ‘1’);

    INSERT INTO wp_bp_xprofile_fields VALUES (1, 1, 0, ‘textbox’, ‘Full Name’, ”, 1, 0, 1, 0, ”, 1, 0);

    INSERT INTO wp_bp_xprofile_groups VALUES (1, ‘Base’, ”, 0);

    8) Upload BuddyPress and install it.

    Now you can create profiles & groups.

    #37139

    In reply to: BuddyPress Beta 2

    stevefdl
    Member

    That worked. I didn’t change any of the template files in the upgrade…didn’t think I needed too :)

    #37138

    In reply to: BuddyPress Beta 2

    Andy Peatling
    Keymaster

    @stevefdl @chouf: make sure you have the file: member-themes/THEMENAME/groups/admin/group-avatar.php in your member theme.

    This can be found in the default member theme, just copy it over.

    #37136
    gopeterb
    Member

    Thank you! BuddyPress looks to be great from what Ive seen so far. Cant wait to implement it into my sites.

    djsteve
    Participant

    I had the same error.

    I tried to change blogs.dir to 777 and the folders within it to 777, but my ftp gave an error.

    Then I noticed was that my blogs.dir folder was “owned” by nobody.

    So my server peeps changed the ownership of the folders,and I was able to make them 777. Then I noticed that mu/buddypress made a new folder “02” down a few folders.. but then I still got the upload error.

    after many more emails my server admins found that:

    The issue was that a directory ournewbuddypresssite.com/avatars needed to be created and given permissions of the web server.

    hope this helps anyone with similar issues, and perhaps an update may be needed to the install documentation? not sure if it’s just me or my server issues though..

    (fresh install with Mu V 2.7 and bpress beta2 I’m pretty sure)

    #37134

    In reply to: BuddyPress Beta 2

    danbpfr
    Participant

    i have exactly the same problem as stevefdl

    life2000
    Participant

    I would like to avoid WordPress’s back-end and have my users go straight to Buddypress profile page or another customized page.

    How can I direct the longin page to any other page but WordPress back-end?

    Thank you so much.

    Vida

    #37127

    In reply to: BuddyPress Beta 2

    stevefdl
    Member

    Just upgrade…one problem…

    I cannot change the Avatar of a group I am admin of…I get “Permission Denied.”

    I can do everything else in the group as Admin.

    nicolagreco
    Participant

    i started developing it, but i stopped my work because i read that someone was writing it..

    Nicola

    #3316
    gopeterb
    Member

    I want to give BuddyPress a try on my new site but I am a little confused about how this works with themes you may already have installed on WP.

    Assume I have a site already setup with a theme I like. Can I get the features of BuddyPress and still keep my theme layout?

    Thanks a lot.

    gpo1
    Participant

    Check the site out, update is that its been recoded ground up ! maybe Feb or March.

    Scotm
    Participant

    gpo1

    I’m waiting, just exploring. BTW…the beta version you sent me gave me an error on the site. Is there a newer version? Any idea on timelines? :)

    gpo1
    Participant

    Why don’t you wait for twitme 1.7 to come out !!!

    http://www.phpvrouwen.nl/

    Scotm
    Participant

    Has anyone tried TwitterDash plugin seen here: https://wordpress.org/extend/plugins/twitterdash/?

    This successfully places your Twitter timeline on the dashboard in wpmu 2.7/buddypress beta2 and enables you to post updates to Twitter from a post form. Could this not be modified to appear in the users’ Buddypress profile?

    Thx

    #37119

    In reply to: NewsTweet & Buddypress

    Scotm
    Participant

    Just to follow up on this for anyone wanting to try NewsTweet. It works fine now that I’ve updated the PHP cURL Library.

    Cheers

    #37117
    gpo1
    Participant

    I’ve installed fckeditor in the member-themesbuddypress-memberwire folder where post-form.php resides.

    Now from the http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Integration/PHP

    I’ve followed the guide but not sure whether its correct. So can someone check this code and correct it if needed?

    <?php

    include_once(“/wire/fckeditor/fckeditor.php”) ;

    ?>

    <div id=”wire-post-new”>

    <form action=”<?php bp_wire_get_action() ?>” id=”wire-post-new-form” method=”post”>

    <div id=”wire-post-new-metadata”>

    <?php bp_wire_poster_avatar() ?>

    <?php printf ( __( ‘On %1$s %2$s said:’, “buddypress” ), bp_wire_poster_date( null, false ), bp_wire_poster_name( false ) ) ?>

    </div>

    <div id=”wire-post-new-input”>

    <?php bp_custom_wire_boxes_before() ?>

    <textarea name=”wire-post-textarea” id=”wire-post-textarea”></textarea>

    <?php

    $oFCKeditor = new FCKeditor(‘FCKeditor1’) ;

    $oFCKeditor->BasePath = ‘/fckeditor/’ ;

    $oFCKeditor->Value = ‘<p>This is some sample text. You are using FCKeditor.</p>’ ;

    $oFCKeditor->Create() ;

    ?>

    <?php if ( bp_wire_show_email_notify() ) : ?>

    <p><input type=”checkbox” name=”wire-post-email-notify” id=”wire-post-email-notify” value=”1″ /> <?php _e( ‘Notify members via email (will slow down posting)’, ‘buddypress’ ) ?></p>

    <?php endif; ?>

    <?php bp_custom_wire_boxes_after() ?>

    <input type=”submit” name=”wire-post-submit” id=”wire-post-submit” value=”Post »” />

    </div>

    </form>

    </div>

    #3314
    neuromancer2701
    Participant

    I have been using Dyndns for my buddypress site. I had to change the dynamic dns they gave me and now the my site is totally unusable. I can get a messed up front page but all the links are still trying to use the old one.

    I figure I have to change something in the mysql db does anyone have good directions on how to update the url?

    Thanks

    #37111
    kyleyates
    Participant

    Got it working with all the great help. Thanks! I’m looking forward to when BuddyPress comes out of beta and the photo galleries are connected now that the forums seem to be working quite well.

    #37109

    In reply to: Problems with umlauts

    Burt Adsit
    Participant

    Got anything to add to the trac discussion Karl? https://trac.buddypress.org/ticket/436

    Just disabling the filters is not a good idea. The filtering of content is bound up with stripping sensitive data. Maybe Andy can decouple those two and enable the content filters for those users that get bitten by the libxml2 problem.

    #37101
    svenwiesner
    Participant

    thank you!

    6) Delete the tables that are in format of wp_user_X_activity ….. Not wp_users, just those specific to BP

    – i found nothing like this in my wp_users, running a fresh installation for testing.

    #3305
    markb1439
    Member

    Hi,

    I’m glad to see that the BuddyPress themes have been tweaked to look better in IE. However, I still see issues (in various browsers) in the BuddyPress bar, for example:

    — When you hover over an item, the item gets too big, and overhangs by a few pixels.

    — Various popup items (for example the blog author info) have messed up formatting and sometimes extra space below the item.

    Is a fix underway for these items?

    Thanks,

    Mark

    #3303
    #37088

    In reply to: BuddyPress Beta 2

    Andy Peatling
    Keymaster

    The problem with decisions like this one as it always splits people down the middle. You can’t win either way. :)

    I’ll make sure it’s easy to change.

    #37084

    In reply to: BuddyPress Beta 2

    markb1439
    Member

    I agree. Users will be confused by having a “Blog” menu item and a “Blogs” item. They won’t necessarily understand that “Blog” means the blog of the main/host site. “News” is a much better choice, IMHO. I think people will understand that this means news or other info from the main/host site.

Viewing 25 results - 93,026 through 93,050 (of 94,540 total)
Skip to toolbar