Hallo
meine Seite
geht nicht vernünftig.
Zu erst kam diese Meldung bei Aufruf der Seite:
wordpress Exception thrown not defined for ExtensibleObject
Habe dann das Plugin
[h=2]NextGEN Gallery[/h]
umbenannt. Jetzt kommen functions.php Fehlermeldungen:
Warning: fopen(/home/lemicrot/public_html/wp-content/plugins/nextgen-gallery/nggallery.php): failed to open stream: No such file or directory in /home/lemicrot/public_html/wp-includes/functions.php on line 4198
Warning: fread() expects parameter 1 to be resource, boolean given in /home/lemicrot/public_html/wp-includes/functions.php on line 4201
Warning: fclose() expects parameter 1 to be resource, boolean given in /home/lemicrot/public_html/wp-includes/functions.php on line 4204
Ich habe den Abschnitt unten stehen. Wo soll dennn da ein Fehler sein?
function get_file_data( $file, $default_headers, $context = '' ) {
// We don't need to write to the file, so just open for reading.
$fp = fopen( $file, 'r' );
// Pull only the first 8kiB of the file in.
$file_data = fread( $fp, 8192 );
// PHP will close file handle, but we are good citizens.
fclose( $fp );