php - Migrate multi-site error -
i have migrated wordpress multi-site subdomain. wordpress verion 3.1 , php version in 5.4.
i getting warning: "warning: creating default object empty value in ///public_html/wp-includes/ms-load.php on line 139"
any 1 can in this.
thank you,
unfortunately, shared hosts have display_errors on. turn off yourself, can attempt modify wordpress config.
1.connect server via ftp
2.download copy of wp-config.php , open in text or html editor find following section , ensure wp_debug false:
/** * developers: wordpress debugging mode. * * change true enable display of notices during development. * recommended plugin , theme developers use wp_debug * in development environments. */
define('wp_debug', false);
4.paste following line right below wp_debug line: ini_set( 'display_errors', 0 );
5.save , re-upload file root directory or wherever wordpress installed.
if not work, need contact host disabling php debugging/error display site.
Comments
Post a Comment