Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wp user activate'

Viewing 25 results - 601 through 625 (of 902 total)
  • Author
    Search Results
  • #99540
    Boone Gorges
    Keymaster

    You can disable plugins and themes temporarily without losing work. WP and BP content is stored in the database and shouldn’t be affected by what themes and plugins you do or do not have activated.

    It’s important that you test whether the problem arises with bp-default, the BuddyPress Default theme that comes with BP. If registration works with that theme but not with your custom theme, then we’ll know that your problem is theme-related. Most likely, your theme is missing the template files that BP expects to find when someone visits the registration page, and for some reason the fallback template (which should be wp-signup.php) is not being found either.

    Please test with the default theme and report back.

    #98461
    bkeller99
    Member

    I don’t know if anyone is still following this thread but I discovered the users with this problem had not activated the account. So I installed this plugin so I didn’t have to keep deleting and recreating these accounts. https://wordpress.org/extend/plugins/wp-activate-users/installation/
    FYI the users either were not receiving the email, or so they say, or the message went to spam or didn’t activate when they clicked the link.
    hope this helps.
    chow

    #98198
    kriskl
    Participant

    Is there any fix yet, workaround for this error? our users also report getting this error, (we do not use paypal etc)
    we use WPMU 2.9.2 and BP1.2.3

    their accounts are activated, but the screen displays this error message, and it confuses them! :(

    #97802
    mikehenrysr
    Participant

    I’m +1 on the need for a solution too. I seem to always get the email without it going to spam. I also notice some repeat spam / sploggers in the email addresses. I have used WP-Activate-Users but I’d like an option to resend the activation or delete them.

    #97464
    ovizii
    Participant

    ok so the Wp one would be the username and the BP one whatever I want? still I think its unnecessary.

    btw. where can I read more about this supposedly synchronization between the WP and BP profiles?
    I mean this is not activated so what gets synchronized and when? `Disable BuddyPress to WordPress profile syncing?:`

    #96352
    ovizii
    Participant

    well, my idea was this:

    reading through the forums and the codex I found a couple of settigns that seemingly can be used from wp-config.php BUT I don’t want to clutter it too much.
    Alternatively I can use bp-custom.php or make a small plugin and pop it into mu-plugins.

    here is my collection of lines, please let me know where I can find more (built-into BP as I know plugins also offer several of these). What is recommended for what? I try to use wp-config.php only for WP related stuff, mu-plugins only for stuff that really needs to be running on every page and functions.php for stuff specific for my theme (and in this case the main page)

    `/*add user with ID as group admin, alternatively change to mod*/
    define( ‘BP_RESTRICTGROUP_AUTOADD_ADMIN_USER_ID’, 1);
    /* disable the admin bar*/
    /*define( ‘BP_DISABLE_ADMIN_BAR’, false);*/

    /*customize all slugs*/
    /*define( ‘BP_ACTIVATION_SLUG’, ‘activate’ );*/
    /*define( ‘BP_ACTIVITY_SLUG’, ‘activity’ );*/
    /*define( ‘BP_BLOGS_SLUG’, ‘journals’ );*/
    /*define( ‘BP_FORUMS_SLUG’, ‘discussions’ );*/
    /*define( ‘BP_FRIENDS_SLUG’, ‘peeps’ );*/
    /*define( ‘BP_GROUPS_SLUG’, ‘gatherings’ );*/
    /*define( ‘BP_MEMBERS_SLUG’, ‘chefs’ );*/
    /*define( ‘BP_MESSAGES_SLUG’, ‘messages’ );*/
    /*define( ‘BP_REGISTER_SLUG’, ‘register’ );*/
    /*define( ‘BP_SEARCH_SLUG’, ‘search’ );*/
    /*define( ‘BP_SETTINGS_SLUG’, ‘settings’ );*/
    /*define( ‘BP_XPROFILE_SLUG’, ‘info’ );*/

    /*customize more stuff*/
    /*Put profiles in the root � http://example.org/username/*/
    /*define ( ‘BP_ENABLE_ROOT_PROFILES’, true );*/

    (btw. since I have decided upon the final theme to use, I guess I will be going via the functions.php route)

    /*Change the default tab opened when looking at a user’srofile (default is activity):*/
    /*define( ‘BP_DEFAULT_COMPONENT’, ‘profile’ );*/
    `
    Also if you want yo ucan give some more information about order of invocation?

    #95928
    John Horniblow
    Participant

    Hi, hnla, thanks for the advice . I will deactivate BP, I have ascertained that WP is working as I can create user accounts , publish etc ( no issues ) I had already created a php.ini with 20 mb, its single line of code reading as follows memory=20MB so I will go back through the plugins to see if there’s a conflict. Unless you think I need to increase the memory allocation. I am hosted on 1and1 , which has caused a few headaches in setting it up , that’s been corrected by adding the handlers into .htaccess as follows
    AddType x-mapp-php5 .php
    AddHandler x-mapp-php5 .php
    What I saw in the .htaccess was that W3 total cache plugin had written a lot code into it , as far as I can see its working.

    #95227

    In reply to: Beginners Questions

    Hugo Ashmore
    Participant

    @whitbyglennk Hi Glen,
    As soon as I saw the name Whitby I thought “That rings a bell” and had to search back through the archives at CSSCreator, nice to see the domain flourishing although it was the ‘Sea Anglers’ site you were working on back then.

    To clarify for the thread real-whitby is presently a WP site and quite an evolved and customised one.

    As has been said you have all options available to you really as to which is the best one to take I’m not to sure, I think it’s fair to say the most work would be to activate BP on the primary root blog, creating a secondary blog would be an easier option but I’m tending to think that a physical subdomain i.e community.real-whitby the easier route along with user blogs as folders, community.real-whitby/glensblog.

    I’m not entirely sure of the best approach, you’ll probably need to experiment on a localhost test install to get a feel for the amount of work required and how the various options work in practice.

    James
    Participant

    ok, with thanks to http://cleverness.org/2010/08/08/add-user-types-to-wordpress-and-buddypress/ found another starting point:

    Put this in you BuddyPress theme /registration/register.php file:

    `

    User Type A
    User Type B
    User Type C

    `

    Put the following code in your theme’s functions.php:

    `<?php
    /* Add sign-up field to BuddyPress sign-up array*/
    function bp_custom_user_signup_field( $usermeta ) {
    $usermeta = $_POST;

    return $usermeta;
    }
    add_filter( ‘bp_signup_usermeta’, ‘bp_custom_user_signup_field’ );

    /* Add field_name from sign-up to usermeta on activation */
    function bp_user_activate_field( $signup ) {

    update_usermeta( $signup, ‘signup_type’, $signup );

    return $signup;
    }
    add_filter( ‘bp_core_activate_account’, ‘bp_user_activate_field’ );

    function synchro_wp_usermeta($user_id, $password, $meta) {
    global $bp, $wpdb;

    $type = $meta[signup_type];

    update_usermeta( $user_id, ‘signup_type’, $type );

    }
    add_action( ‘wpmu_activate_user’, ‘synchro_wp_usermeta’, 10, 3);
    `

    This should create selection of account types on the signup page.
    If anyone knows how to update profile-loop.php, so that every account type would have different profile group, please share your opinion.

    thanks.

    silverlunace
    Member

    I’m having this issue as well. I am using WPMU and I have selected “user accounts may be registered” in the Super Admin > Options > Allow users to register section. Still no go. I’ve tried all of the options that allow users to register but stil nothing. The register link just goes back to the main blog.

    Any suggestions?

    My answers to the questions:
    1. Which version of WP/MU are you running? WP 3.01
    2. Did you install WP/MU as a directory or subdomain install? subdomain (http://yourwebsite.com/blog)
    3. If a directory install, is it in root or in a subdirectory? root
    4. Did you upgraded from a previous version of WP/MU? No, it’s a new install. Was previously a single WP and I used the “Enable Multi-Site” plugin.
    5. Was WP/MU functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Yes
    6. Which version of BP are you running? 1.2.5.2
    7. Did you upgraded from a previous version of BP? If so, from which version? No, it’s also a brand new install.
    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? Yes, Akismet; BuddyPress template pack; Embedded Video; Enable Multi-Site; Exec-PHP; FeedBurner FeedSmith; FeedSnap; Full Text Feed; If You Liked That; In Series; MaxBlogPress Ping Optimizer; Sociable; Wp.com Stats; WP-Page Navi; and WP-Project;
    9. Are you using the standard BuddyPress themes or customized themes? I am using the Twenty Ten Theme through the BuddyPress Template Pack plugin that allows you to use any theme with BP.
    10. Have you modified the core files in any way? No
    11. Do you have any custom functions in bp-custom.php? No
    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? Not running
    13. Please provide a list of any errors in your server’s log files. Nobody can register. The registration link just goes back to the main blog.
    14. Which company provides your hosting? Bluehost
    15. Is your server running Windows, or if Linux; Apache, nginx or something else? Linux and Apache

    Don Bernard
    Participant

    I deactivated BP set the custom permalink as you suggested.

    The child BP theme lost all off its menus. However I can select catagories but when ido the page comes up with this error in the post.

    Fatal error: Call to undefined function bp_core_get_userlink() in D:homehnt12a135wp-contentthemesbp-columnsindex.php on line 28

    With BP activated the posts show ok

    #94224
    Beverly
    Participant

    Thank you Paul for responding but answer the questions in detail here:
    1. Which version of WP/MU are you running? Answer: WP 3.01
    2. Did you install WP/MU as a directory or subdomain install? Answer: Using it on my main domain
    3. If a directory install, is it in root or in a subdirectory?
    4. Did you upgraded from a previous version of WP/MU? If so, from which version? Answer: when it says upgrade I click that. So I guess it supdated.
    5. Was WP/MU functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Answer: Yes
    6. Which version of BP are you running? Answer: It says..Buddy press 1.2.5.2
    7. Did you upgraded from a previous version of BP? If so, from which version? Answer: Every time it says update I always click that…So maybe..??
    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? Answer: Buddy press 1.2.5.2, Live journey importer, akismet, fast secure contact form 0.2, OPML Importer 0.2, Post video player slideshow and photo gallery 1.79, Rss Importer, simple social sharing widgets and incons 0.2, Word Press Importer version 0.2 and WP Touch 1.9.19.1
    9. Are you using the standard BuddyPress themes or customized themes? Answer: Standard
    10. Have you modified the core files in any way? Answer: I don’t think so…Didn’t touch anything…Just beginning to do this…
    11. Do you have any custom functions in bp-custom.php? Answer: I don’t think so
    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? Answer: Using Hostmonster.com is my web host part of their menu control panel comes with concrete5 and under concrete5 I installed buddy press…Then that’s all I did
    13. Please provide a list of any errors in your server’s log files. Answer: The only problem I’m having is nobody can “create an account” or cannot register…And of course no email was sent for verification and account is obviously not created..
    14. Which company provides your hosting? Hostmonster.com
    15. Is your server running Windows, or if Linux; Apache, nginx or something else? My server is running? I’m using century link previously Sprint…Mozilla fox and Explorer…Windows XP

    So I guess I answered all the questions…That’s all I did…And can’t create an account…I did it to test the application…Now go to my website hostpugs.com create an account and see what’s going on…my email: whiteflower12004 @yahoo.com….Thank you!

    oriste
    Participant

    @nahummadrid
    I’m interested in doing the same thing as well on WP3. Have been roaming the internet for two days now and nothing has come up so far.

    #94020
    ezbizniz
    Participant

    I disabled the default BP function to add all blogs to BP DB table with `add_site_option(‘bp-blogs-first-install’, 1);`

    Instead I do my own BP blogs installation for each blog during upgrade:

    `function bp_blogs_install_after_multisite_upgrade($blog_id) {
    echo(‘Blog ID ‘ . $blog_id . ‘:
    ‘);
    if(!get_blog_option($blog_id, ‘bp-blog-recorded’)) {
    $users = get_users_of_blog( $blog_id );

    if ( $users ) {
    foreach ( (array)$users as $user ) {
    $role = unserialize( $user->meta_value );

    if ( !isset( $role ) )
    bp_blogs_record_blog( $blog_id, $user->user_id, true );
    }

    add_blog_option($blog_id, ‘bp-blog-recorded’, ‘true’);
    echo(‘Blog ID ‘ . $blog_id . ‘ added to BuddyPress database.
    ‘);
    }
    } else {
    echo(‘Blog ID ‘ . $blog_id . ‘ already in BuddyPress.
    ‘);
    }
    }

    add_site_option(‘bp-blogs-first-install’, 1);
    add_action(‘wpmu_upgrade_site’, ‘bp_blogs_install_after_multisite_upgrade’);
    `

    #93839
    Anonymous User 96400
    Inactive

    Generally speaking I don’t have a problem with websites reposting things like short code-snippets. When your feeds get scraped or whole articles are copied, that’s when things become hairy. The way things should be handled on bp-tricks to avoid any hassle is to give credit to the original source whenever possible. wprecipes.com, for example, does a pretty good job at that.

    #93199
    skolbloggense
    Participant

    Ok, so I found this; https://trac.buddypress.org/ticket/2350. Its the same problem but priority changed from major to normal . Why? Its a show-stopper!

    Quote apeatling:
    “Why should all registrations be handled on the root blog? That seems like a bad idea and is fundimentally messing with the way WPMU works. If a user has a blog and settings allow, they should be able to add users via their blog and activate them via their blog”

    My users (blogers) want to have their blog closed and only people with accounts allowed to see their blog should be able to see it (using plugin additional-privacy.php). So, they go into users and hit “add user”, selects a username and fill out their friends e-mail address. This is when the URL gets wrong…

    The fact that I have a correct value (“activate”) in BP_ACTIVATION_SLUG does not change this faulty address that is being sent in the e-mail.

    So, this must be a bug, right? And what can I do to go around it temporary before it gets a permanent fix?

    #93066
    @mercime
    Participant

    @jimboba

    Re: “incurred hnla’s dismissal?”
    Do not take things personally. @hnla has assisted hundreds of users in this forum and some questions were out of this world compared to your questions.

    Re: “Page Not Found” errors
    – Change Settings > Permalinks to other than default.
    – Activate bp-default theme to check links to BP components. When that works, insatll/create child theme of bp-default theme OR use the BP Template Pack if you want to use WP theme.

    #92582
    Adam
    Participant

    Thanks for the response. That actually brings up another problem which I’ve had.

    The BuddyPress Activity Tags are a good enough solutions for me, however when I go to activate the plugin I get the following error:

    Fatal error: Class ‘Bp_Activity_Tags_Widget’ not found in D:Hosting*********htmlwp-includeswidgets.php on line 324

    …. and I have to use my ftp client to delete the folder to access my Admin area.

    As a non-technical user, I don’t have a clue where to start with this error, I’ve Google’d it and there’s nothing. Is this a common problem with this plugin or is there a simple fix?

    #92063
    pcwriter
    Participant

    @Iain Manley

    How about this workaround:

    1 – Create a page template and copy the content of your register.php file to it.
    2 – Create a blank page in WP using that template. Eg: my-custom-home-page
    3 – Under “Settings” > “Reading”, select that WP page as a static page at “Front page displays”…

    Now your front page IS your register page. Next… @Brajesh at Buddydev has coded a cool activate/login/redirect plugin that can do the rest:

    http://buddydev.com/plugins/buddypress-premium-plugins/plugin-bp-auto-activate-auto-login-redirect-to-profile-automatically-activate-your-new-user-signuplog-them-in-and-redirect-to-their-buddypress-profile-on-signup/

    I’m sure you could tweak the code of that plugin to redirect to the “edit profile” template rather than the “Public” view.

    Hope it works! :-)

    #92036
    pcwriter
    Participant

    @jordashtalon

    Ah right… I think that “Bulk Action” only becomes available in WP3 if you have enabled Multisite. And not too sure if WP-Activate is compatible with Buddypress. Here’s an auto-activate plugin that is compatible with WP3 single:
    http://buddydev.com/plugins/buddypress-premium-plugins/plugin-bp-auto-activate-auto-login-redirect-to-profile-automatically-activate-your-new-user-signuplog-them-in-and-redirect-to-their-buddypress-profile-on-signup/

    It’s a premium plugin, but the small fee is well worth all the cool stuff @Brajesh puts out almost weekly. He’s also a great help if you ever get yourself into a coding kaffuffle.

    You can also test the plugin here:
    http://plugins.bpdemos.com/bp-auto-activate-auto-login-wp3s/

    #92033
    jordashtalon
    Member

    Looks like they didn’t activate their account, I used the plugin WP Activate to manually activate the account for them.

    #91834
    Paul Wong-Gibbs
    Keymaster
    #91770
    Pagan Gwynne
    Participant

    1. Could you set this as a profile field ? For ex. A dropdown list added to the registration page where they state yes or no to a question on hospitality. If they answer yes they can be autojoined to the ‘yes’ group so everyone will know where to look for them.

    2. If you are running a WP multisite you could set up a blog called ‘work listings’ or something like that, allow everyone ‘author’ capabilities set up one page as a standardized form and another to show the results of the posted form set the excerpts to show 0 -zero- characters and you’ll have a multipost page with a listing of jobs. – There are a number of plugins that will autojoin users to specific blogs on a multisite –

    3. Same thoughts as with 2.

    5. If you do a search for plugins there are a few that offer events calendars. Right now I’m using ‘My Calendar’ which offers an easily customizable interface so that you can make it look like your main site.

    7. A simple page with a ‘donate’ button linked to paypal or whoever

    8. WP multisite does this. If you set it so that users can create a blog on registration they can name the blog anything they like, I don’t know if you can automate the process so that the blog-name field is pulled from their username, or you can have a strict naming policy, add some text to the reg form stating that only the username is acceptable for blog names and set the joining process under moderation so that you have to approve each that way each blog will be called registeredusername.mydomain.com for subdomain installs or mysite.com/regusername for sub directory install.

    4 & 6 I have no idea.

    As for the plugins most come with the ability to activate either for one blog or for network activation, using the plugin ‘exclude plugins’ you can hide the plugins from your users blogs or allow certain plugins but disallow others. For ex, I have a user that wanted the plugin ‘ephemeris’ on their blog, I installed it, allowed it for that site and they are now happily ephemerising awaywhilst other users aren’t even aware that the plugin exists (they don’t see it on their blogs)

    The plugins that I’m using I pulled straight from the WP plugin pages and so far they have all worked on my WPBP site without hiccup,

    Regards.
    Me.

    #91175
    zenseeker
    Participant

    Thanks Paul,
    I had define ( ‘BP_ROOT_BLOG’, 2 );
    but not define ( ‘BP_ENABLE_MULTIBLOG’, true );

    It’s working, kind of, but now there’s another issue.

    A user can now activate their account from the activation email if they use the register from the wordpress meta widget on the main site.

    However, if I try to use the buddypress toolbar signup from the main site, it just sits at the main site homepage. Previously that would take you to http://community.howtomakeadesignerhandbag.com/register/

    I think I’d like to not use the wp-register at all and somehow get the bp signup/login in the sidebar of http://community.howtomakeadesignerhandbag.com/register/
    showing on the main site homepage and allow users to signup either from the toolbar or from the sidebar. But I want them to be returned to the main site homepage instead of the buddypress homepage.

    Is this possible?

    Thanks for your help and patience in trying to understand what I’m trying to do.

    #90627
    phillcross
    Member

    Interesting… I was under the impression that because it offered the “Use an existing bbPress installation” it somehow integrated the users? Well that isn’t very nice to fool me like that? lol

    Paul – You are correct – I have a standalone installation of bbPress & have a users database (bb_users) I’ve installed WordPress, and activated BuddyPress?

    I am attempting to use the 13K+ members of the current website as well as the information to integrate into a more “Social Media” Community format. PHPbb (extensively modified) was what I was/am using currently.

    What do you suggest I do? Import the bb_users into wp_users? Then import the bb_usermeta into wp_usermeta?

Viewing 25 results - 601 through 625 (of 902 total)
Skip to toolbar