ich habe meine im web funktionierende joomla-installation (community-paket mit smf-forum) auf meinen rechner gezogen, xampp installiert, unter phpmyadmin die datenbank importiert, in der der configuration.php die pfade angepasst. so weit, so gut. wenn ich jetzt die site unter localhost aufrufe, bekomme ich zunächst auch einen netten bildschirm mit der site. logge ich mich nun als admin ein, erhalte ich einen leeren bildschirm. wenn ich den browser-cache lösche und wiederrum die site unter localhost aufrufe, erhalte ich weiterhin einen leeren bildschirm. was mache ich falsch? bzw. hat einer tipps, wie es funktioniert?
hier meine configuration.php:
<?php
$mosConfig_MetaAuthor = '1';
$mosConfig_MetaDesc = 'Joomla100 - Vorinstalliertes Community-Paket';
$mosConfig_MetaKeys = 'Joomla100, Joomla, Community';
$mosConfig_MetaTitle = '1';
$mosConfig_absolute_path = 'C:/xampp/htdocs/Schutzengel';
$mosConfig_allowUserRegistration = '1';
$mosConfig_back_button = '1';
$mosConfig_cachepath = '/cache';
$mosConfig_cachetime = '900';
$mosConfig_caching = '0';
$mosConfig_db = '**********'; (hier durch sternchen ersetzt)
$mosConfig_dbprefix = 'mos_';
$mosConfig_debug = '0';
$mosConfig_dirperms = '';
$mosConfig_editor = 'jce';
$mosConfig_enable_log_items = '0';
$mosConfig_enable_log_searches = '0';
$mosConfig_enable_stats = '0';
$mosConfig_error_message = 'Diese Seite ist kurzfristig nicht erreichbar.<br /> Bitte benachrichtigen sie den System-Administrator.';
$mosConfig_error_reporting = '-1';
$mosConfig_favicon = 'favicon.ico';
$mosConfig_fileperms = '644';
$mosConfig_fromname = 'Joomla100';
$mosConfig_gzip = '1';
$mosConfig_helpurl = '
http://help.mamboserver.com';
$mosConfig_hideAuthor = '0';
$mosConfig_hideCreateDate = '0';
$mosConfig_hideEmail = '0';
$mosConfig_hideModifyDate = '0';
$mosConfig_hidePdf = '1';
$mosConfig_hidePrint = '0';
$mosConfig_hits = '1';
$mosConfig_host = 'localhost';
$mosConfig_icons = '1';
$mosConfig_item_navigation = '1';
$mosConfig_lang = 'germani';
$mosConfig_lifetime = '900';
$mosConfig_link_titles = '0';
$mosConfig_list_limit = '30';
$mosConfig_live_site = '
http://localhost/Schutzengel';$mosConfig_locale = 'de_DE';
$mosConfig_mailer = 'sendmail';
$mosConfig_mailfrom = '##email##';
$mosConfig_ml_support = '0';
$mosConfig_multipage_toc = '1';
$mosConfig_offline = '0';
$mosConfig_offline_message = 'Diese Seite ist aus Wartungsgründen vorübergehend offline.<br /> Bitte probieren Sie es in Kürze nochmal.';
$mosConfig_offset = '-2';
$mosConfig_offset_user = '0';
$mosConfig_pagetitles = '1';
$mosConfig_password = '';
$mosConfig_readmore = '1';
$mosConfig_secret = '***********'; (hier durch sternchen ersetzt)
$mosConfig_sef = '0';
$mosConfig_sendmail = '/usr/sbin/sendmail';
$mosConfig_session_life_admin = '1800';
$mosConfig_session_type = '0';
$mosConfig_shownoauth = '0';
$mosConfig_sitename = 'Schutzengel-Projekt';
$mosConfig_smtpauth = '0';
$mosConfig_smtphost = 'localhost';
$mosConfig_smtppass = '';
$mosConfig_smtpuser = '';
$mosConfig_uniquemail = '1';
$mosConfig_user = 'root';
$mosConfig_useractivation = '0';
$mosConfig_vote = '0';
setlocale (LC_TIME, $mosConfig_locale);
?>