Cannot access my dashboard, wp-admin for subdirectory after multisite install.

  • Unknown's avatar

    I am using godaddy’s wordpress hosting. The URL i need help with is not http://www.au6ustblog.wordpress.com

    I have just installed multisite. I have a main site of http://www.au6ust.co.uk and I have set up a subdirectory site at http://www.au6ust.co.uk/photography – the problem is that whenever I click on the photography site’s dashboard, it goes straight to http://www.au6ust.co.uk/wp-admin rather than http://www.au6ust.co.uk/photography/wp-admin. If I manually enter the http://www.au6ust.co.uk/photography/wp-admin, whenever I click anything it redirects straight back to http://www.au6ust.co.uk/wp-admin. It’s really quite frustrating as I can’t edit/access my subdirectory!!

    My htaccess is as follows:
    # 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

    and my wp-config.php is:

    <?php
    /**
    * The base configurations of the WordPress.
    *
    * This file has the following configurations: MySQL settings, Table Prefix,
    * Secret Keys, WordPress Language, and ABSPATH. You can find more information
    * by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
    * wp-config.php} Codex page. You can get the MySQL settings from your web host.
    *
    * This file is used by the wp-config.php creation script during the
    * installation. You don’t have to use the web site, you can just copy this file
    * to “wp-config.php” and fill in the values.
    *
    * @package WordPress
    */

    /**#@-*/

    /**
    * 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_65k0ahk3kv_’;

    /**
    * For developers: WordPress debugging mode.
    *
    * Change this to true to enable the display of notices during development.
    * It is strongly recommended that plugin and theme developers use WP_DEBUG
    * in their development environments.
    */
    define(‘WP_DEBUG’, false);
    //define( ‘WP_CACHE’, true );
    require_once( dirname( __FILE__ ) . ‘/gd-config.php’ );
    define( ‘FS_METHOD’, ‘direct’);
    define(‘FS_CHMOD_DIR’, (0705 & ~ umask()));
    define(‘FS_CHMOD_FILE’, (0604 & ~ umask()));
    define(‘WP_ALLOW_MULTISITE’, true);
    define(‘MULTISITE’, true);
    define(‘SUBDOMAIN_INSTALL’, false);
    define(‘DOMAIN_CURRENT_SITE’, ‘www.au6ust.co.uk’);
    define(‘PATH_CURRENT_SITE’, ‘/’);
    define(‘SITE_ID_CURRENT_SITE’, 1);
    define(‘BLOG_ID_CURRENT_SITE’, 1);
    /* That’s all, stop editing! Happy blogging. */

    /** 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’);

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    You’ve reached support for the free sites hosted at WordPress.com. It looks like your site is self-hosted with a different provider, which means we can’t help with the issue you’re having.

    It sounds like you should contact your host’s support team for more assistance.

    You can find support for your self-hosted WordPress site here:

    http://wordpress.org/support/

    http://codex.wordpress.org/

    If you need professional help for your self-hosted WordPress site, please check out:

    http://jobs.wordpress.net/

  • The topic ‘Cannot access my dashboard, wp-admin for subdirectory after multisite install.’ is closed to new replies.