Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 36,051 through 36,075 (of 69,109 total)
  • Author
    Search Results
  • ezramart
    Member

    Travel Junkie..good job.. It solve my prob…me too was getting an error!!

    #122584
    @mercime
    Participant

    == usually is a different error everytime I download bbpress ==
    So you’re going for the SiteWide forums and you cannot install the bbPress plugin when prompted? I would deactivate BuddyPress.and then go to Plugins > Add New and install bbPress 2.0. See if you can install bbPress if BuddyPress is deactivated.

    If yes, then cool. Go to BuddyPress > Forums and choose the Sitewide Forums.
    If you still cannot install bbPress 2.0 plugin, then I suggest going to bbPress forums https://bbpress.org/forums/ and log in with same username and password you used to log in here.

    #122530
    @mercime
    Participant
    @mercime
    Participant
    #122521
    DavidGMII
    Member

    I’ve been contacting my host all day, been trying different things myself, and all I can say is I’m completely frustrated. An awesome plugin I’m sure, if I can only get it to work ;-)

    My memory limit is 99M, with a ceiling of 64M per script (edited php.ini). This should allow plenty of room for buddypress, I should think. I deactivated all my other plugins, added a code to the wp-config file to increase memory as well.

    My host was at a loss, so they referred me back to you guys. Error logs don’t show anything of significance.

    Any ideas? I would really like to get this plugin working, but feel like I’m at a total brick wall. :(

    Thanks,
    David

    #122518
    brambo23
    Member

    Well i found the problem, you must have at least 1 field in the base profile field or the signup will not work at all

    #122516
    brambo23
    Member

    bump, still unable to find the problem

    dude
    Member

    I started a style.css from scratch, but I was not sure what to put in the Theme URI so just copied the buddypress default and added my child themes name at the end.

    I was not sure what to put in the Author URI so again just copied the buddypress default Author URI

    hope this helps

    dude
    Member

    I did not copy functions.php over

    2) did not @import parent theme’s default .css

    I followed the instructions given here:

    https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/

    @mercime
    Participant

    == when I go activate my child theme in admin I lose my sites header banner, and all the work associated with my menus is broken..? ==
    You don’t need to copy over the functions.php of bp-default at all. Seems to me that this is more of a CSS mixed with missing tags issue. How did you add styles to your child theme?
    1) @import parent theme’s default.css and then add your styles in your own stylesheet OR
    2) did not @import parent theme’s default.css and created stylesheet from scratch?

    #122507
    Knight Fight
    Participant

    I was having similar problems, slow to load and lots of resources. The problems seemed to dissapear when I removed a lot of the profile fields.

    dude
    Member

    why does start a new post take me to the community page?

    anyway had to jump in here because I can’t start a fresh post..

    like the title of this blog states (After activating child theme tags and categories not working correctingly ?)

    I followed the instructions for creating a new bp child theme and put the following in my new style.css file:

    /*
    Theme Name: BuddyPress (my child themes name)
    Theme URI: https://buddypress.org/extend/themes/my child themes name
    Description: child theme for BuddyPress.
    Version: 1.0
    Author: my name
    Author URI: https://buddypress.org/
    Template: bp-default
    Tags: buddypress, two-column, grey, dark
    */

    when I go activate my child theme in admin I lose my sites header banner, and all the work associated with my menus is broken..?

    I copied all my previously edited files from the bp default theme to my child theme, but did not move or touch anything associated with the bp default functions.php, should I be doing this even though I do not need to make any edits with this file?

    Using bp 1.5 with wp 3.2.1 the bp default template

    Many thanks in advance

    dubwarrior
    Member

    Hi
    how do you do this ‘.. do not have to place those pages in the menu they just need to be there.,

    its strange because the registration page did not show up in the menu which was great; but the activation always created a visible page in the menu. In order to correct this i made the activation page a parent page to the registration page so it would not be visible.

    it works well but the problem is when register and create a site it show that the main admin site is linked to any new site that is created???

    #122498
    Di_Skyer
    Member

    @scylderon hi, have ??? solved this quest?

    I am looking for a similar solution

    #122489
    buddyrhev
    Member

    maybe my own made custom theme wasn’t compatible in buddypress 1.5, even i used r-a-y and boone’s bp template pack on my own made custom theme already. can anyone help me on how my own custom theme be compatible in buddypress 1.5?… i really need to fix the activity stream :'(

    #122482

    In reply to: Basic Forum Help

    correct, I use both group forums and site wide forums. I have renamed the page assigned to buddypress to “group discussion” the forums for buddypress appears fine. just the one from site-wide doesn’t work. sitename.com/forums/ page only displays a title. I’ve created multiple forums for site-wide forums, individual forum works fine as well. just this forums page doesn’t

    #122478

    I tried xprofile_get_field_data() but it didn’t work, maybe I’m just too dumb.. :)

    So I tried it using MySQL, here is my function wp_new_user_notification, I edit wp-includes/pluggable.php

    function wp_new_user_notification($user_id, $plaintext_pass = ”) {
    $user = new WP_User($user_id);

    $user_login = stripslashes($user->user_login);
    $user_email = stripslashes($user->user_email);
    $buddypress_fields = $user_id;

    // The blogname option is escaped with esc_html on the way into the database in sanitize_option
    // we want to reverse this for the plain text arena of emails.
    $blogname = wp_specialchars_decode(get_option(‘blogname’), ENT_QUOTES);

    $message = sprintf(__(‘New user registration on your site %s:’), $blogname) . “rnrn”;
    $message .= sprintf(__(‘Username: %s’), $user_login) . “rnrn”;
    $message .= sprintf(__(‘E-mail: %s’), $user_email) . “rnrn”;

    // Add Custom Fields from buddypress table to admin email – Start

    $buddypress_result_ = mysql_query(“SELECT
    wp_bp_xprofile_fields.name,
    wp_bp_xprofile_data.value
    FROM wp_bp_xprofile_fields, wp_bp_xprofile_data
    WHERE
    wp_bp_xprofile_data.user_id = $user_id
    AND
    wp_bp_xprofile_fields.id = wp_bp_xprofile_data.field_id
    ORDER BY
    wp_bp_xprofile_data.field_id”);

    while($buddypress_row = mysql_fetch_array($buddypress_result_))
    {
    $fields = $buddypress_row;
    $fields_value = $buddypress_row;
    $message .= $fields . “: rn”;
    $message .= $fields_value . “rnrn”;
    }

    // Add Custom Fields from buddypress table to admin email – End

    @wp_mail(get_option(‘admin_email’), sprintf(__(‘[%s] New User Registration’), $blogname), $message);

    if ( empty($plaintext_pass) )
    return;

    $message = sprintf(__(‘Username: %s’), $user_login) . “rn”;
    $message .= sprintf(__(‘Password: %s’), $plaintext_pass) . “rn”;
    $message .= wp_login_url() . “rn”;

    wp_mail($user_email, sprintf(__(‘[%s] Your username and password’), $blogname), $message);

    }

    #122477
    Mike84
    Member

    @mercime I have managed to get past the white screen. It was due to my template, Roots Framework, use get_template_directory(). The template directory would now be bp-default. I changed this to get_stylesheet_directory() and my template is loading but its not loading my css. Any ideas there? The site can be viewed at http://www.cozanigera.org/web if that helps at all.

    #122476
    dsg257
    Member

    which file has the content-main in it i have the same problem but only on the buddypress generated pages

    modemlooper
    Moderator

    You need to have an activate page as well as register. You do not have to place those pages in the menu they just need to be there.

    #122418
    brambo23
    Member

    here is a interesting thing, even if i don’t enter anything into the fields, and just click Complete sign up. It takes me back to the home page without any notices. I will be investigating that but thought this might be a clue as to the problem.

    #122416
    brambo23
    Member

    Well i followed your recommendations, switched to a new host with the recommended php version, and that still didn’t work. Now can I get a different suggestion?

    #122415
    elyautia
    Member

    But I have a new problem. I cant put stuff on my widget sidebars after the update….This is a theme problem or the update?

    #122414
    elyautia
    Member

    disRegard this thread. I fix the problem…

    It was a plugin problem. What I did, just de-activate all the pluggins and active them one by one with the spanish .mo file and I found the problem.

    #122410
    DavidGMII
    Member

    Hello,

    I did add a line in the .htaccess file increasing the memory to 96M, however when I uploaded that particular .htaccess file, the site crashed again, as if it didn’t like the code I had added. Is there some other way to increase the memory? I’ve heard of the php.ini file, but I’m not sure where its located/if I have access to it.

    The site still reads this message when I activate buddypress

    “Server error
    The website encountered an error while retrieving http://test2.domain.com/wp-admin/plugins.php?activate=true&plugin_status=all&paged=1. It may be down for maintenance or configured incorrectly.”

    Thanks.

Viewing 25 results - 36,051 through 36,075 (of 69,109 total)
Skip to toolbar