New multisite Server Not Found
I didn’t install the multisite in the same root folder as my WC installation. I resolved it by doing so.
I didn’t install the multisite in the same root folder as my WC installation. I resolved it by doing so.
You could create a cron job that gathers all the data and caches the results in a usermeta value for each user. It’d be slow to generate, but that wouldn’t matter because it’d run in the background. The data would then be fast to retrieve on the page where you display the user’s images. The … Read more
I had the same issue lately and you need to configure WP_REDIS_PREFIX in wp-config.php define( ‘WP_REDIS_PREFIX’, ‘your_unique_key_for_each_wp_instance_’ ); for each WP site. This solved my case.
How can I get all capabilities for a particular user?
Keep users logged in across multisite in wordpress (for various domains)
How can meta values from another site in a multisite be used in a custom query?
Best way to handle multiple assetlinks.json URLs for Multisite?
Add segment to Multisite Site URLs
I figured out the problem. First, I had opened a ticket with GoDaddy ProSupport. They told me: Since it was built using a multisite WordPress structure, I’m afraid that we are unable to work on it because of the liability of making changes that can affect other websites using the same database. We recommend hiring … Read more
So the problem was in the custom rest route which had the call to flush_rewrite_rules() which (as far as I can see) resetted the permalinks to default somehow and messed up the permalink structure. Once we removed all the calls to the custom route no 404 happened.