Hallo,
vor kurzem hatten wir einen kleinen Serverausfall auf unserem Schulserver. Soweit, so schlecht, unsere SchulHP sowie die unserer Schülerzeitung waren kurz weg, jetzt ist die SchulHP wieder da (LINK), aber unsere Schülerzeitung ist immernoch weg (LINK) bzw. nur das headerbild wird geladen.
Woran kann das liegen? Dies alles scheint okay zu sein...
index.php im Startverzeichnis
PHP
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define('WP_USE_THEMES', true);
/** Loads the WordPress Environment and Template */
require('./wp-blog-header.php');
?>
Alles anzeigen
wp-blog-header.php
PHP
<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/
if ( !isset($wp_did_header) ) {
$wp_did_header = true;
require_once( dirname(__FILE__) . '/wp-load.php' );
wp();
require_once( ABSPATH . WPINC . '/template-loader.php' );
}
?>
Alles anzeigen
Was braucht ihr als nächstes?