Wontok mutlisite
-
Can not update theme, just goes into a hanging state, using mutli site,
Followed these steps and didnt help
When you’re experiencing hangs while customizing a theme in a multisite environment, several factors could be at play. Here are some troubleshooting steps to help identify and resolve the issue:
- Check for Plugin Conflicts:
Temporarily disable plugins on the site (or network-wide if needed) to see if a plugin conflict is causing the hang. - Increase PHP Memory Limit:
In multisite environments, resource demands can be higher. Try increasing your PHP memory limit by adding or updating the following line in yourwp-config.php
file:phpCopydefine('WP_MEMORY_LIMIT', '256M');
You might need to increase it further if your hosting environment allows. - Review File Permissions and Server Logs:
Make sure your theme files have the correct permissions (usually 644 for files and 755 for directories). Check your server error logs for any clues that might indicate permission issues or other errors. - Clear Caches:
Clear any caching at both the server and browser level. Multisite setups often use object caching or page caching that might interfere with theme customization. - Check for JavaScript Errors:
Open your browser’s developer console to see if there are any JavaScript errors on the Customizer page. Errors here can sometimes cause the interface to hang. - Review Multisite-Specific Configurations:
Ensure that your multisite network is properly configured. Sometimes network-wide settings, domain mapping, or misconfigured settings inwp-config.php
(e.g.,SUBDOMAIN_INSTALL
orDOMAIN_CURRENT_SITE
) can affect theme behavior. - Switch to a Default Theme Temporarily:
Try switching to a default theme (like Twenty Twenty-Four) on one of the sites and see if the Customizer works. This can help determine if the issue is specific to your custom theme. - Debug Mode:
Enable WordPress debugging by adding these lines to yourwp-config.php
file:phpCopydefine('WP_DEBUG', true); define('WP_DEBUG_LOG', true); define('WP_DEBUG_DISPLAY', false);
Then check the debug log (wp-content/debug.log
) for any errors during the customization process.
Issue persisted so asking for help here ..
- Check for Plugin Conflicts:
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.