I edited out the auth lines with no luck.
I don't have any other cookie lines
I also commented out the domain_current_site piece because I read I had to do that. What cookie line am I missing?
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
define('VHOST', 'yes');
$base = '/';
//define('DOMAIN_CURRENT_SITE', 'domain.com' );
define('PATH_CURRENT_SITE', '/' );
define('SITE_ID_CURRENT_SITE', 1);
define('BLOGID_CURRENT_SITE', '1' );
/**#@+
* Authentication Unique Keys.
*
* Change these to different unique phrases!
* You can generate these using the {@link http://api.wordpress.org/secret-key/1.1/wpmu/salt WordPress.org secret-key service}
* You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
*
* @since 2.6.0
*/
define('AUTH_KEY', 'fc1b7b91a30fb930bb589011182c35e025aad4bf527b41a6fc51ad3ffbba7bce');
define('SECURE_AUTH_KEY', '616eb71b6e1287b4c1c5482cd561b2800871e2d013b8d3583b1f52d1354da9b6');
define('LOGGED_IN_KEY', 'de1aef4a0cb628dab340528fa1cc17ce94d393bc30edb501dc508005211fc61b');
define('NONCE_KEY', 'a31394162fd4084b8f62af8549933e79b01781b9d4252f16522dc134567325d5');
define('AUTH_SALT', '50cd587400c45fe7ffe03b73d36913b250d67617e2851230afdabd8ee32513bb');
define('LOGGED_IN_SALT', '2e3d072525b7363db8933fb4802b160ddaba0ccfce9d64ad1d2978665cc1e0b4');
define('SECURE_AUTH_SALT', '23ce74f4eaeb03892be8c9254762be3117ccc30b5cd792a614126f4892fd8190');
/**#@-*/
/**
* WordPress Database Table prefix.
*
* You can have multiple installations in one database if you give each a unique
* prefix. Only numbers, letters, and underscores please!
*/
$table_prefix = 'wp_';
/**
* WordPress Localized Language, defaults to English.
*
* Change this to localize WordPress. A corresponding MO file for the chosen
* language must be installed to wp-content/languages. For example, install
* de.mo to wp-content/languages and set WPLANG to 'de' to enable German
* language support.
*/
define ('WPLANG', '');
// double check $base
if( $base == 'BASE' )
die( 'Problem in wp-config.php - $base is set to BASE when it should be the path like "/" or "/blogs/"! Please fix it!' );
// uncomment this to enable wp-content/sunrise.php support
define( 'SUNRISE', 'on' );
// uncomment to move wp-content/blogs.dir to another relative path
// remember to change WP_CONTENT too.
// define( "UPLOADBLOGSDIR", "fileserver" );
// If VHOST is 'yes' uncomment and set this to a URL to redirect if a blog does not exist or is a 404 on the main blog. (Useful if signup is disabled)
// For example, the browser will redirect to http://examples.com/ for the following: define( 'NOBLOGREDIRECT', 'http://example.com/' );
// Set this value to %siteurl% to redirect to the root of the site
// define( 'NOBLOGREDIRECT', '' );
// On a directory based install you must use the theme 404 handler.
// Location of mu-plugins
// define( 'WPMU_PLUGIN_DIR', '' );
// define( 'WPMU_PLUGIN_URL', '' );
// define( 'MUPLUGINDIR', 'wp-content/mu-plugins' );
define( "WP_USE_MULTIPLE_DB", false );
/* That's all, stop editing! Happy blogging. */
/** WordPress absolute path to the Wordpress directory. */
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');
/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');