• Resolved jakesyl

    (@jakesyl)


    about 8 domains are gone and now redirect to my main domain in addition to this i no longer have access to the network admin HELPP

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter jakesyl

    (@jakesyl)

    all the files are still there but the blog is no longer visible plz help

    Thread Starter jakesyl

    (@jakesyl)

    this occured after i upgraded wp via fantastico…

    Thread Starter jakesyl

    (@jakesyl)

    My wp-config file:

    <?php
    /**
     * WordPress Network Administration Bootstrap
     *
     * @package WordPress
     * @subpackage Multisite
     * @since 3.1.0
     */
    
    define( 'WP_NETWORK_ADMIN', TRUE );
    
    /** Load WordPress Administration Bootstrap */
    require_once( dirname( dirname( __FILE__ ) ) . '/admin.php' );
    
    if ( ! is_multisite() )
    	wp_die( __( 'Multisite support is not enabled.' ) );
    
    $redirect_network_admin_request = ( ( $current_blog->domain != $current_site->domain ) || ( $current_blog->path != $current_site->path ) );
    $redirect_network_admin_request = apply_filters( 'redirect_network_admin_request', $redirect_network_admin_request );
    if ( $redirect_network_admin_request ) {
    	wp_redirect( network_admin_url() );
    	exit;
    }
    unset( $redirect_network_admin_request );
    ?>

    Moderator cubecolour

    (@numeeja)

    Do you have a recent backup taken before the upgrade?

    Thread Starter jakesyl

    (@jakesyl)

    yes i re-uploaded it thanks

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    this occured after i upgraded wp via fantastico…

    Yeah. Don’t do that. I’m 90% sure Fantastico doesn’t ‘understand’ Multisite, and doesn’t run the upgrade correctly. Use the WordPress automagic upgrade. You’ll be happier.

    Also that’s not a wp-config.php file :/ So yeah, don’t use Fantastico.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘ALL MY multisites are gone’ is closed to new replies.