Please move to other forum when not appropriate.
]]>Also note that many of the plugins and the theme will probably not work with current PHP versions. However, you may be able to save the contents of the project along the way.
]]>Merci pour vos réponses
]]>One possible issue could be that if the WordPress installation was initially set up as a multisite network using subdomains, the necessary database tables would have been created specifically for that configuration. Switching to subdirectories by setting SUBDOMAIN_INSTALL
to false
may cause errors because the required tables for subdirectory-based sites might not be present.
To check if the correct tables exist, look for tables such as wp_site
, wp_blogs
, and additional site-specific tables like wp_2_posts
in your database.
I recommend trying this setup first on a staging server to avoid potential issues on your live site. You can refer to this guide as a reference.
]]>It sounds like a server-side issue, possibly caused by memory limits or PHP configuration. Try the following steps:
define('WP_MEMORY_LIMIT', '256M');
.mysqli
are enabled.This should help troubleshoot and resolve the 500 error or blank page issue.
]]>define('WP_ALLOW_MULTISITE', true);
just before the line /* That's all, stop editing! */
.This approach allows you to achieve the desired structure for language navigation without relying on additional plugins.
]]>