whitesceen on subsites
-
Hi, I had some problems with the host getting wildcardDNS to resolve which has now been sorted however I am since getting white-screen on the subsite pages and posts. Dashboards are OK.
Memory is a bit foggy but I don’t seem to have subsite directory’s within the host directory anywhere(wasn’t there a blogs directory). Is this the error or am I looking in the wrong place.
All these databases have been created and seem appropriately populated:
wp_blogs
wp_blog_versions
wp_registration_log
wp_signups
wp_site
wp_sitemetaApache error log shows nothing concerning this domain at all.
I have virtualenergy.co.uk installed here: /public_html/virtualenergy.co.uk
On all subsites (test,test2, and abods) all plugins deactivated and either twentyfourteen or twentyfifteen in place.
For the sake of brevity I have edited out the Authentication Unique Keys and Salts but otherwise here is the wp-config and .htaccess.
// ** MySQL settings - You can get this info from your web host ** // /** The name of the database for WordPress */ /* define( 'WPCACHEHOME', '/home4/andyseab/public_html/virtualenergy.co.uk/wp-content/plugins/wp-super-cache/' ); //Added by WP-Cache Manager define('WP_CACHE', true); //Added by WP-Cache Manager */ define('DB_NAME', 'nnnnnnnn'); /** MySQL database username */ define('DB_USER', 'nnnnnnnn'); /** MySQL database password */ define('DB_PASSWORD', 'nnnnnnnnnnn'); /** MySQL hostname */ define('DB_HOST', 'localhost'); /** Database Charset to use in creating database tables. */ define('DB_CHARSET', 'utf8'); /** The Database Collate type. Don't change this if in doubt. */ define('DB_COLLATE', ''); /**#@-*/ define('AUTOSAVE_INTERVAL', 600 ); define('WP_POST_REVISIONS', 1); define( 'WP_CRON_LOCK_TIMEOUT', 120 ); define( 'WP_AUTO_UPDATE_CORE', true ); /** * WordPress Database Table prefix. * * You can have multiple installations in one database if you give each a unique * prefix. Only numbers, letters, and underscores please! */ $table_prefix = 'wp_'; define('WP_MAX_MEMORY_LIMIT', '256M'); /** * For developers: WordPress debugging mode. * * Change this to true to enable the display of notices during development. * It is strongly recommended that plugin and theme developers use WP_DEBUG * in their development environments. */ define('WP_DEBUG', true); /* Multisite */ define( 'WP_ALLOW_MULTISITE', true ); define('MULTISITE', true); define('SUBDOMAIN_INSTALL', true); define('DOMAIN_CURRENT_SITE', 'virtualenergy.co.uk'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1); /* define( 'SUNRISE', 'on' ); */ /* add_filter( 'auto_update_plugin', '__return_true' ); add_filter( 'auto_update_theme', '__return_true' ); */ /* That's all, stop editing! Happy blogging. */ /** Absolute path to the WordPress directory. */ if ( !defined('ABSPATH') ) define('ABSPATH', dirname(__FILE__) . '/'); /** Sets up WordPress vars and included files. */ require_once(ABSPATH . 'wp-settings.php');
RewriteEngine On 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]
- The topic ‘whitesceen on subsites’ is closed to new replies.