Versuch mal das hier zu ändern:
// adm_program/system/common.php Z 75-77
Von:
Code: Alles auswählen
// create an installation unique cookie prefix and remove special characters
$gCookiePraefix = 'ADMIDIO_'.$g_organization.'_'.$g_adm_db.'_'.$g_tbl_praefix;
$gCookiePraefix = strtr($gCookiePraefix, ' .,;:', '_____');
Nach:
Code: Alles auswählen
// create an installation unique cookie prefix and remove special characters
$gCookiePraefix = 'ADMIDIO_'.$g_organization.'_'.$g_adm_db.'_'.$g_tbl_praefix;
$gCookiePraefix = strtr($gCookiePraefix, ' .,;:[]', '_______');
Achtung der '__' string ist auch um 2 _ länger geworden
PS: dafür müsstest nicht mal neu installieren. einfach in der config.php $g_organization = 'xxxxxx'; abändern. (adm_my_files/config.php)
Bitte bescheid geben ob das die Lösung ist. Dann erstell ich gleich nen fix für die v3.0.2
Edit:
Sry vergessen: In der DB musst du auch den organization name ändern. Tabelle: adm_organizations
Edit2:
Verdammt... da gibts nen constraint drauf... das gehört dann auch mal angepasst.
Also müsstest es doch sonst mit einer neuinstallation probieren.