Hi,
ich habe hier ein Problem mit einer nagelneuen Wordpress Installation. Mein Hostingprovider ist 1&1, das Hostingpaket nennt sich "1&1 Homepage Perfect".
Ich bin soweit nach dieser Anleitung von 1&1 für die Neuinstallation von Wordpress vorgegangen. Wenn ich dann versuche, meine frisch angelegte Subdomain aufzurufen, um die Konfigurationsdatei zu erstellen, dann erhalte ich im Browserfenster nur diese Fehlermeldung:
[FONT=courier new]Your server is running PHP version 4.4.9 but WordPress 3.4.2 requires at least 5.2.4.[/FONT]
Daraufhin habe ich gegoogelt und bin hier auf den Tipp gestoßen, anstelle der htccess-Datei im Control Center die PHP-Version auf 5 umzustellen. Doch wenn ich das mache, kommt eine ewig lange Fehlermeldung:
[FONT=courier new]ters( 'kses_allowed_protocols', $protocols ); } return $protocols; } /** * Return a comma separated string of functions that have been called to get to the current point in code. * * Link http://core.trac.wordpress.org/ticket/19589 * @since 3.4 * * Param string $ignore_class A class to ignore all function calls within - useful when you want to just give info about the callee * Param int $skip_frames A number of stack frames to skip - useful for unwinding back to the source of the issue * Param bool $pretty Whether or not you want a comma separated string or raw array returned * @return string|array Either a string containing a reversed comma separated trace or an array of individual calls. */ function wp_debug_backtrace_summary( $ignore_class = null, $skip_frames = 0, $pretty = true ) { if ( version_compare( PHP_VERSION, '5.2.5', '>=' ) ) $trace = debug_backtrace( false ); else $trace = debug_backtrace(); $caller = array(); $check_class = ! is_null( $ignore_class ); $skip_frames++; // skip this function foreach ( $trace as $call ) { if ( $skip_frames > 0 ) { $skip_frames--; } elseif ( isset( $call['class'] ) ) { if ( $check_class && $ignore_class == $call['class'] ) continue; // Filter out calls $caller[] = "{$call['class']}{$call['type']}{$call['function']}"; } else { if ( in_array( $call['function'], array( 'do_action', 'apply_filters' ) )[/FONT]
[FONT=courier new]Fatal error: Call to undefined function wp_die() in /homepages/.../.../.../.../wp-load.php on line 62[/FONT]
Nun bin ich am Ende mit meiner Weisheit und bitte um eure Unterstützung. Was läuft da falsch? Was muss ich tun, um die Wordpress-Installation zum Laufen zu bringen?