ich habe meine Admidio Installation auf einen neuen Server migriert. Dazu habe ich sämtliche Admidio-Verzeichnisse kopiert, in der config.php die Server- und Datenbankeinstellungen angepasst und per phpmyadmin ein Backup der Datenbank eingespielt. Allerdings kann ich mich nicht einloggen, da ich beim Einloggen von der login.php immer nach login_check.php weitergeleitet werde und dort nur eine weiße Seite angezeigt wird.
Irgendwelche Tipps?
Vielen Dank!
die config.php:
<?php
/******************************************************************************
* Configuration file of Admidio
*
* Copyright : (c) 2004 - 2013 The Admidio Team
* Homepage : http://www.admidio.org
* License : GNU Public License 2 http://www.gnu.org/licenses/gpl-2.0.html
*
*****************************************************************************/
// Select your database system for example 'mysql' or 'postgresql'
$gDbType = 'mysql';
// Table prefix for Admidio-Tables in database
// Example: 'adm'
$g_tbl_praefix = 'adm';
// Access to the database of the MySQL-Server
$g_adm_srv = 'rdbms.strato.de'; // Server
$g_adm_usr = 'U1738210'; // User
$g_adm_pw = '******************'; // Password
$g_adm_db = 'DB1738210'; // Database
// URL to this Admidio installation
// Example: 'http://www.admidio.org/example'
$g_root_path = 'http://www.ibfss-ev.de/admidio';
// Short description of the organization that is running Admidio
// This short description must correspond to your input in the installation wizard !!!
// Example: 'ADMIDIO'
// Maximun of 10 characters !!!
$g_organization = 'CW';
?>