Servus,
seit vorgestern kann ich eine bestimmte Seite meines Blogs nicht mehr editieren/aufrufen, aus dem Dash heraus. Über den Blog lässt sie sich problemlos ansehen.
Wenn ich die Seite wähle kommt folgende Meldung:
<blockquote>Fatal error: Out of memory (allocated 29884416) (tried to allocate 39626 bytes) in /homepages/../.../htdocs/heimspiele/forum/HP/wp-includes/class-wp-editor.php on line 278</blockquote>
Die besagte Zeile:
`if ( false !== stripos( $content, 'textarea' ) ) {`
Der Code-Block dieser Zeile:
` // Back-compat for the `htmledit_pre` and `richedit_pre` filters
if ( 'html' === $default_editor && has_filter( 'htmledit_pre' ) ) {
// TODO: needs _deprecated_filter(), use _deprecated_function() as substitute for now
_deprecated_function( 'add_filter( htmledit_pre )', '4.3.0', 'add_filter( format_for_editor )' );
$content = apply_filters( 'htmledit_pre', $content );
} elseif ( 'tinymce' === $default_editor && has_filter( 'richedit_pre' ) ) {
_deprecated_function( 'add_filter( richedit_pre )', '4.3.0', 'add_filter( format_for_editor )' );
$content = apply_filters( 'richedit_pre', $content );
}
if ( false !== stripos( $content, 'textarea' ) ) {
$content = preg_replace( '%</textarea%i', '</textarea', $content );
}
printf( $the_editor, $content );
echo "\n</div>\n\n";
self::editor_settings( $editor_id, $set );
}`
Ich kann damit leider nichts anfangen. Ich habe am Blog auch nie intern eingegriffen, nur das Theme drübergelegt.
Das Update auf 4.3.1 schien auch fehlerlos.
Der Blog: http://www.heimspiele.info/HP/
Die betroffene Seite: http://www.heimspiele.info/HP/?page_id=763
Hilfe?