Hallo Stefan,
also die Platten sind nicht voll
tux:/var/lib/egroupware # df
Filesystem 1K-blocks Used Available Use% Mounted on
devtmpfs 4096 0 4096 0% /dev
tmpfs 7899648 0 7899648 0% /dev/shm
tmpfs 3159860 10408 3149452 1% /run
/dev/nvme0n1p3 125829120 14025088 110312336 12% /
tmpfs 7899648 4 7899644 1% /tmp
/dev/nvme0n1p3 125829120 14025088 110312336 12% /boot/grub2/i386-pc
/dev/nvme0n1p3 125829120 14025088 110312336 12% /boot/grub2/x86_64-efi
/dev/nvme0n1p5 338966064 69884656 251789584 22% /var
/dev/sdc1 7751271852 6042454488 1318099720 83% /Archiv
/dev/sdb 9767539288 6502674444 3257443636 67% /daten
/dev/nvme0n1p3 125829120 14025088 110312336 12% /home
/dev/nvme0n1p3 125829120 14025088 110312336 12% /srv
/dev/nvme0n1p3 125829120 14025088 110312336 12% /usr/local
/dev/nvme0n1p3 125829120 14025088 110312336 12% /root
/dev/nvme0n1p3 125829120 14025088 110312336 12% /opt
tmpfs 1579928 56 1579872 1% /run/user/1000
/dev/mapper/veracrypt1 2884141016 2681260952 56351004 98% /mnt/veracrypt1
overlay 338966064 69884656 251789584 22% /var/lib/docker/overlay2/8e8ec5fd2b1c32f75ce8340c7d06b572a8ca071cf097c02e5cfb533ca6081369/merged
overlay 338966064 69884656 251789584 22% /var/lib/docker/overlay2/03c71c2324d0178b6170def289f3a2597b325c0b660880e2312f8d55ca96d14d/merged
overlay 338966064 69884656 251789584 22% /var/lib/docker/overlay2/e855482eed4b42918d1cdee1b3294df2b453006924d5f8c9a9024bea3e541c41/merged
overlay 338966064 69884656 251789584 22% /var/lib/docker/overlay2/8eb3c4e3ebf1ce5ba8981b0b942a7d89db5b8b3559cf9f4b9a8bf264ce4c2d21/merged
overlay 338966064 69884656 251789584 22% /var/lib/docker/overlay2/6337ee0afe78fb8f2cc1def448cb25980142d485593189b866c90f60de7824a9/merged
overlay 338966064 69884656 251789584 22% /var/lib/docker/overlay2/83e15fe7990f85c842415c5cb1508855aa0eda5591f24939790f14acb5ec7012/merged
Ich habe bestimmt viel aus der Sicherung kopiert, aber wo die header.inc.php jetzt herkommt weiß ich nicht mehr.
<?php
/**
* EGroupware - configuration file
*
* Use EGroupware's setup to create or edit this configuration file.
* You do NOT need to copy and edit this file manually!
*
* @link http://www.egroupware.org
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @author RalfBecker@outdoor-training.de
* (This file was originaly written by Dan Kuykendall)
* @version $Id$
*/
// eGW install dir, need to be changed if you copy the server to an other directory
define('EGW_SERVER_ROOT','/usr/share/egroupware');
// other pathes depending on the one above
define('EGW_INCLUDE_ROOT',EGW_SERVER_ROOT);
define('EGW_API_INC',EGW_INCLUDE_ROOT.'/phpgwapi/inc');
// who is allowed to make changes to THIS config file via eGW's setup
$GLOBALS['egw_info']['server']['header_admin_user'] = 'admin';
$GLOBALS['egw_info']['server']['header_admin_password'] = '******';
// restrict the access to setup to certain (comma separated) IPs or domains
$GLOBALS['egw_info']['server']['setup_acl'] = '';
/* eGroupWare domain-specific db settings */
$GLOBALS['egw_domain']['default'] = array(
'db_host' => '192.168.178.20',
'db_port' => '3306',
'db_name' => 'egroupware',
'db_user' => 'egroupware',
'db_pass' => 'egroupware', ;-)
// Look at the README file
'db_type' => 'mysqli',
// This will limit who is allowed to make configuration modifications
'config_user' => 'admin',
'config_passwd' => '{crypt}$2a$12$HkJZRfg211NQm2J4i62uZeFc4mXcjJJMmE8buSfprFEVWGkQ5GTUm'
);
/*
** If you want to have your domains in a select box, change to True
** If not, users will have to login as user@domain
** Note: This is only for virtual domain support, default domain users (that's everyone
** form the first domain or if you have only one) can login only using just there loginid.
*/
$GLOBALS['egw_info']['server']['show_domain_selectbox'] = false;
$GLOBALS['egw_info']['server']['db_persistent'] = true;
/* This is used to control mcrypt's use */
$GLOBALS['egw_info']['server']['mcrypt_enabled'] = false;
/*
** This is a random string used as the initialization vector for mcrypt
** feel free to change it when setting up eGrouWare on a clean database,
** but you must not change it after that point!
** It should be around 30 bytes in length.
*/
$GLOBALS['egw_info']['server']['mcrypt_iv'] = 'WtWuhkvPvV8VAybj6MLLyoYtr4ER8';
$GLOBALS['egw_info']['flags']['page_start_time'] = microtime(true);
include(EGW_SERVER_ROOT.'/api/setup/setup.inc.php');
$GLOBALS['egw_info']['server']['versions'] = $setup_info['api']['versions'];
$GLOBALS['egw_info']['server']['versions']['phpgwapi'] = $GLOBALS['egw_info']['server']['versions']['api'] = $setup_info['api']['version'];
unset($setup_info);
$GLOBALS['egw_info']['server']['versions']['header'] = '1.29';
if(!isset($GLOBALS['egw_info']['flags']['noapi']) || !$GLOBALS['egw_info']['flags']['noapi'])
{
if (substr($_SERVER['SCRIPT_NAME'],-7) != 'dav.php' && // dont do it for webdav/groupdav, as we can not safely switch it off again
(!isset($_GET['menuaction']) || substr($_GET['menuaction'],-10) != '_hooks.log') &&
substr($_SERVER['SCRIPT_NAME'],-10) != '/share.php')
{
ob_start(); // to prevent error messages to be send before our headers
}
require_once(EGW_SERVER_ROOT.'/api/src/loader.php');
}
else
{
require_once(EGW_SERVER_ROOT.'/api/src/loader/common.php');
}
/*
Leave off the final php closing tag, some editors will add
a \n or space after which will mess up cookies later on
*/
Das header-Setup kann ich aber leider nicht aufrufen.
502 Bad…
Lothar