Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 48,901 through 48,925 (of 68,969 total)
  • Author
    Search Results
  • #87000
    Hugo Ashmore
    Participant

    <snip>I’m worried that BP won’t be around long term

    I don’t see why it wouldn’t be? I think the issue is moving BP forward at a pace and in a direction that is felt correct and to start addressing issues raised about the core with each milestone reached and this is happening. As I said in my last paragraph above I don’t consider BP a fully mature App yet but it’s young, and like any project to some degree you don’t really know some of it’s short comings until people like yourself do start using it in earnest and providing / feeding back real world experience.

    <snip>This is nothing short of a hobby site, or at the very least is run as such

    I think the criticism unjustified, at least as applied to this actual dev site, to the project as a whole, possibly until that is people like yourself start using the app for sites that are more than hobby projects. As for buddypress.org the core team are presently attempting to correct and improve the site.

    I think the point has been raised that long rambling threads that simply point out issues or that seem to simply moan are not constructive BUT from time to time they have there uses such as the now infamous “Is BP dying thread” that thread helped raise issues that were of concern and that are now being addressed.

    Paul Wong-Gibbs
    Keymaster

    Have a look at https://codex.buddypress.org/how-to-guides/customizing-labels-messages-and-urls/ — a little complicated to understand how to do it the first time, but recommended.

    #86996
    Alan Smithee
    Member

    Grow up.

    I’ve been in contact with two sites featured here: https://buddypress.org/showcase/ and they agree with what I wrote and that is why I returned to post.

    I have more members than any site BP has ever featured. I only mention that because I’m not some person upset that I can’t figure out how to get avatars working. I’m worried that BP won’t be around long term.

    This is nothing more than a hobby site, or at the very least is run as such. Any criticism is construed as confrontational and hostel.

    I’ve run forums with thousands of members for years and never had to lock a post. What was the threat? Seriously?

    You do realize that the sites that successfully run BP are your biggest assets…. right… right?

    #86994
    tomslick
    Participant

    I had the same issue.

    #86993
    Tony Zeoli
    Participant

    You should be able to export your DB from GoDaddy using phpMyAdmin. I have done this and it works fine. You have to follow the instructions posted by mercime on the WordPress Codex.

    Now, if you are trying to IMPORT your DB the same way on a new host DB, hosts like 1and1 limit your MySQL upload to 2MB only. This means you have to use the command line with linux commands to perform a “mysqldump”. Performing this action, will backup your DB file to a folder. Then, you FTP it down to your desktop. Upload it to the folder on your new server and dump it into the new DB by performing a “mysql” action. You can find the commands in both links provided by mercime.

    We just exported and imported in this way from GoDaddy to 1and1. Took me a minute to figure out how to perform a mysql action, but once I learned how to do it, it was a breeze.

    What you might find, is that on your new host you don’t have enough php memory. That may be an issue. I’m facing that right now.

    #86991
    @mercime
    Participant
    #86988

    In reply to: SMF Forum importer

    normen
    Member

    Its all explained on the plugin main page. You first import the data, then convert it and then activate the internal forums of buddypress using the config file in the plugin directory. You have to follow at least step 1) and 2) of the description in the page and then you either have to “create groups” for the forums (step 4) or you install “buddypress forum extras” which shows you the forums without them being in groups. Also, dont forget to do the bbpress update after importing!

    The skipped topics are situations where the data cannot be assembled, that is a post links to a non-existant topic or creator id. We had some of those but it seems its only posts from deleted boards or something. I have commented out the output of the post content (the only hint at where it belongs as there are no numbers) in buddypress-smf-functions.php, line 651 for example. You can uncomment that to see the skipped posts content.

    Cheers,
    Normen

    #86984
    alanchrishughes
    Participant

    So there is no built in way to do this like with WordPress blogs? I’ve looked into the phpadmin and their import export, but either it refuses to import into my new installation what I exported from the old installation, or it just doesn’t do anything at all.

    From my Godaddy account it has 10 different export options

    CSV
    CSV for MS Excel
    MIcrosoft Excel 2000
    Microsoft Word 2000
    LaTeX
    Open Document Spreadsheet
    Open Document Text
    PDF
    SQL
    YAML

    Am I looking in the right place?

    normen
    Member

    Hey,

    we use your plugin on our (not yet in production) jmonkeyengine.org site and I must say it rocks.

    We intend to use the system so users can have a “tag” that shows where they belong and what they do. In our current forums we have tags like “moderator”, “manager”, “developer”, “advocate” etc. We also want to use the buddypress forums so I added the tag to the forum poster names as well like this:


    add_filter("bp_get_the_topic_post_poster_name","jme_get_the_topic_post_poster_name",0);
    function jme_get_the_topic_post_poster_name( $old_string ) {
    global $topic_template;

    if ( !function_exists("bpgc_has_identifying") ) {
    return $old_string;
    }

    $identifying = bpgc_has_identifying($topic_template->post->poster_id);
    if ( $identifying ) {
    $old_string = $old_string." (".$identifying->name.")";
    }
    return $old_string;
    }

    Maybe its a useful feature for others as well.

    Also, maybe you could add some more restriction options like forum creation etc. Its something we currently struggle with because we dont want to allow every group moderator to be able to create a forum for the site.

    Any other ideas I get, I will post them here, thanks for this plugin :)

    Cheers,
    Normen

    #86981
    justbishop
    Member
    #86977
    justbishop
    Member
    justbishop
    Member

    Thanks! I’ll try that ;)

    And no, not a plugin, I just edited the Buddypress .po file to change the wording.

    ETA: GAHH!! That worked! Thank you so much! Figures it would be a simple CSS thing. I just hadn’t been able to get the syntax quite right :P

    #86974
    @mercime
    Participant

    Nice one firetag, thank you.

    #86971
    @mercime
    Participant

    Backup database of whole installation and backup server WP/BP files and folders – don’t forget to get backup of .htaccess and wp-config.php file in root as well.
    If you’re keeping same domain name and just pointing it to new webhost, it’s a simple process.
    If you’re changing domain name and getting new webhost. You’d need to do a search and replace of site URL in backup SQL file and import to new database.

    justbishop
    Member

    OK, I found this in bp-core-adminbar.php. Say I wanted to get rid of the text “Blog Authors”, but only for blog ID# 12:

    // **** “Blog Authors” Menu (visible when not logged in) ********
    function bp_adminbar_authors_menu() {
    global $bp, $current_blog, $wpdb;

    if ( $current_blog->blog_id == BP_ROOT_BLOG || !function_exists( ‘bp_blogs_install’ ) )
    return false;

    $blog_prefix = $wpdb->get_blog_prefix( $current_blog->id );
    $authors = $wpdb->get_results( “SELECT user_id, user_login, user_nicename, display_name, user_email, meta_value as caps FROM $wpdb->users u, $wpdb->usermeta um WHERE u.ID = um.user_id AND meta_key = ‘{$blog_prefix}capabilities’ ORDER BY um.user_id” );

    if ( !empty( $authors ) ) {
    /* This is a blog, render a menu with links to all authors */
    echo ‘

  • ‘;
    _e(‘Blog Authors’, ‘buddypress’);
    echo ‘
    ‘;

    echo ‘

    ‘;
    echo ‘

  • ‘;
    }
    }

