Hi Nathan,
I have enabled WP_DEBUG, but there is no error message (both on my subdomain and on a localhost MAMP installation).
This is my wp-config.php-file:
<?php
define('WP_POST_REVISIONS', 5 );
define('AUTOSAVE_INTERVAL', 600 );
define('DISALLOW_FILE_EDIT', true);
// wp-content rename
define('WP_CONTENT_DIR', 'path-to-new-wp-content');
define('WP_CONTENT_URL', 'https://subdomain.example.com/new-wp-content');
define('DB_NAME', 'xxx');
define('DB_USER', 'xxx');
define('DB_PASSWORD', 'xxx');
define('DB_HOST', 'localhost');
define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');
define('AUTH_KEY', 'xxx');
define('SECURE_AUTH_KEY', 'xxx');
define('LOGGED_IN_KEY', 'xxx');
define('NONCE_KEY', 'xxx');
define('AUTH_SALT', 'xxx');
define('SECURE_AUTH_SALT', 'xxx');
define('LOGGED_IN_SALT', 'xxx');
define('NONCE_SALT', 'xxx');
$table_prefix = 'wpxyz_';
define('WP_DEBUG', false);
/* 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');
The PHP version of the is 7.1.17. I think it is a Linux server (Apache).
Maybe the white screen has something to do with “wp-content”. I renamed the folder wp-content but the source text of the white screen refers to wp-content. So perhaps it is not possible to use the plugin in case of a renamed wp-content folder.
Thanks!
-
This reply was modified 6 years, 5 months ago by Svensson36.