Forum Replies Created

Viewing 15 replies - 1 through 15 (of 15 total)
  • @ebud Same problem here. Did you ever figure out a solution?

    Thread Starter jmock

    (@jmock)

    Wow, that was quick 🙂 I’m using MySQL on both sides, so I don’t need Postgres support. Thanks! (I’ll write a review when I have a little more time)

    Thread Starter jmock

    (@jmock)

    Hey @tbenyon,

    Seems to be working well, thanks! Two other (hopefully) quick things:

    1) The logo is missing from the admin settings page because the assets dir is missing from the plugin zip (I grabbed it from Github and dropped it into my local copy and it works).

    2) Should users be able to login with either username or email like they can with the regular WP login? I can force it to email by changing the username field in the settings from user_login to user_email, but it’d be awesome if it could use either.

    Thanks again!

    – Jim

    Thread Starter jmock

    (@jmock)

    Excellent. I’ll download and play around with it, though I may not get to it until tomorrow.

    Thread Starter jmock

    (@jmock)

    Sounds great, thanks for the update! 👍

    Thread Starter jmock

    (@jmock)

    That sounds perfect! It’d be exactly what we want for our situation (apart from support for pulling names, etc. from usermeta, but that’s an entirely different thing) 🙂

    Thread Starter jmock

    (@jmock)

    There may be a better way, but I think I solved this by making exlog_auth() check to see if a username exists before running most of the code. I’d love an ‘official’ way though so I don’t have to manually change plugin files and remember to change it when there are updates.

    Thread Starter jmock

    (@jmock)

    Awesome, thanks. I wasn’t sure if it was a bug or pilot error so I only posted here 🙂

    Thread Starter jmock

    (@jmock)

    I don’t think I follow. I’m using wp_mail_content_type to set it like so:

    
    function xxx_wp_email_content_type() {
    	return 'text/html';
    }
    add_filter( 'wp_mail_content_type', 'xxx_wp_email_content_type' );
    

    And I have another function that changes the content of the email:

    
    function xxx_wp_retrieve_password_message( $content, $key ) {
    	ob_start();
    	
    	$email_subject = xxx_wp_retrieve_password_title();
    	
    	include( 'templates/email_header.php' );
    	include( 'templates/lost_password_email.php' );
    	include( 'templates/email_footer.php' );
    	
    	$message = ob_get_contents();
    	ob_end_clean();
    
    	return $message;
    }
    add_filter( 'retrieve_password_message', 'xxx_wp_retrieve_password_message', 10, 2 );
    

    Do you mean I should call xxx_wp_email_content_type() inside xxx_wp_retrieve_password_message()?

    Thread Starter jmock

    (@jmock)

    The users on one site wouldn’t be able to register with the same email from one of the others… all registrations would happen through the main site (with registration disabled on the other two) and users will be synced to the other sites with WPMUDev’s user sync plugin.

    Paid subscribers create a password during the purchase and registration process rather than having one auto-generated for them so they’re able to log in with that password after we auto-activate them.

    Thread Starter jmock

    (@jmock)

    Great to hear that the registration process will take care of it, however I just thought of once instance where we don’t send users an activation email, and that’s when they sign up for a subscription product. They go through the same registration process if they don’t already have an account, but we automatically activate them to make the process a little easier for them and so they can start using the product right away. Any suggestions on how to handle these?

    I was also concerned about the bulk verification not working properly on a database our size. I have a local dev environment set up with the plugin working and will definitely try it there first. I’ll keep you posted. If it fails, is there an SQL query I can run from the mysql command line to bulk verify?

    Thanks!

    Thread Starter jmock

    (@jmock)

    Hi rafasashi,

    Our situation is a little unique… right now we have a site that is running on a multisite installation (we used to have a handful of sites but have pared it down to just one over the last few years). We currently have over 560,000 registered users on the site and with all of the WooCommerce order data, etc., our database is pretty gigantic (5+GB).

    My plan is to split the sections of the site that actually need WordPress out into separate installs and use static pages for the rest of it, so we’d have 3 WP installs with smaller and more manageable databases–one under /store, one under /blog, and one under /plus and want users to be able to log into one and be logged into all 3.

    As far as user registration goes, the process would be pretty standard. Right now we’re using the WP registration process with some custom tweaks, and on the new setup we’d do the same but any new user registrations or purchases (many of our user regs happen during the purchase process) through the “main” installation on /store and then sync those users with another plugin to the other two sites.

    I’m far less concerned about verifying new users than I am about all of the existing users once I split them out of the existing multisite db and import them. They’ve already registered and verified their accounts so I’d love for a way to have them automatically verified upon import rather than have to manually go in there and verify everyone.

    Hopefully that all makes sense 🙂

    – Jim

    I’m seeing a similar problem where both category and tag pages won’t load (they timeout… Safari shows a “server unexpectedly dropped the connection” error. All other pages seem to be fine, it just seems to be with the taxonomies.

    I also tried to load them on my local development machine and get the same error. Resaving permalink settings and changing the slugs in the Idea Stream settings both had no effect.

    Any other ideas? We’re using version 2.3.2 of the plugin.

    I’m having the same issue above, and I also couldn’t find a ‘Use Custom Forms’ setting in the settings anywhere. I created a custom upload form based on the default HTML and when I switch to it, the popup is blank 🙁

    Thread Starter jmock

    (@jmock)

    FWIW, it appears a number of plugins based on the original WP Contact Form are broken (each I tried failed with the same error). I currently have Contact Form 7 with the Really Simple Captcha plugin working in place of Enhanced WP Contact Form until either I have time to dig into it to see what’s causing the problem or Yoast fixes it.

Viewing 15 replies - 1 through 15 (of 15 total)