• Hello,

    I multisite install that is generally functioning well, but I’m having difficulty allowing my users to create new sites.

    In my network admin settings, “Allow new registrations” is set to “Both sites and user accounts can be registered.” But, when my users either go to a non-existent blog or click on “Create a New Site” under the “My Sites” sidebar item, they get shuffled from example.com/wp-signup.php (or example.com/wp-signup.php?new=whatever) -> example.com/register/ -> my root site example.com by 302 redirects.

    There aren’t any 302 redirects defined in my .htaccess, and NOBLOGREDIRECT isn’t defined anywhere in my wp-config.php. Any ideas what I’m doing wrong? I’ve been banging my head against this for hours.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    In general, it helps to make sure you go through the normal debugging steps. Have you tried:

    • flushing any caching plugins you might be running, as well as server and/or browser caches.
    • deactivating all plugins (yes, all) to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s). If you can’t get into your admin dashboard, try resetting the plugins folder by FTP or PhpMyAdmin (read “How to deactivate all plugins when you can’t log in to wp-admin” if you need help). Sometimes, an apparently inactive plugin can still cause problems. Also remember to deactivate any plugins in the mu-plugins folder. The easiest way is to rename that folder to mu-plugins-old
    • switching to the Twenty Fourteen theme to rule out any theme-specific problems. If you can’t log in to change themes, you can remove the theme folders via FTP so the only one is twenty fourteen. That will force your site to use it.
    • manually upgrading. When all else fails, download a fresh copy of the latest.zip file of WP (top right on this page) to your computer, and use that to copy up. You may need to delete the wp-admin and wp-includes folders on your server. Read the Manual Update directions first.

    Verify whether below query added in .htaccess for non www domain to www domain.

    RewriteEngine On
    RewriteCond %{HTTP_HOST} !^www\.
    RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]

    install plugin mu_domain_mapping

    insert domain name with and without www in the table wp_domain_mapping

    for eg;
    select * from wp_domain_mapping;

    id blog_id domain active
    1 1 domain.com 0
    1 1 https://www.domain.com 1

    insert into wp_domain_mapping values(‘1′,’1′,’domain.com’,’0′);

    After inserting, check url domain.com/signup it will work fine.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Getting redirected from wp-signup.php’ is closed to new replies.