iu34
Forum Replies Created
-
Hello.Inam
It sounds like a server-side issue, possibly caused by memory limits or PHP configuration. Try the following steps:
- Increase PHP Memory Limit: Edit the wp-config.php file and add
define('WP_MEMORY_LIMIT', '256M');
. - Check Error Logs: Look at the server’s error log (via cPanel or hosting control panel) to identify specific issues.
- Disable Plugins/Themes: If you’ve installed any previously, rename the plugins or themes folder to disable them.
- Verify File Permissions: Ensure folders are set to 755 and files to 644.
- Check PHP Extensions: Make sure required PHP extensions like
mysqli
are enabled.
This should help troubleshoot and resolve the 500 error or blank page issue.
Forum: Installing WordPress
In reply to: Create multisite with subdirectoriesHello,lauratu
To enable a multisite network with subdirectories on an existing WordPress site older than 30 days, you can follow these steps:- Backup Your Site: Always back up your WordPress site before making major changes.
- Edit wp-config.php: Add
define('WP_ALLOW_MULTISITE', true);
just before the line/* That's all, stop editing! */
. - Network Setup: Go to Tools > Network Setup, choose “subdirectories,” and follow the instructions to edit your wp-config.php and .htaccess files.
- Modify .htaccess: WordPress will provide code to add to your .htaccess file to enable the multisite network with subdirectories.
- Activate Network: Complete the setup and activate the network to start using subdirectories for your multisite setup.
This approach allows you to achieve the desired structure for language navigation without relying on additional plugins.
Forum: Fixing WordPress
In reply to: Projects tab disappears after uninstalling DiviWhen you uninstall the DIVI theme, your projects disappear because they rely on DIVI-specific modules, shortcodes, or custom settings. These elements don’t transfer to other themes. Reinstalling DIVI restores the projects as the theme’s structure and content are reintegrated. To avoid this, consider converting custom layouts to a more universal format before switching themes.
- Increase PHP Memory Limit: Edit the wp-config.php file and add