Search Results for 'Create an Account'
-
AuthorSearch Results
-
February 20, 2010 at 11:27 am #64357
In reply to: Cannot Create Groups or Blogs
Famous
ParticipantI have the same problem. I used the bp-default and created a child theme named default and put it under the themes directory. I did this to replace the original default theme. I was hoping that when new users create an account they would assume the child default theme automatically, however, I noticed when test creating blogs that they don’t work at all since 1.2 buddypress. I deleted my original default theme and all 100 blogs are broken now. Will you have a fix for this soon?
error for new blogs:
The blog you have requested is not installed properly. Please contact the system administrator.
old blogs will not connect to new default child theme?
Thanks
February 19, 2010 at 2:45 am #64071In reply to: Nothing appearing under "My Blogs"
David Lewis
ParticipantI just recreated this problem by accident!!!!!!!!!
1. Logged out of the site
2. Registered myself as a new user
3. Activated the account
4. Logged in as the new user. Blog listings disappeared
WTH?!?!?!? This is a SERIOUS bug! I’m going to try to replicate again using a fresh install and if I can replicate it again… I’m submitting to trac. This is brutal!!!! My client needs to go live on Monday and unless I can find a fix for this… we’ll have to redo the entire database again. And the client just finished creating all his content.
February 18, 2010 at 9:35 am #63917In reply to: Plugin request: Removing "create a blog" options
Nick Watson
ParticipantI know you’ve solved the problem but I recently used this as a solution, this code removes the Blogs button from both your “My Account” menu in the admin bar, and the Blogs button in your profile navigation.
Put this code in your bp-custom.php file:
function remove_blog_buttons(){
remove_action( 'bp_setup_nav', 'bp_blogs_setup_nav' );
remove_action( 'admin_menu', 'bp_blogs_setup_nav' );
}
add_action('plugins_loaded','remove_blog_buttons');I hope this helps
February 18, 2010 at 12:42 am #63866In reply to: Welcome Pack enabled but doesn't seem to work
geoffm33
ParticipantSame issue here. Set it up and created a test account but no email was sent.
WP 2.9.2 and BP 1.2
Also, I needed to edit the plugin to allow up to 1000 listed in the message from pulldown so that I could select my user account.
Thanks!!
February 16, 2010 at 4:24 pm #63532In reply to: Nothing appearing under "My Blogs"
Jean-Pierre Michaud
ParticipantIF: >> wp-admin >> Site Admin >> Options >> Allow new registrations >> Only user account can be created
is chosen, you can not have blogs, the logic stand… this is a little flaw in WPMU, not buddypress… this will be corrected with WP3.0
February 10, 2010 at 8:54 pm #63026In reply to: Search Function in Admin Bar
Nick Watson
Participantin your plugins folder (if you don’t already have one created) create a file called bp-custom.php
within that file put:
<?php
function new_search_action() {
global $bp;
return apply_filters( 'new_search_action', $bp->root_domain . '/search' );
}
function custom_adminbar_search() {
$mobSearch = '
<li class="align-right"><form action="' . new_search_action() . '" method="post" id="search-form">
<input type="text" id="search-terms" name="search-terms" value="" />
<input type="submit" name="search-submit" id="search-submit" value="" />
' . bp_search_form_type_select() . '
' . wp_nonce_field( 'bp_search_form' ) . '
</form></li>
';
echo apply_filters( 'bp_search_form', $mobSearch );
}
add_action('bp_adminbar_menus', 'custom_adminbar_search', 100);
?>This will get your search to the top, and placed on top of your “visit” button. If you get rid of the
class="align-right"in the list tag, then it’ll put it beside the notification button. You’ll notice that things seem a little screwy when you scale the page, so you’ll need to play around with putting a div around it etc etc. But at least this’ll get it up there for you.To remove items from your admin bar:
function modify_adminbar(){
remove_action( 'bp_adminbar_logo', 'bp_adminbar_logo' );
remove_action( 'bp_adminbar_menus', 'bp_adminbar_login_menu', 2 );
remove_action( 'bp_adminbar_menus', 'bp_adminbar_account_menu', 4 );
remove_action( 'bp_adminbar_menus', 'bp_adminbar_blogs_menu', 6 );
remove_action( 'bp_adminbar_menus', 'bp_adminbar_notifications_menu', 8 );
remove_action( 'bp_adminbar_menus', 'bp_adminbar_authors_menu', 12 );
remove_action( 'bp_adminbar_menus', 'bp_adminbar_random_menu', 100 );
}
add_action('plugins_loaded','modify_adminbar',99);This removes ALL of the previous functions, so lets say you want to remove.. the visit button:
function modify_adminbar(){
remove_action( 'bp_adminbar_menus', 'bp_adminbar_random_menu', 100 );
}
add_action('plugins_loaded','modify_adminbar',99);And there you go. Hope that helped.
January 28, 2010 at 6:17 pm #61927In reply to: Spam, Spam and more spam
Andy Peatling
KeymasterYou can change your registration slug by adding this to your wp-config.php file (above the stop editing line):
define( "BP_REGISTER_SLUG", "create-an-account" );You can then happily upgrade without worrying if it will break.
Reference:
https://codex.buddypress.org/how-to-guides/changing-internal-configuration-settings/
January 28, 2010 at 7:22 am #61876In reply to: Spam, Spam and more spam
guristu
ParticipantI have adjusted the wp-hashcash plugin to work with buddypress signup. Here is what I did: I got the wp-hashcash plugin and I added the following code to the file:
Code:function wphc_check_signup_for_bp(){global $bp;
// get our options
$options = wphc_option();
$spam = false;
//if( !strpos( $_SERVER[ ‘PHP_SELF’ ], ‘wp-signup.php’ ) )
//return $result;// Check the wphc values against the last five keys
$spam = !in_array($_POST[“wphc_value”], $options[‘key’]);if($spam){
$options[‘signups-spam’] = ((int) $options[‘signups-spam’]) + 1;
wphc_option($options);
$bp->signup->errors[‘spam’] = __(‘You did not pass a spam check. Please enable JavaScript in your browser.’);
} else {
$options[‘signups-ham’] = ((int) $options[‘signups-ham’]) + 1;
wphc_option($options);
}}
add_action( ‘bp_signup_validate’, ‘wphc_check_signup_for_bp’);function wphc_error_hook_register_page(){
do_action(‘bp_spam_errors’);
}
add_action(‘bp_before_register_page’, ‘wphc_error_hook_register_page’);Then, under the line (line number about 507)
Code:add_action( ‘signup_hidden_fields’, ‘wphc_add_signupform’ );I put this line:
Code:add_action(‘bp_after_registration_submit_buttons’, ‘wphc_add_signupform’);Then I activate the plugin. It should keep spam bots from being able to create accounts, but humans spammers can still do it. Anyway, if you can’t get it to work, let me know via PM and I will try to send you the file.
Later
January 25, 2010 at 3:30 am #61547D Cartwright
Participant1) I think you’ll still see a lot of activity stream updates but it should only consist of actual updates (e.g. when you add a new line of text/etc)……hopefully anyhow

