stbauer
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Sub-Domain WP-Admin not workingSorry, No attention at all to be rude to you, I just wanted to make a difference between the code copies and my responses. Will use the Code option next time
I have added that line to the config file, but when I add the line nothing is working.
I have tried this withdefine('WP_ALLOW_MULTISITE', true); and with define('WP_ALLOW_MULTISITE', 1);
When I remove this line, I do get the side back.
Strange, I do hope you have another option my dear friend ??
Forum: Networking WordPress
In reply to: Sub-Domain WP-Admin not workingOK – I have followed the directions:
‘Create a blogs.dir directory at /var/www/vhosts/synergic.nl/httpdocs/wp-content/blogs.dir. This directory is used to store uploaded media for your additional sites and must be writeable by the web server.’IT WAS ALREADY THERE
‘define( ‘MULTISITE’, true );
define( ‘SUBDOMAIN_INSTALL’, true );
$base = ‘/’;
define( ‘DOMAIN_CURRENT_SITE’, ‘synergic.nl’ );
define( ‘PATH_CURRENT_SITE’, ‘/’ );
define( ‘SITE_ID_CURRENT_SITE’, 1 );
define( ‘BLOG_ID_CURRENT_SITE’, 1 );’THESE LINE WERE PART OF CONFIG.PHP FILE. ONLY IN MY CASE IS “1” INSTEAD OF “TRUE”. I ASSUME THAT WILL BE THE SAME
‘#Made Multi-Site with Multi-Site Enabler 1.5#
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]’
THE .HTACCESS CONTAINS ALSO THE RIGHT INFORMATION ….
SO WHAT ELSE COULD IT BE?
Forum: Networking WordPress
In reply to: Sub-Domain WP-Admin not workingThanks for the support. Your question related to the matches is not clear to me.
I have changed the .htaccess in the following way – based on doc MS Codex
#Made Multi-Site with Multi-Site Enabler 1.5# RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [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]
The network/setup.php contains the following info:
<?php /** * Network Setup administration panel. * * @package WordPress * @subpackage Multisite * @since 3.1.0 */ /** Load WordPress Administration Bootstrap */ require_once( './admin.php' ); if ( ! is_multisite() ) wp_die( __( 'Multisite support is not enabled.' ) ); require( '../network.php' );
Looking forward to your response on this
Forum: Networking WordPress
In reply to: Sub-Domain WP-Admin not workingThis is the current content of the HTACESS file
#Made Multi-Site with Multi-Site Enabler 1.5# 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]