Amibe Websites
Forum Replies Created
-
The problem (not shown in the code above) was that I unhooking and rehooking another action either side the insert to prevent loops but hadn’t used the same priority parameter for each.
Forum: Networking WordPress
In reply to: How to add custom javscript and css across WP network?Take a look at this… https://codex.wordpress.org/Must_Use_Plugins
Forum: Networking WordPress
In reply to: More domains mapped to one subdomainUsing https://github.com/humanmade/Mercator you should be able to map more than one domain to a sub-site.
Forum: Networking WordPress
In reply to: Cant preview posts or Private postsRef https://core.trac.wordpress.org/ticket/39497 and https://wordpress.org/support/topic/4-7-multi-network-issues/ – should be resolved with release of 4.7.4
Forum: Networking WordPress
In reply to: 4.7 Multi Network IssuesFYI, as per TRAC ticket referred by @fwdcar above, it appears this issue will be resolved in the release of 4.7.4
Forum: Networking WordPress
In reply to: Lag when using real cron job for multisiteThis looks promising: https://pressjitsu.com/blog/wordpress-cron-cli/
Forum: Networking WordPress
In reply to: Multisite not php7 ready?Multisite working perfectly well for me on PHP7
Forum: Networking WordPress
In reply to: Multisite relation to existing contentMy feeling is using multisite was not the best approach. This could have been achieved with a normal WordPress install using a multi-language plugin and then there would be no problem with duplicate content.
Here’s an article that discusses both options and lists alternative plugins that can be used: http://wplang.org/translation-plugins-languages/
Forum: Plugins
In reply to: [Redirection] Redirect as a fallbackI see something similar was asked here also: https://wordpress.org/support/topic/add-redirect-with-wildcard-for-404s-only/
Hi swani, yes Bedrock and the other two from Roots are coming up more and more frequently – I’m in early stages of testing these for myself and am very excited as it’s addressing some concerns I’ve add in they way I’ve been working.
Thanks for answering my question. Opposite to you, moving my clients into a multisite has been the best thing I’ve ever done. I can’t move them in fast enough and feel mild irritation when needing to do work on any that are not yet on the multisite.
I hear you about Duplicator – it’s fantastic. With the free version you are able to skip folders… then on the target, where the WordPress files already exist (in whatever folder structure), perform a manual extraction of the Duplicator file before running the install.
Take a look at what the folks at https://root.io are doing with Bedrock. Perhaps it could be tweaked to do what you’re looking for using symlinks for each site’s wp folder? You’d need to test it to see what happens with WordPress updates where each site would need to run database updates – it would probably work in the same way as a manual upgrade but test it regardless.
But why is multisite a mistake? For you or for your clients?
An alternative is to keep all sites completely separate and use MainWP (https://mainwp.com) combined with UpdraftPlus to centralize control over updates and backups.
Forum: Plugins
In reply to: [WP Multi Network] Subdomain Network & Subdirectory Multi-Network?I don’t know if this would work but here’s a suggestion that may make this possible (depending on your hosting)…
- Create your multisite to use subdirectories (NOT subdomains!)
- Create each new network using the subdomain as the network domain
- Make sure on your hosting and/or DNS settings that each subdomain points to the main domain where the WordPress installation is
Does that make sense?
Forum: Networking WordPress
In reply to: Use of subdirectories AND subdomains to segregate subscribers?To be honest, my experience with this is still very limited and for now my focus is elsewhere. My understanding, which could be incorrect, is that each network (what you’re calling domain) can have a separate user base – that’s certainly how I’m anticipating using it.
My suggestion to you is to pose that specific question here: https://wordpress.org/support/topic/subdomain-network-subdirectory-multi-network/
Forum: Networking WordPress
In reply to: Use of subdirectories AND subdomains to segregate subscribers?Take a look at https://wordpress.org/plugins/wp-multi-network/
Note… there is currently an unresolved issue (with temporary workaround) as discussed here: https://wordpress.org/support/topic/4-7-multi-network-issues/
In your second server block remove the ‘http://’ so that it looks like this:
`
server {
listen 80;
server_name http://www.example.com;
…
}Also, make sure the domain’s DNS is configured with either www or the wildcard a records pointing to your server.
Adding www. in your General Settings is one thing – but you may also need to do a search and replace across the entire database to update all absolute URLs. Research that to find out the best way to do it without making mistakes (and make sure you have a database backup before making the changes).