2) Unfortunately the workaround for this has been to make it so that the main admin account (assuming account #1 in the WP db) gets lumbered with this. Hopefully I’ll get something nicer sorted in future. It doesn’t look that hard to do but would just involve a bit more work using the lower level functions rather than the higher level wpmu ones.
3) Lol. No worries. I do have a few plans for improvements in that area but nothing too drastic. Warnings about (other) people saving and slightly quicker updates regarding people no longer editing the post might be nice.
Frontend wiki page creation for non-admins
Test group here: http://namoo.co.uk/groups/frontend-page-creation-testing/
I’ve implemented initial support for frontend page creation by non-group admins. This feature is disabled by default in groups but can be enabled at group creation or in the group admin screen. Basically this allows members of groups to create their own wiki pages at will.
Warning: Currently only group admins can ‘remove’ these pages and group members aren’t limited in any way in regards to how many pages they can create. Also worth noting: the navigation styles have *not* been built with this in mind. As this feature is outside of the scope of our current project I can’t guarantee that decent styling will be forthcoming anytime soon either (my css skills are le suck and Ryo has way too much work on to be distracted by me getting carried away with extra features this late into the project)
January 23, 2010 at 12:40 am #61406In reply to: Email Server
5647432
InactiveIf you have Cpanel yo can use this code for activate external mail for yours users
http://www.zubrag.com/scripts/cpanel-create-email-account.php
January 21, 2010 at 5:07 am #61252In reply to: BuddyPress screencasts – what do you want to see?
peterverkooijen
Participant… if the current interface is not intuitive enough then no matter how many screencasts are created users will still be confused.
Absolutely agree. You should not have to educate users how to use your site. Please, if you have time to spare, use it to help improve the user interface instead of making videos.
Also a clear explanation to the users between their buddypress profile and blog dashboard would be nice!
How about closing the blog dashboard to members and bringing the functionality into the Buddypress profile, under Settings or Account, under the site’s theme?
I’ll have to figure that one out when I have the time…
January 20, 2010 at 7:32 pm #61223In reply to: New BP Chat plugin for Buddypress
danbpfr
Participanti installed David’s chat plugin on the FR demo site http://buddypress-fr.net/bpdemo/
(wp 2.9.1.1 & bp 1.1.3)
Feel free to create your account and test it !
January 13, 2010 at 2:08 am #60666In reply to: Site Wide Activity stream not working
bbrian017
Participant@dennissmolek it’s bloggingwire dot com
@Boone Gorges
1. The links move down eventually to only be replaced by other blog articles that do the same thing.
If you look at the site you will see older stuff at the top and newer stuff at the bottom.
I do have time stamp issues but it’s not sure if it’s actually related. All my time stamp say
[Use GMT Timezone] ago
Sign up create and account and you will see as you view your own activity.
January 12, 2010 at 2:28 am #60617In reply to: Moderate members
Tom
ParticipantSeems that only fixed the admin panel problem.
However it’s throwing up errors on the front end now.
To be honest I think this plugin is maybe outdated.
I’ll list here my site’s configuration, and what errors I’m getting in-case anyone fancies making this plugin work as it should.
OK.. Groups and Blogs are disabled site-wide (Except for the main site blog).
The setting “Allow new registrations” is set to “Only user account can be created.”
And “Registration notification” set to “Yes”
1st problem (As previously mentioned in this thread)… When I go to the admin panel and try to edit the options for the plugin, and hit save, it throws up the errors that I posted here:
https://buddypress.org/forums/topic/moderate-members?replies=1#post-33514
I managed to get rid of those errors by doing as mentioned here:
https://buddypress.org/forums/topic/moderate-members?replies=1#post-33517
However… it turns out that was not a fix for the plugin, so I reverted the file back to original state.
OK, I couldn’t edit the emails that would be sent out due to those errors, but I could of worked around that (editing within the file itself)… so I continued to the next step, which was to try and create a new account, to see if the plugin actually done what it’s supposed to.
After entering all my required fields, and hitting the submit button, I was taken to the upload avatar page. I was also shown the “Check your email address for your activation email” notice. Also, at the top of the page these errors appeared:
Warning: implode() [function.implode]: Invalid arguments passed in /home2/puezq/public_html/mysite.com/v2/wp-content/plugins/bp-registration-options/bp-registration-options.php on line 639Warning: implode() [function.implode]: Invalid arguments passed in /home2/puezq/public_html/mysite.com/v2/wp-content/plugins/bp-registration-options/bp-registration-options.php on line 642Since I know only very little php, I had a look to see what those lines were in the plugin php file, but done nothing with them. Here are those lines:
639
$bp_groups_str = implode(",", $bp_groups);642
$bp_blogs_str = implode(",", $bp_blogs);So I’m guessing these errors are showing because I have blogs and groups disabled on the site?
However the plugin php file is full of terms relating to blogs and groups, so I saw no point just removing those lines from the file as other errors would appear from somewhere… surely?
Anyway, to see what happened next- I then uploaded an avatar, successfully. The errors at the top of the page disappeared when it was uploaded.
I then clicked on the activation link in the email I received, and logged into the site. I was able to EDIT my profile and browse the site pages normally, but not able to view member profiles, my own public profile, or even view the members search page.
I then received an email saying there was a new member registration (to my admin email)… and the notice also appears in the admin panel saying there’s a user awaiting moderation.
And that’s where Im at.
Come to think of it, and after having read through this post several times now- It seems that the plugin’s actually working… with the exception of those errors that are flagging up in the admin panel (when editing the emails that will be sent out), and at the top of the front end page. Hopefully one of you guys can tell me how to get rid of those errors… or at least the ones on the front end.

