Hallo
Ich habe Wordpress auf meinem Server installiert. Soweit funktioniert auch alles- mit einem seltsamen Fehler:
Die Erst-Konfigurationsseite wird nur in RawCode, unumgewandelt angezeigt: (Also bei: [IP]/wordpress/wp-admin/install.php)
<?php
/**
* WordPress Installer
*
* @package WordPress
* @subpackage Administration
*/
// Sanity check.
if ( false ) {
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Error: PHP is not running</title>
</head>
<body class="wp-core-ui">
<h1 id="logo"><a href="http://wordpress.org/">WordPress</a></h1>
<h2>Error: PHP is not running</h2>
<p>WordPress requires that your web server is running PHP. Your server does not have PHP installed, or PHP is turned off.</p>
</body>
</html>
<?php
}
/**
* We are installing WordPress.
*
* @since 1.5.1
* @var bool
*/
define( 'WP_INSTALLING', true );
... und so weiter.
Dieser Fehler ist offenbar bekannt, jedoch besitze ich volle Zugriffsrechte und habe auch alles selbst auf dem KVM Server installiert, somit kann ich nicht "Mal meinen Anbieter um Hilfe fragen"
wie es als Lösung auf der Website steht.
Der Fehler bedeutet, dass Apache den Code nicht in HTML umgewandelt hat, was wiederum bedeutet, dass Apache die Seite ohne PHP Lädt.
Ich habe PHP5 natürlich schon vorher installiert...
Meine Frage: Wie kann ich Apache2 befehlen, wordpress mit php zu Laden, sodass alles mit html angezeigt wird?
Hoffentlich hat überhaupt jemand Ahnung davon, ich gebe zu die Frage ist wirklich etwas schwierig : P