• I never faced this issue in the past with other hosting providers or on my local dev Linux servers. I am struggling to configure WordPress Multisite. I have added the following code to your wp-config.php

    /* Multisite */
    define( ‘WP_ALLOW_MULTISITE’, true );
    define( ‘MULTISITE’, true );
    define( ‘SUBDOMAIN_INSTALL’, true );
    define( ‘DOMAIN_CURRENT_SITE’, ‘mysite.com’ );
    define( ‘PATH_CURRENT_SITE’, ‘/’ );
    define( ‘SITE_ID_CURRENT_SITE’, 1 );
    define( ‘BLOG_ID_CURRENT_SITE’, 1 );

    and following in .htaccess
    RewriteEngine On
    RewriteRule .* – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    RewriteBase /
    RewriteRule ^index\.php$ – [L]

    # add a trailing slash to /wp-admin
    RewriteRule ^wp-admin$ wp-admin/ [R=301,L]

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ – [L]
    RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
    RewriteRule ^(.*\.php)$ $1 [L]
    RewriteRule . index.php [L]

    I also configured both wildcard and UK subdomains on the current hosting provider as well as on Cloudflare but I am getting an error “There has been a critical error on this website.” during multi-site installation in WordPress network tab but I can access uk.mysite.com test page which I created manually.

    Edit: Error Log

    [08-Aug-2021 12:43:17 UTC] WordPress database error Table 'aamnah83_loot32.wp_m962_actionscheduler_actions' doesn't exist for query SELECT COUNT(DISTINCT claim_id) FROM wp_m962_actionscheduler_actions WHERE claim_id != 0 AND status IN ( 'pending', 'in-progress') made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, ActionScheduler_QueueRunner->maybe_dispatch_async_request, ActionScheduler_AsyncRequest_QueueRunner->maybe_dispatch, ActionScheduler_AsyncRequest_QueueRunner->allow, ActionScheduler_Abstract_QueueRunner->has_maximum_concurrent_batches, ActionScheduler_DBStore->get_claim_count
    [08-Aug-2021 12:43:17 UTC] WordPress database error Table 'aamnah83_loot32.wp_m962_actionscheduler_actions' doesn't exist for query SELECT a.action_id FROM wp_m962_actionscheduler_actions a WHERE 1=1 AND a.status='pending' AND a.scheduled_date_gmt <= '2021-08-08 12:43:17' LIMIT 0, 5 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, ActionScheduler_QueueRunner->maybe_dispatch_async_request, ActionScheduler_AsyncRequest_QueueRunner->maybe_dispatch, ActionScheduler_AsyncRequest_QueueRunner->allow, ActionScheduler_Store->has_pending_actions_due, ActionScheduler_DBStore->query_actions
    • This topic was modified 4 years, 9 months ago by merohan.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)

The topic ‘WordPress Multisite Installation Issue’ is closed to new replies.