Make WordPress Core

Opened 14 years ago

Closed 14 years ago

#17972 closed defect (bug) (worksforme)

After Installing Wordpress 3.2 and creating a network I have lost the ability to add or delete plugins

Reported by: william-jacobs's profile william jacobs Owned by:
Milestone: Priority: normal
Severity: normal Version: 3.2
Component: Plugins Keywords:
Focuses: Cc:

Description (last modified by dd32)

I upgraded my wordpress to 3.2 and then went through the instructions to create a network where I added an additional subdomain.

The information on the Wordpress side asked me to add the following text to my WP-config.php and .htaccess files.

I added the following to my Wp-config.php

define('WP_ALLOW_MULTISITE', true);

define( 'MULTISITE', true );
define( 'SUBDOMAIN_INSTALL', true );
$base = '/';
define( 'DOMAIN_CURRENT_SITE', 'www.stonecarvingtool.com' );
define( 'PATH_CURRENT_SITE', '/' );
define( 'SITE_ID_CURRENT_SITE', 1 );
define( 'BLOG_ID_CURRENT_SITE', 1 );

And I replaced the content of my .htaccess with:

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]

# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule . index.php [L]

Since I have done this I can not add or delete any plugins.

I appreciate your help

William

Change History (1)

#1 @dd32
14 years ago

  • Description modified (diff)
  • Milestone Awaiting Review deleted
  • Resolution set to worksforme
  • Status changed from new to closed

This sounds like a support issue rather than a WordPress bug.

In order to add plugins to a Multisite installation, you need to access the Network Admin panel, You can find a link to this administration area in the dropdown attached to your name (The "Howdy, William" section). Alternativly, you can access site.com/wp-admin/network/

Closing as worksforme

Note: See TracTickets for help on using tickets.