#86968
justbishop
Member

@sbrajesh: Eeek! I have no idea what plugin would do that! I certainly don’t remember installing one with that as my goal!

I did edit the .po file to change all instances of “blog” to “shop”, so all but the display terminology should be the same as the “blog owners” link that is in the default Buddypress install :/

#86967
Stephen Farr
Participant

Already tried that, but it didn’t work…

#86966
Brajesh Singh
Participant

Thanks for pointing to the site. It seems by checking the code, that link is not added by the buddypress but is added by some other plugin. Can you name that plugin, since we need to get rid of an action hook associated with that plugin.

#86965
Alexander
Participant

@boonebgorges: I have filed a bug (because I’m impatient) :)

#86964
justbishop
Member

@sbrajesh: On the following site, I want to get rid of the text “Shop Owners” (and the downward arrow, of course) in the BP admin bar so that it looks exactly like my main site’s bar

http://www.clothunderground.com/search/

As you can see, using the code you posted did cause the “Shop Owners” menu to not drop down and show the name/avatar of the site owner of this particular blog, but it didn’t get rid of the “Shop Owners” text in the admin bar itself.

#86961
justbishop
Member

@sbrajesh: Wait!You’re correct! It DOES seem to have removed the stuff that drops down from the “Blog Owners” menu (the name and avatar of the owner of blog 12), but I need the actual “Blog Owners” text removed from the admin bar completely.

#86959
Anointed
Participant

Thank you for the plugin. It is a great start and will solve many issues I have also been facing.

#86958
Hugo Ashmore
Participant

So you can upload, I presume, through the WP interface, (media library) and now you are trying to install the BP plugin but it’s not finishing? Can you upload the plugin via FTP and get it installed that way?

#86957
justbishop
Member

@sbrajesh, thanks so much for the reply! Unfortunately, that didn’t work in either file :(

#86956
Stephen Farr
Participant

Thanks for the advice! I changed the file numbers to 755, and it gets past the uploading stage and uploading media works, but the plug in install stops halfway through. It gets to:
Unpacking the package…

Installing the plugin…

And it then stops loading. Any help??
Thanks again!

Viewing 25 results - 48,901 through 48,925 (of 68,969 total)
Skip to toolbar