Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 29,601 through 29,625 (of 69,106 total)
  • Author
    Search Results
  • #137156
    Roger Coathup
    Participant

    I take it you used a developer to develop the code to auto generate the usernames from the email address… what does the developer say about this problem?

    On the face of it, it looks like they are applying some hashing algorithm to the email address to generate the username.

    Love it or like it, you should be aware that usernames in addition to email addresses are a fairly fundamental feature of WordPress — attempting to bypass the need for both can lead to issues, e.g. using a raw email address for username, would lead to strange urls for the member profile pages in BuddyPress.

    #137144
    Roger Coathup
    Participant

    try adding this to your theme’s functions.php — there is a known problem with Gravity and BP (should have mentioned this originally!):

    function bbg_switch_gf_hooks() {
    remove_action(‘wp’, array(‘RGForms’, ‘maybe_process_form’), 9);
    add_action( ‘bp_actions’, array( ‘RGForms’, ‘maybe_process_form’ ), 1 );
    }
    add_action( ‘init’, ‘bbg_switch_gf_hooks’, 99 );

    #137142
    Roger Coathup
    Participant

    the username and email address on the registration form are sanitized in the function: bp_core_validate_user_signup()

    Passwords are passed through wp_hash_password() which I assume does any necessary sanitising implicitly.

    Not sure how any additional signup fields are processed.

    As @hugo says — I can’t envisage how a scanner could possibly check this.

    #137141
    000000000
    Participant

    Thanks, but still no luck :(

    Even when I disable AJAX, the page reloads and the data I input to the fields is still sitting there, but with no result message or validation errors

    #137139

    In reply to: Play around!

    Hugo Ashmore
    Participant

    @newpress why on earth have you posted this site here? This is a forum for Buddypress this app you are trying to promote is not even WordPress based, and thus entirely inappropriate to posts here, please do not do so again.

    If you do not want people messing around too much then really you should think about posting an admin loggin on a public forum. I feel you haven’t learnt much from the other post where you blindly downloaded a script and uploaded to your live site? If your Host is troubled then it is firmly your responsibility and you must think about that before leaving links like this.

    I am removing the link as not appropriate to this forum.

    #137137

    In reply to: Can I do this?

    Roger Coathup
    Participant

    You can build this type of site on top of the BuddyPress platform, but it’s custom development work. There’s no ‘off the shelf’ plugin to achieve it.

    #137134
    neononcon
    Member

    Is that a Buddypress site?! Perfect plugin. where to get it?

    #137131

    In reply to: bbpress unread topics

    Kenny
    Member

    @JohnJamesJacoby , I’ve noticed a lot of people wanting unread post highlighting. I would also really like the functionality.

    I’d like to hire you to develop it. Are you interested?

    Msg me here or email directly at kenny@fittedwebdesign.com. Thanks!

    @mercime
    Participant

    @venkateshmothe the custom post plugin has not been updated for BP 1.5+, so delete the plugin from your installation

    Paul Wong-Gibbs
    Keymaster

    > I tried Buddypress User Account Type Lite plug in. But it doesnt work either. Nothing is capable of overwriting Buddypress default user capabilities
    This is possible in 1.6. It’s by no means finished or easy to do, but it’s our first step.

    #137128
    Paul Wong-Gibbs
    Keymaster

    And yes, it’s pretty wet here — though very dry compared to the rest of the country, where flash floods keep happening.

    newpress
    Participant

    A good riddance. Disable Group Forums within buddypress and uninstall the installation. Use bbpress 2 for group forums. At least Posts and topics will ever remain untouched

    #137126
    Paul Wong-Gibbs
    Keymaster

    Both bbPress + BuddyPress dev teams wanted to do more integration, but basically ran out of time to get into the 2.1/1.6 releases, respectively. I think multiple forums, or sharing the same forum across multiple groups, and updating the BuddyPress admin screens to remove mention to the old ‘group forums’, are examples of this thing. We’ll get them in future versions.

    If you’re asking why bbPress 2 hasn’t been integrated into Groups until now, but that bbPress 1.x was, it’s simply because bbPresss 2 is a new plugin. We’ve had the old bbPress 1.x integration into Groups for at least 3 years now. :)

    #137125
    @mercime
    Participant

    == BuddyPress does not even show up in the individual dashboards’ “Plugins” screen ==

    @b747fp It’s because BP can only be network-activated for a multisite installation.

    == how do i get buddypress to work on all 64 sites through MultiSite? ==

    BP is already working on all 64 sites in MS installation by tracking/logging blog posts sitewide

    if you want to have people posting in the Activity stream without going to the main site or in subsite you defined BP to run in, then check this out https://codex.buddypress.org/developer-docs/bp_enable_multiblog/ (see usage)

    #137123
    @mercime
    Participant

    @dailyblog https://wordpress.org/extend/plugins/gd-bbpress-attachments/ for bbPress 2.+ plugin aka Sitewide Forums.

    There’s no updated plugin for the BP Group Forums.

    @mercime
    Participant

    B. At the bottom of the same 16 files, replace:
    `

    `

    with the following (except for registration/register.php):
    `

    <?php the_widget('WP_Widget_Text', 'title=Page Sidebar – Right&text=You could add some widgets in this area.', 'before_title=

    &after_title=

    ‘); ?>

    `

    with the following for registration/register.php:
    `

    <?php the_widget('WP_Widget_Text', 'title=Page Sidebar – Right&text=You could add some widgets in this area.', 'before_title=

    &after_title=

    ‘); ?>

    jQuery(document).ready( function() {
    if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
    jQuery(‘div#blog-details’).toggle();
    jQuery( ‘input#signup_with_blog’ ).click( function() {
    jQuery(‘div#blog-details’).fadeOut().toggle();
    });
    });

    `

    Save files.

    C. Upload the 6 BP folders containing the 16 files you’ve just revised to your server wp-content/themes/collection/

    D. Copy the style modifications made in BP Twenty Ten at https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ and paste to your theme’s stylesheet. Adjust to taste.

    @mercime
    Participant

    @lakhlu late as this may be … Based on the HTML structure of your theme, you need to change 16 template files within the 6 BP folders transferred to your collection theme folder in server during the compatibility process.

    If you’ve previously changed any of the BP template files in your theme folder in server, replace all of them for a clean slate by deleting the 6 BP folders – /activity, /blogs, /forums, /groups, /members, and /registration – then re-run Appearance > BP Compatibility.

    Download the 6 clean BP folders to your computer hard drive.

    A. At the top of each of those 16 template files I linked to above, replace
    `

    `

    with the following:
    `

    <div id="post-” >

    `

    Then, in each of 16 files, you’d like to change the BP Templates’ page title’s header tag from `

    ` or `

    ..

    ` to `

    // Titles Of Respective BP Page Templates //

    `, AND move tag and title to above `

    `. Just watch out when you do this in the /activity/index.php page.

    Save files.

    @mercime
    Participant

    You’re welcome. Marking this topic as resolved.

    @mercime
    Participant

    B. COPY your theme’s sidebar.php file and Save As > sidebar-buddypress.php

    Open up sidebar-buddypress.php and at the TOP of the file, before all other code, add the following:

    ``

    Then at the very BOTTOM of the same file, below all other code, add the following
    `

    jQuery(document).ready( function() {
    if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
    jQuery(‘div#blog-details’).toggle();
    jQuery( ‘input#signup_with_blog’ ).click( function() {
    jQuery(‘div#blog-details’).fadeOut().toggle();
    });
    });

    `

    Save file.

    C. Upload header-buddypress.php and sidebar-buddypress.php to your theme folder in server wp-content/themes/avenue/ in the same directory where your regular header.php and sidebar.php files are

    D. Final note: Copy the style modifications for some BP elements https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ and paste those at the bottom of your theme’s stylesheet, then adjust to taste.

    @mercime
    Participant

    @workingman Based on the HTML structure of your theme, you will be only need to create two new files, header-buddypress.php and sidebar-buddypress.php to make the BP templates compatible with your theme.

    If you’ve revised any of the BP template files transferred to your avenue theme folder in server during the BP Compatibility process, please delete the 6 BP folders transferred to your theme folder in server – /activity, /blogs, /forums, /members, /groups, /register – then re-run Appearance > BP Compatibility again to make sure that you have clean template files.

    A. COPY your theme’s header.php and Save As > header-buddypress.php

    Open up header-buddypress.php and at the BOTTOM of the file, below other code contained within, add this:
    `

    `

    Save file.

    #137116
    newpress
    Participant

    And also all the bbpress plugins like bbpress topic location and bbcode are well served within groups. I wonder why these buddypress guys dont cater it at first place (bbpress 2.0) without tweaking an old version. Burgess Hills must be under heavy rain or bbpress raining on buddypress’s parade?

    #137115
    newpress
    Participant

    Marvelous. This thing is going to keep me stuck with bbpress+buddypress (for how long? I have no clue). bbpress new version is deeply integrated into buddypress provided Buddypress group forums is disabled and uninstalled.

    go to bbpress forums and creat a new forum or category and in the bbpress settings select it as the group forums base. At the moment you cannot have more than one forum or a category for a group. I hope things will change.
    And also it promises changing things wont erase previously owned stuff. (Dont forget to check whether “Forums” in the “Settings” or “Component” tab (I dont remember where it is) of Buddypress is unchecked)

    #137114
    modemlooper
    Moderator

    Deactivate BuddyPress by deleting the BuddyPress folder so you can get too site.

    The correct steps to update a BuddyPress site are

    1. place your site into a maintenance mode. How you do this is up to you. There are many WP plugins for this.

    2. switch your theme to bp-default.

    3. deactivate every plugin including BuddyPress.

    4. upgrade the BuddyPress plugin.

    5. If you need to re-activate bp-default do so.

    6. Check your site now to see if the upgrade was successful by going to the front end. log out and in, post activity and forum posts, check avatar uploads. And any other things to check.

    7. if you are using a custom theme then test your custom theme the same way you did with bp-default.

    8. if custom theme checks out test plugins one by one using the same method. After checking a plugin and its ok deactivate it.

    9. if you find an error with a certain plugin then deactivate it. move on to next plugin.

    10. post in this forum the error you may have found with a certain plugin. the developer may have not updated a plugin and your findings can help them. It’s the least you can do to give back when using FREE open source software.

    All of the above should be done on separate install just for testing. This is to avoid the horror of updating only to find your killer site feature (plugin) completely broken. I usually do a BuddyPress install on the same server so it has similar configurations to get realistic tests.

    I usually do it on a sub domain: mytest.url.com

    This test site is for you only so you can test away. Just make sure you block sign ups and block it from search bots etc. I run a maintenance mode full time on my test install.

    Since you already updated just get to the backend and then deactivate all plugins. Reinstall BuddyPress and activate. Then do the one by one test stated above. It’s most likely a plugin conflict.

    @mercime
    Participant

    @mahdiar you need to match HTML structure of BP template files with your theme’s structure. Open up your theme’s header.php, copy all code, paste code in pastebin.com, click submit, and post the generated URI here. Then post the codes of your theme’s sidebar.php, index.php, page.php, and footer.php as well

    sindbad_chen
    Member

    I have just tried to install BuddyPress on my WP version 3.4.1 and using the salutation theme.
    On click Finish and I get the below error:
    Warning: Illegal offset type in D:AppServwwwwordpresswp-contentpluginsbuddypressbp-coreadminbp-core-update.php on line 642.
    Any ideas / suggestions ?

Viewing 25 results - 29,601 through 29,625 (of 69,106 total)
Skip to toolbar