Title: Totally_Outnumbered's Replies | WordPress.org

---

# Totally_Outnumbered

  [  ](https://wordpress.org/support/users/totally_outnumbered/)

 *   [Profile](https://wordpress.org/support/users/totally_outnumbered/)
 *   [Topics Started](https://wordpress.org/support/users/totally_outnumbered/topics/)
 *   [Replies Created](https://wordpress.org/support/users/totally_outnumbered/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/totally_outnumbered/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/totally_outnumbered/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/totally_outnumbered/engagements/)
 *   [Favorites](https://wordpress.org/support/users/totally_outnumbered/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Multisite – Can't access Dashboard of 2nd site](https://wordpress.org/support/topic/multisite-cant-access-dashboard-of-2nd-site/)
 *  Thread Starter [Totally_Outnumbered](https://wordpress.org/support/users/totally_outnumbered/)
 * (@totally_outnumbered)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/multisite-cant-access-dashboard-of-2nd-site/#post-5505567)
 * Caching is built in to godaddy hosting.
 * Hopefully this is what you need:
    define(‘MULTISITE’, true); define(‘SUBDOMAIN_INSTALL’,
   false); define(‘DOMAIN_CURRENT_SITE’, ‘mydomain.com’); define(‘PATH_CURRENT_SITE’,‘/’);
   define(‘SITE_ID_CURRENT_SITE’, 1); define(‘BLOG_ID_CURRENT_SITE’, 1); /* Multisite*/
   define( ‘WP_ALLOW_MULTISITE’, true );
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Multisite – Can't access Dashboard of 2nd site](https://wordpress.org/support/topic/multisite-cant-access-dashboard-of-2nd-site/)
 *  Thread Starter [Totally_Outnumbered](https://wordpress.org/support/users/totally_outnumbered/)
 * (@totally_outnumbered)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/multisite-cant-access-dashboard-of-2nd-site/#post-5505562)
 * Yes. Built in caching. Flushing/time doesn’t change anything.
 * wp-config contains:
    define( ‘WP_ALLOW_MULTISITE’, true );
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Multisite – Can't access Dashboard of 2nd site](https://wordpress.org/support/topic/multisite-cant-access-dashboard-of-2nd-site/)
 *  Thread Starter [Totally_Outnumbered](https://wordpress.org/support/users/totally_outnumbered/)
 * (@totally_outnumbered)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/multisite-cant-access-dashboard-of-2nd-site/#post-5505531)
 * Correct. Same result with plugins disabled.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Multisite – Can't access Dashboard of 2nd site](https://wordpress.org/support/topic/multisite-cant-access-dashboard-of-2nd-site/)
 *  Thread Starter [Totally_Outnumbered](https://wordpress.org/support/users/totally_outnumbered/)
 * (@totally_outnumbered)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/multisite-cant-access-dashboard-of-2nd-site/#post-5505472)
 * Even from [http://mydomain.com/en/wp-admin/](http://mydomain.com/en/wp-admin/)
   the EN does **not** show up.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Multisite – Can't access Dashboard of 2nd site](https://wordpress.org/support/topic/multisite-cant-access-dashboard-of-2nd-site/)
 *  Thread Starter [Totally_Outnumbered](https://wordpress.org/support/users/totally_outnumbered/)
 * (@totally_outnumbered)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/multisite-cant-access-dashboard-of-2nd-site/#post-5505455)
 * I believe I followed all the proper steps. I can see my 2 sites in the dashboard.
   I can click on both sites in the dashboard and I don’t get any errors. Problem
   is no matter which one I click on it returns the same URL (allows me to edit 
   the primary site only).
 * .htaccess:
 *     ```
       # BEGIN WordPress
       <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteBase /
       RewriteRule ^index\.php$ - [L]
   
       # add a trailing slash to /wp-admin
       RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
   
       RewriteCond %{REQUEST_FILENAME} -f [OR]
       RewriteCond %{REQUEST_FILENAME} -d
       RewriteRule ^ - [L]
       RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
       RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
       RewriteRule . index.php [L]
       </IfModule>
   
       # END WordPress
       ```
   

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