TonyMuller
Forum Replies Created
-
Forum: Plugins
In reply to: [Tidio – Live Chat & AI Chatbots] Getting an ivalid foreach errorSame here… I am using a live WP MU install (3.9.1). Plugin has been network activated and I can access the plugin settings within each site, but error appears on all (regardless of theme), and no dialogue box appears.
Forum: Plugins
In reply to: [NS Cloner - Site Copier] www issue when copying subdomain.www.domain.comsame problem, however the sites are not accessible.
NS Cloner creates clone.www.mydomain.com but going there returns page not found. Removing the .www doesn’t work either
I’ve also tried adding these lines to wp-config.php but it doesn’t seem to help:
define(‘WP_HOME’,’http://mydomain.com’);
define(‘WP_SITEURL’,’http://mydomain.com’);Forum: Installing WordPress
In reply to: MultiUser site issuesThe wildcard subdomain has no redirection, and there are no add-on domains.
Not that this should have any effect now that I have changed to sub-directory, but I just don’t understand why it’s not working…
Forum: Installing WordPress
In reply to: MultiUser site issueswp-config content:
/* Multisite */ define( 'WP_ALLOW_MULTISITE', true ); define('MULTISITE', true); define('SUBDOMAIN_INSTALL', false); define('DOMAIN_CURRENT_SITE', 'www.exampledomain.com'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1);.htaccess content:
# BEGIN WordPress 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] # END WordPress