Beiträge von Mercinio

    Hey Leute,

    wollte gerade WordPress auf meinen Strato-Server installieren, also habe ich alles hochgeladen und die wp-config Dateien editiert.

    Soweit so gut, dann habe ich das Installationsverzeichniss aufgerufen (/wordpress/wp-admin/install.php) & dann kam was, was ich noch nie gesehen habe:

    PHP
    <?php /**  * WordPress Installer  *  * @package WordPress  * @subpackage Administration  */  // Sanity check. if ( false ) { ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <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> 	<h1 id="logo"><img alt="WordPress" src="http://forum.wordpress-deutschland.org/images/wordpress-logo.png" /></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 );  /** Load WordPress Bootstrap */ require_once( dirname( dirname( __FILE__ ) ) . '/wp-load.php' );  /** Load WordPress Administration Upgrade API */ require_once( dirname( __FILE__ ) . '/includes/upgrade.php' );  /** Load wpdb */ require_once(dirname(dirname(__FILE__)) . '/wp-includes/wp-db.php');  $step = isset( $_GET['step'] ) ? $_GET['step'] : 0;  /**  * Display install header.  *  * @since 2.5.0  * @package WordPress  * @subpackage Installer  */ function display_header() { 	header( 'Content-Type: text/html; charset=utf-8' ); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> <head> 	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 	<title><?php _e( 'WordPress &rsaquo; Installation' ); ?></title> 	<?php wp_admin_css( 'install', true ); ?> </head> <body> <h1 id="logo"><img alt="WordPress" src="http://forum.wordpress-deutschland.org/images/wordpress-logo.png" /></h1>  <?php } // end display_header()  /**  * Display installer setup form.  *  * @since 2.8.0  * @package WordPress  * @subpackage Installer

    und so weiter


    Kann mir einer helfen? Eigentlich ist PHP bei einem Strato-Webserver doch direkt aktiviert oder?

    GRUß

    Hey Leute,

    ich habe meine WordPress Seite nun auf meine neue Domain "umgeschrieben".
    Soweit so gut, es klappt schon mal fast alles.

    ABER, wenn ich auf "Older Entries" bzw. auf "letzte Beiträge" klicke, wird automatisch ein "/wordpress" in den link oben eingefügt. Das Problem ist, dass der Link dann nicht funktioniert. Entferne ich das "/wordpress" aus dem Link komme ich auf die zweite Seite.

    Hier die Links:



    Meine Frage: Wie kann ich es ändern, sodass man wenn man auf "Older Entries" klickt automatisch auf den richtigen Link kommt?

    Es ist dringend, daher freue ich mich auf JEDE Antwort, Danke ;)