Could you post your site URL here, so I can have a look?
If you want it to remain private, you can also contact us via this contact form:
http://jetpack.com/contact-support/
Thread Starter
mrnew
(@mrnew)
Here’s the link: http://collinwoodfire.org/
I’ve moved it back to the earlier WordPress, because it needs to be running for some teachers. It’s a big site and the CSS is also very large. That’s probably the most unusual thing about it, but it has been working. I don’t know if size could impact the update. I’m going to give the update another shot over the weekend. Maybe I could just paste the present CSS into the new editor? Or maybe if I delete some of the many revisions that have accumulated it would work better?
Thanks very much for taking a look.
Thanks for the extra details!
The size of your CSS file shouldn’t be an issue, but if your server resources are limited you could be running into memory issues when we try to migrate the CSS from the old Jetpack editor to the new core WordPress editor.
Would you mind trying the following?
- Add the following to your site’s wp-config.php file?
define( 'WP_DEBUG', true );
if ( WP_DEBUG ) {
@error_reporting( E_ALL );
@ini_set( 'log_errors', true );
@ini_set( 'log_errors_max_len', '0' );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );
define( 'CONCATENATE_SCRIPTS', false );
define( 'SAVEQUERIES', true );
}
Your wp-config.php file may already include a line that says “define(‘WP_DEBUG’, false);”. You can remove it, and replace it by the code above.
- Go to Appearance > Edit CSS and copy your CSS. Paste it in a text editor so you’ll have a copy if anything goes wrong.
- Update to WordPress 4.7.
- Go to Appearance > Customize > Additional CSS, and check if the CSS was migrated.
- If it wasn’t, paste the CSS you saved earlier.
- Click on Save and Publish.
- Check that all CSS was saved, and none was stripped from the editor.
- Check the
wp-content/debug.log file in your WordPress installation, and paste any errors you may have here.
- You can then replace
define('WP_DEBUG', true); by define('WP_DEBUG', false); in the code above.
Thanks!