When I open the page, the style and all images are missing. They are apparently not found under the path /journal/.
Is the multisite set up for subdomains or directories? I suspect the latter.
Do the other websites work without any problems? Can you log in via them? Or via the main page of the multisite?
Hello, thank you for your response.
My multisite is set up for directories. All of the other ones are working fine and I am able to login.
And when you switch from the others to the problematic site via the network, does this problem also occur?
For the last several years, for some reason when it got set up, I have to login to each site individually to be able to access them, and only then can I access their dashboards from my main multisite network.
It sounds to me like the multisite configuration in wp-config.php is not set correctly. Can you post all the multisite information from your wp-config.php here? Please post it as a code block: https://wordpress.org/support/forum-user-guide/block-editor/#code-block
Thank you. It was working correctly for years until just recently. The last change I made was using ShortPixel to remove image data, however it still worked after that.
Is there a way I can share that wp-config information with you that can be deleted after?
The information I provided about the multisite is not sensitive information that needs to be deleted (unless you also post the database access data, which I did not mention). See also: https://wordpress.org/support/forum-user-guide/faq/#will-you-delete-my-post-once-the-problem-is-solved
If you do not want to share any data, it is unfortunately difficult to help you here in the forum. In that case, I would recommend that you find someone who can look at it with you in person. You can find someone like that here, for example: https://jobs.wordpress.net/
Ok I understand, thanks. Here it is.
define('WP_DEBUG', false);
define('WP_DEBUG_LOG', false);
define( 'WP_ALLOW_MULTISITE', true );
define('MULTISITE', true);
define('SUBDOMAIN_INSTALL', false);
define('DOMAIN_CURRENT_SITE', 'earth-mamma.com');
define('PATH_CURRENT_SITE', '/');
define('SITE_ID_CURRENT_SITE', 1);
define('BLOG_ID_CURRENT_SITE', 1);
define( 'AUTOSAVE_INTERVAL', 300 );
define( 'WP_POST_REVISIONS', 5 );
define( 'EMPTY_TRASH_DAYS', 7 );
define( 'WP_CRON_LOCK_TIMEOUT', 120 );
/* That's all, stop editing! Happy blogging. */
Strange. A very similar configuration works fine for me. It sounds to me like the cookies are not being set correctly, which could be due to the hosting. Try setting the following as a test
define('ADMIN_COOKIE_PATH', '/');
define('COOKIE_DOMAIN', '');
define('COOKIEPATH', '');
define('SITECOOKIEPATH', '');
in wp-config.php. Just below the other multisite information. Then clear all cookies and the cache for the site from your browser and try to log in.
If that works, great.
If not, undo it.
Yes it is very strange! I did as suggested and it didn’t work, so I removed it.