Repeatable configuration package

Not exactly what you are asking for, but very close. There is a concept of ‘dropin’ plugins that exists primarily to override or add to core functions The dropins will always load. So one ftp’s up wordpress including whatever plugin files you want that will create your default environment. These should be in the top … Read more

Why did installing wordpress in url root jack up underlying WP sites?

In each of the web.config files for each directory, they will look much like this: <rewrite> <rules> <rule name=”wordpress” stopProcessing=”true”> <match url=”*” /> <conditions> <add input=”{REQUEST_FILENAME}” matchType=”IsFile” negate=”true” /> <add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” negate=”true” /> </conditions> <action type=”Rewrite” url=”index.php” /> </rule> </rules> </rewrite> For each sub-site, you need to change the rule name and add a … Read more

Subdirectory install error

I had forgotten to define the location of wp-content in my wp-config.php : define( ‘WP_CONTENT_DIR’, dirname(__FILE__) . ‘/wp-content’ ); define( ‘WP_CONTENT_URL’, ‘http://’.$_SERVER[‘SERVER_NAME’].’/wp-content’ ); define( ‘WP_PLUGIN_DIR’, dirname(__FILE__) . ‘/wp-content/plugins’ );