WpJoe,
You need to set a virtual url in your localhost apache to run this plugin properly.
If you try to run this plugin with an url like “this: https://localhost/testdomain.com”, you′ll get this error.
Three steps to work:
1- Allow your virtual domain to loop back to your localhost in the system hosts file (usually in Windows\System32\drivers\etc) by adding these lines:
127.0.0.1 testdomain.com
127.0.0.1 sub1.testdomain.com
127.0.0.1 sub2.testdomain.com
(and so on, for each subdomain you set in MiniMU)
2- Create a virtual host in Apache configuration.
(Usually C:\wamp\bin\apache\Apache2.2.21\conf\httpd.conf)
Lines to create a virtual host in httpd.conf:
NameVirtualHost 127.0.0.1:80
#seta pro localhost
<VirtualHost 127.0.0.1>
#ServerAdmin admin@localhost
DocumentRoot C:\wamp\www
ServerName localhost
ServerAlias localhost
#ErrorLog logs/localhost_error.log
#CustomLog logs/localhost_access.log common
</VirtualHost>
#set testdomain.com
<VirtualHost 127.0.0.1>
DocumentRoot C:\wamp\www\testdomain.com
ServerName testdomain.com
ServerAlias *.testdomain.com
<Directory C:\wamp\www\testdomain.com>
Options All Includes Indexes
</Directory>
</VirtualHost>
3- Set in WordPress General Options (wp-admin/options-general.php):
WordPress Address (URL) testdomain.com
Site Address (URL)testdomain.com
Regenerate permalinks.
Tip: Replace testdomain.com with url you want.
Good luck!
Sandro