This truly does sound like a fantastic plugin, but with non-existent support at the forum link in the README.txt file, I think it can only carry on living if one of you geniuses are willing to fix the bugs.
Unless anyone knows of another plugin that will allow new member moderation? (I have searched, but couldnt find anything).
January 3, 2010 at 5:23 pm #59949In reply to: Forum topic delete doesn't delete "activity" feeds
Anton
ParticipantThis is quite a big problem. I deleted a user account but it didn’t delete the forum posts the user made. It only deletes his name in the feed but the content of the topic is still on the forum for the specific group. Now if it was a spammer(s) you would have to filter through all the groups/forums that they created and replied on topics and delete them. This will be quite tedious as you can’t search for the user in the database and delete all the topics related to that user because his name is deleted but not the content. You would have to manually filter through everything and I don’t think it will work.
John James Jacoby – You mentioned
“Which version of BP? This will be fixed in 1.2 as I think it’s just a missing or incorrectly named action. “
Where is this action so that I can insert it into my BP 1.1.3 installation? Is it simple?
January 2, 2010 at 6:56 pm #59911Paul Wong-Gibbs
Keymaster1) https://codex.buddypress.org/how-to-guides/customizing-labels-messages-and-urls/
2) Go to your wp-admin area, in the BuddyPress menu go to “Component Setup”. This lets you disable/enable each component of BuddyPress. If you disable, they are removed from menus. If you want the component active but not on your menu, you will need to create a child theme: https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/
January 1, 2010 at 7:42 pm #59885In reply to: Soon to release bp group control plugin
Anonymous User 96400
Inactivesetting up different group types is fairly easy. You just have to attach some groupmeta to the group, that basically let you add as many types as you’d like. Then you just check the metadata to figure out what type of group you’re in. Using the groups API you can then add different functionality for different groups.
I’ve written a types-plugin for one of my sites. It doesn’t have an interface, though. The 3 types I needed are hardcoded into it, so it’s really not suited for a release at the moment. There’s also a lot of more stuff, like a shopping cart, part of that plugin. So, I’ve stripped the functions needed for group types out (hopefully al of them).
First we need to add the addtional fields to our registration form:
function sv_add_registration_group_types()
{
?>
<div id="account-type" class="register-section">
<h3 class="transform"><?php _e( 'Choose your account type (required)', 'group-types' ) ?></h3>
<script type="text/javascript" defer="defer">
jQuery(document).ready(function(){
jQuery("#account-type-normal_user").attr("checked", true);
jQuery("#group-details").hide();
jQuery("#account-type-type_one,#account-type-type_two,#account-type-type_three").click(function(){
if (jQuery(this).is(":checked")) {
jQuery("#group-details").slideDown("slow");
} else {
jQuery("#group-details").slideUp("slow");
}
});
jQuery("#account-type-normal_user").click(function(){
if (jQuery(this).is(":checked")) {
jQuery("#group-details").slideUp("slow");
} else {
jQuery("#group-details").slideDown("slow");
}
});
});
</script>
<?php do_action( 'bp_account_type_errors' ) ?>
<label><input type="radio" name="account_type" id="account-type-normal_user" value="normal_user" checked="checked" /><?php _e( 'User', 'group-types' ) ?></label>
<label><input type="radio" name="account_type" id="account-type-type_one" value="type_one" /><?php _e( 'Type 1', 'group-types' ) ?></label>
<label><input type="radio" name="account_type" id="account-type-type_two" value="type_two" /><?php _e( 'Type 2', 'group-types' ) ?></label>
<label><input type="radio" name="account_type" id="account-type-type_three" value="type_three" /><?php _e( 'Type 3', 'group-types' ) ?></label>
<div id="group-details">
<p><?php _e( 'We will automatically create a group for your business or organization. This group will be tailored to your needs! You can change the description and the news later in the admin section of your group.', 'group-types' ); ?></p>
<?php do_action( 'bp_group_name_errors' ) ?>
<label for="group_name"><?php _e( 'Group Name', 'scuba' ) ?> <?php _e( '(required)', 'buddypress' ) ?></label>
<input type="text" name="group_name" id="group_name" value="" />
<br /><small><?php _e( 'We suggest you use the name of your business or organization', 'group-types' ) ?></small>
<label for="group_desc"><?php _e( 'Group Description', 'scuba' ) ?></label>
<textarea rows="5" cols="40" name="group_desc" id="group_desc"></textarea>
<br /><small><?php _e( 'This description will be visible on your group profile, so it could be used to present your mission statement for example.', 'group-types' ) ?></small>
<label for="group_news"><?php _e( 'Group News', 'scuba' ) ?></label>
<textarea rows="5" cols="40" name="group_news" id="group_news"></textarea>
<br /><small><?php _e( 'Enter any news that you want potential members to see.', 'group-types' ) ?></small>
</div>
</div>
<?php
}
add_action( 'bp_before_registration_submit_buttons', 'sv_add_registration_group_types' );Then we have to validate things and add some usermeta when a regitration happens:
/**
* Add custom userdata from register.php
* @since 1.0
*/
function sv_add_to_signup( $usermeta )
{
$usermeta['account_type'] = $_POST['account_type'];
if( isset( $_POST['group_name'] ) )
$usermeta['group_name'] = $_POST['group_name'];
if( isset( $_POST['group_desc'] ) )
$usermeta['group_desc'] = $_POST['group_desc'];
if( isset( $_POST['group_news'] ) )
$usermeta['group_news'] = $_POST['group_news'];
return $usermeta;
}
add_filter( 'bp_signup_usermeta', 'sv_add_to_signup' );
/**
* Update usermeta with custom registration data
* @since 1.0
*/
function sv_user_activate_fields( $user )
{
update_usermeta( $user['user_id'], 'account_type', $user['meta']['account_type'] );
if( isset( $user['meta']['group_name'] ) )
update_usermeta( $user['user_id'], 'group_name', $user['meta']['group_name'] );
if( isset( $user['meta']['group_desc'] ) )
update_usermeta( $user['user_id'], 'group_desc', $user['meta']['group_desc'] );
if( isset( $user['meta']['group_news'] ) )
update_usermeta( $user['user_id'], 'group_news', $user['meta']['group_news'] );
return $user;
}
add_filter( 'bp_core_activate_account', 'sv_user_activate_fields' );
/**
* Perform checks for custom registration data
* @since 1.0
*/
function sv_check_additional_signup()
{
global $bp;
if( empty( $_POST['account_type'] ) )
$bp->signup->errors['account_type'] = __( 'You need to choose your account type', 'group-types' );
if( empty( $_POST['group_name'] ) && $_POST['account_type'] != 'normal_user' )
$bp->signup->errors['group_name'] = __( 'You need to pick a group name', 'group-types' );
if( ! empty( $_POST['group_name'] ) && $_POST['account_type'] != 'normal_user' )
{
$slug = sanitize_title_with_dashes( $_POST['group_name'] );
$exist = groups_check_group_exists( $slug );
if( $exist )
$bp->signup->errors['group_name'] = __( 'This name is not available. If you feel this is a mistake, please <a href="/contact">contact us</a>.', 'group-types' );
}
}
add_action( 'bp_signup_validate', 'sv_check_additional_signup' );And then we set up the group for the user (there are some constants in this function, so you’ll need to change that):
/**
* Create custom groups for skools, biz and org accounts
* @since 1.0
*/
function sv_init_special_groups( $user )
{
global $bp;
// get account type
$type = get_usermeta( $user['user_id'], 'account_type' );
if( $type == 'normal_user' )
{
// Do nothing
}
elseif( $type == 'type_one' || $type == 'type_two' || $type == 'type_three' )
{
// get some more data from sign up
$group_name = get_usermeta( $user['user_id'], 'group_name' );
$group_desc = get_usermeta( $user['user_id'], 'group_desc' );
$group_news = get_usermeta( $user['user_id'], 'group_news' );
$slug = sanitize_title_with_dashes( $group_name );
// create dive skool group
$group_id = groups_create_group( array(
'creator_id' => $user['user_id'],
'name' => $group_name,
'slug' => $slug,
'description' => $group_desc,
'news' => $group_news,
'status' => 'public',
'enable_wire' => true,
'enable_forum' => true,
'date_created' => gmdate('Y-m-d H:i:s')
)
);
// add the type to our group
groups_update_groupmeta( $group_id, 'group_type', $type );
// delete now useless data
delete_usermeta( $user['user_id'], 'group_name' );
delete_usermeta( $user['user_id'], 'group_desc' );
delete_usermeta( $user['user_id'], 'group_news' );
// include PHPMailer
require_once( SV_MAILER . 'class.phpmailer.php' );
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->Host = SV_SMTP;
$auth = get_userdata( $user['user_id'] );
$profile_link = $bp->root_domain . '/' . $bp->groups->slug . '/' . $slug . '/admin';
$message = sprintf( __( 'Hello %s,
we have created a group for your business or organization. To get more out of your presence on Yoursitenamehere please take some time to set it up properly.
Please follow this link to fill in the rest of your profile: %s
We wish you all the best. Should you have any questions regarding your new group, please contact us at support@yoursitenamehere.com.
Your Yoursitenamehere Team', 'group-types' ), $auth->display_name, $profile_link );
$mail->SetFrom("support@yoursitenamehere.com","Yoursitenamehere");
$mail->AddAddress( $auth->user_email );
$mail->Subject = __( 'Your new group pages on Yoursitenamehere', 'group-types' );
$mail->Body = $message;
$mail->WordWrap = 75;
$mail->Send();
}
}
add_action( 'bp_core_account_activated', 'sv_init_special_groups' );When you write a group extension we’ll have to swap the activation call with a function like the one below to be able to check for group types.
/**
* Replacement activation function for group extension classes
*/
function activate_type_one()
{
global $bp;
$type = groups_get_groupmeta( $bp->groups->current_group->id, 'group_type' );
if( $type == 'type_one' )
{
$extension = new Group_Type_One;
add_action( "wp", array( &$extension, "_register" ), 2 );
}
}
add_action( 'plugins_loaded', 'activate_type_one' );The last thing we need to do is add our group type names to group and directory pages:
/**
* Modify the group type status
*/
function sv_get_group_type( $type, $group = false )
{
global $groups_template;
if( ! $group )
$group =& $groups_template->group;
$gtype = groups_get_groupmeta( $group->id, 'group_type' );
if( $gtype == 'type_one' )
$name = __( 'Type 1', 'group-types' );
elseif( $gtype == 'type_two' )
$name = __( 'Type 2', 'group-types' );
elseif( $gtype == 'type_three' )
$name = __( 'Type 3', 'group-types' );
else
$name = __( 'User Group', 'group-types' );
if( 'public' == $group->status )
{
$type = sprintf( __( "%s (public)", "group-types" ), $name );
}
elseif( 'hidden' == $group->status )
{
$type = sprintf( __( "%s (hidden)", "group-types" ), $name );
}
elseif( 'private' == $group->status )
{
$type = sprintf( __( "%s (private)", "group-types" ), $name );
}
else
{
$type = ucwords( $group->status ) . ' ' . __( 'Group', 'buddypress' );
}
return $type;
}
add_filter( 'bp_get_group_type', 'sv_get_group_type' );
/**
* Modify the group type status on directory pages
*/
function sv_get_the_site_group_type()
{
global $site_groups_template;
return sv_get_group_type( '', $site_groups_template->group );
}
add_filter( 'bp_get_the_site_group_type', 'sv_get_the_site_group_type' );It’s quite a bit of code, but it should get you started. This hasn’t been tested with 1.2 btw.
December 31, 2009 at 11:16 am #59827In reply to: Twitter Connect… Anybody?
Alex
ParticipantThe ideal solution for me is a preference/settings pane where you can assign ‘other’ profiles to your own.
Say I create an account on testbp.org with the username ‘testing’, and then visit ‘testbp.org/members/testing/settings/connect’ I could then select which other accounts I wish to attach to this main account: Facebook, Twitter, Google etc. by simply pressing a button.
I’m not sure how this could work, but it would negate duplicate accounts, and would allow me to be signed in when I already am in FB or Twitter etc.
There are just so many different accounts we can integrate with, it would be a shame for site owners to have to choose just one…
December 27, 2009 at 4:14 pm #59554In reply to: Unwanted profile/register page redirects
tobiaslohr
MemberFound the solution for my problem (described above). I had the setting “Allow new registrations” set to “Only logged in users can create new blogs.”, which actually caused the 302 redirect. I changed the setting to “Only user account can be created.”, which in my case is the correct setup.
December 27, 2009 at 8:44 am #59536online
ParticipantI might have found some additional clues about this problem. Seeing as I had only created mu + bp, I only had an admin account — so I decided to sign up for a regular user-account.
Signup link didn’t work either, but login link did — then on the standard login page I clicked register and got wp-signup.php in the navigation bar plus these error messages:
Warning: Cannot modify header information – headers already sent by (output started at /mnt/web1/50/41/52223341/htdocs/x/wp-content/themes/bp-sn-parent/header.php:3) in /mnt/web1/50/41/52223341/htdocs/x/wp-includes/pluggable.php on line 865
Warning: Cannot modify header information – headers already sent by (output started at /mnt/web1/50/41/52223341/htdocs/x/wp-content/themes/bp-sn-parent/header.php:3) in /mnt/web1/50/41/52223341/htdocs/x/wp-includes/pluggable.php on line 865
Does that help any? O_O
December 26, 2009 at 1:40 pm #59514online
Participantperhaps the problem is that I had “create accounts” locked when I installed buddypress — does the installation actually create “members”, “groups”, etc blogs (and couldn’t, so that’s why it can’t find them)?
December 22, 2009 at 8:10 pm #59335In reply to: Is BuddyPress confusing to users?
Derek
ParticipantWhat are we talking about here guys? Only the blog creators will ever see the dashboard on a regular basis. All the users that are subscribers will rarely if ever see it. Create a subscriber account for yourself and check that for yourself. I think you all are being too demanding on software that is so young. BuddyPress as an add on to a blogging/CMS platform is what I want, not the other way around. If we go that route what are going to end up with? Gifts?
I think you all might want to check out some of those other software suites I mentioned previously (out of that bunch I really like Social Engine).
BTW the thought of gifts makes me vomit just a little…
December 21, 2009 at 12:07 am #59218Suzanne
ParticipantHi Marius – I have a question. I just uploaded a fresh copy of Groupblog, deactivated the plug-in, reactivated it and then went to check it on the site. I’m seeing the groupblog content inserted on the group home page – I had created two posts prior to the upgrade which are still visible, but when I click the “blog” link in the menu, I get a page not found error.
I thought maybe I had to move the page templates into my theme but that didn’t change anything.
If you want to take a look, you can hit the group directly with this link.
http://holisticground.com/groups/animation-order/home/
It’s the “Blog” link in the tabbed menu at the top of the content area that’s causing me the trouble, even tho clearly the plug-in is inserting the groupblog data in the areas below it.
PLEASE NOTE: That site is full of dummy data to make development easier. If necessary, you can create an account if it helps. I have that enabled.
December 19, 2009 at 6:31 pm #59142In reply to: Email Notificaition Not Working
ipi_val
MemberOk. I’ve fixed it.
The mailer checks the domain name used. I won’t exted on this issue.
To let our local mailserver work correctly, we can do it by changing the validate_user_signup() function.
This function is located in: /wp-signup.php file, check it at the line 267 or something similar.
We must tell wordpress to consider valid our mail domain name without restrictions.
This can be done by modifying the user account check line:
We must replace the sentence
if ( $errors->get_error_code() )
by
if ( $errors->get_error_code() && $_SERVER[‘HTTP_HOST’]!
“localhost.YOURDOMAINNAME” ).Doing this, WP will accept any mail and user name if sent from our local domain.
Notice that WP won’t warn us about any registration error by doing this.
If you create by mistake an account, you can erase this sign up by editing the signup table in your wprss database using phpmyadmin.
I hope it can help anyone else.
December 16, 2009 at 8:11 pm #58880In reply to: Can't delete forum topics
John James Jacoby
Keymaster‘wp_bp_activity_sitewide’ doesn’t exist anymore, not even in the deprecated code. It was dropped pre 1.0 in lieu of having one universal activity stream. A clean 1.1.3 installation shouldn’t have any code looking for those tables.
http://socialpress.co.za/activity/feed works for me.
I’ve created a test account on your website and confirmed that I was able to delete my own activity just fine.
Is it possible this is a conflict with the privacy component?
-
AuthorSearch Results