Thank you for your help
Martin
]]>I have to use multisite with the three sub domain.
Like:
Domain.com
Subsite
site1.domain.com
site2.domain.com
site3.doamin.com
Then I have map the newdoamin.com with the site1.doamin.com.
But when I try to open this newdoamin.com it gives the 503 Service Unavailable error. I have disabled all plugins and check it again it gives same error.
Thank in advance
Is this software still incompatible with WordPress Multisite as mentioned here:
https://www.ads-software.com/support/topic/unfortunately-this-plugin-is-incompatible-with-wordpress-multisite/
or have these issues been addressed and fixed?
Thanks a lot in advance for your answers!
Kind regards
AngryWarrior.
Well pretty much as the subject headline says.
What is your recommendations for WPMU?
Should the software be network activated or by each single website?
Thanks in advance for your answers.
Kind regards
AngryWarrior
My site say mysite.com was hosted on some other hosting providers. I created a (sub)site mysite.somecooldomain.com in my network say somecooldomain.com and now want to use that subsite mysite.somecooldomain.com redirect to domain mysite.com. I read this on the documentation of plugin
“When mapping a domain, (like ‘example.com’) your users must create an A record in their DNS pointing at that IP address”.
Do I need to update the nameservers on my old hosting? Or I have to add a CNAME on that?
]]>I want to use a randomising javascript on my site… to randomise some blocks of text…
I have used this successfully in the past on my site – but it wasn’t a multisite then…
Now I have a multisite installation and it is not working…
Could you possibly help me sort this out/work out why?? Do you need to see the code??
Thank you!!!
]]>I am trying to make https://example.com to be multisite
and run network site https://multisite1.example.com and https://multisite2.example.com (networks sites to be http)
Note: There is ssl in the root installation. Not looking forward to make subdomains https..
Requirement: On one linux server/ IP address.
2 Separate wordpress installations, and one of them multisite.
Only root domain installation https and subdomains http installation and second subdomain install http as well.
I am facing problem in configuring it.
Problem: Multisite network site https://multisite1.example.com is redirecting to https://example.com
I doubt the issue is somewhere within htaccess rule. but not able to point that out.
Looking forward for a guidance on where I am doing wrong.
Following is the current apache config ->
a) for https://example.com
<VirtualHost *:80>
ServerName www.example.com
ServerAdmin [email protected]
Redirect 301 / https://example.com/
</VirtualHost>
<VirtualHost *:80>
ServerName example.com
ServerAlias multisite1.example.com multisite2.example.com
ServerAdmin [email protected]
DocumentRoot /var/www/html/example.com/docroot
<Directory /var/www/html/example.com/docroot>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/httpd/example.error.log
LogLevel warn
CustomLog /var/log/httpd/example.access.log combined
</VirtualHost>
Virtual host for https://site1.example.com
<VirtualHost *:80>
ServerName www.site1.example.com
ServerAdmin [email protected]
Redirect 301 / https://site1.example.com/
</VirtualHost>
<VirtualHost *:80>
ServerName site1.example.com
ServerAdmin [email protected]
DocumentRoot /var/www/html/site1.example.com/docroot
<Directory /var/www/html/site1.example.com/docroot>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/httpd/site1.example.error.log
LogLevel warn
CustomLog /var/log/httpd/site1.example.access.log combined
</VirtualHost>
Following is htaccess->
#Begin https#
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://example.com/$1 [R,L]
</IfModule>
#End https#
#multisite setup begin
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^(.*\.php)$ $1 [L]
RewriteRule . index.php [L]
</IfModule>
# multisite setup end#
Options -Indexes
Header unset Pragma
FileETag None
Header unset ETag
# EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType text/html "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresByType audio/mpeg3 "access 1 year"
ExpiresDefault "access 1 month"
</IfModule>
## EXPIRES CACHING ##
<FilesMatch "\\.(js|css|html|htm|php|xml)$">
SetOutputFilter DEFLATE
</FilesMatch>
<IfModule mod_headers.c>
<FilesMatch ".(js|css|xml|gz)$">
Header append Vary: Accept-Encoding
</FilesMatch>
</IfModule>
Following are the wp-config.php constants ->
define('FORCE_SSL_ADMIN', true);
$_SERVER['SERVER_PORT'] = 443;
/* Multisite */
define( 'WP_ALLOW_MULTISITE', true );
define('MULTISITE', true);
define('SUBDOMAIN_INSTALL', true);
define('DOMAIN_CURRENT_SITE', 'example.com');
define('PATH_CURRENT_SITE', '/');
define('SITE_ID_CURRENT_SITE', 1);
define('BLOG_ID_CURRENT_SITE', 1);
define( 'SUNRISE', 'on' );
]]>I have enabled wordpress multisite but the created site with subdomain is not working
My main site is like https://test.example.co
I have created sub domain like https://site1.test.example.co
but https://site1.test.example.co showing server’s default page.
I have added wildcard subdomain *.test.example.co
I have added web.config script generated from network setup page.
and also added follwing code in wp-config.php file
define( ‘WP_ALLOW_MULTISITE’, true );
define( ‘SUNRISE’, ‘on’ );
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, true);
define(‘DOMAIN_CURRENT_SITE’, ‘blueboydesign.dev.techinitiator.co’);
define(‘PATH_CURRENT_SITE’, ‘/’);
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOG_ID_CURRENT_SITE’, 1);
Please help me.
how to remove server’s default page and show my site https://site1.test.example.co
I setup a multisite install on bluehost.
The root site works fine. It is not in the root directory. When I create a new site it hangs here /wp-admin/network/site-new.php?action=add-site
If I click reload it gives me an error that says that site has already been created. When I go back to view all sites the new sub site (created with a directory not a subdomain) is listed but when I go to view it, the link takes me to the root site.
I feel like it’s the htaccess file but I’m using what the network settings say to use and I’ve tried a few variations all to no avail (other than breaking the site completely).
Any thoughts?
]]>