Hi. I had similar problem but with editing images. Uploading works just fine. I didn’t see image in edit window, and all admin wasn’t working properly ( refreshing pages after save options etc.), until I deleted this code from my functions.php
<?php function new_excerpt_length($length) {
return 20;
}
add_filter('excerpt_length', 'new_excerpt_length');
?>
Now everything works like a charm, but I need to find some solution for word limit.
Hope it helps!