Web based groupware server written in PHP, forum at https://help.egroupware.org/
Go to file
2022-05-20 18:03:28 +02:00
addressbook fix missing url-encoding of from parameter (' 49...' instead of '+49...') 2022-05-04 15:28:04 +02:00
admin
api fix not working installation under PHP 8.1 due to mysqli throwing errors now by default 2022-05-20 18:03:28 +02:00
calendar fix PHP 8.0 TypeError: array_key_exists(): Argument #2 ($array) must be of type array, bool given 2022-05-14 09:36:11 +02:00
doc if a private CA is given, change Docker entrypoint to patch system CA-file into php.ini 2022-05-06 11:15:10 +02:00
emailadmin
filemanager
files
home
importexport final fix for "Network error" when stream files to client 2022-05-05 12:49:07 +02:00
infolog fix broken file-access cache after a917293 (fix smallPART file-access depending on full path) 2022-05-12 15:16:16 +02:00
mail display attachments also as a block (fieldset) replacing the ruler, if one is configured 2022-05-11 18:06:19 +02:00
notifications next chunk of fixed PHP Warning: Undefined array key or variable in main repo 2022-04-27 20:31:12 +02:00
pixelegg
preferences
resources
saml
setup fix not working installation under PHP 8.1 due to mysqli throwing errors now by default 2022-05-20 18:03:28 +02:00
timesheet
ViewerJS
.gitignore
.htaccess
.travis.yml
about.php
composer.json * Filemanager/WebDAV: fix WebDAV mounts from other EGroupware or next|ownCloud failed for non-alphanumeric passwords 2022-05-20 09:04:39 +02:00
composer.lock * Filemanager/WebDAV: fix WebDAV mounts from other EGroupware or next|ownCloud failed for non-alphanumeric passwords 2022-05-20 09:04:39 +02:00
groupdav.htaccess
groupdav.php
Gruntfile.js
header.inc.php.template
index.php
install-cli.php for binaries prefer grunt from node_modules/.bin and for all /usr/local/bin over /usr/bin 2022-05-06 12:48:42 +02:00
json.php
LICENSE.md
login.php
logout.php
manifest.json
package-lock.json npm audit fix 2022-04-27 08:41:56 +02:00
package.json
README.md
redirect.php
remote.php
service-worker.js
share.php
status.php
tsconfig.json
updateGruntfile.php
webdav.php

EGroupware

Tools Usage
Travis CI runs unit-tests after each commit
Scrutinizer CI scrutinizer runs static analysis on our codebase
BrowserStack manual testing with unusual browser versions or platforms

Default and prefered installation method for EGroupware is via your Linux package manager:

Every other method (including a developer installation by cloning the repo) is way more complicated AND does not include all features, as part's of EGroupware are running in different containers, eg. the push-server!

Installing EGroupware 21.1 via Docker for non-Linux environments or not supported Linux distros:

EGroupware 21.1 can be installed via Docker, in fact the DEB/RPM packages also does that. Instructions on how to run EGroupware in Docker are in our Wiki and in doc/docker subdirectory.

Installing EGroupware development version via Docker:

Deprecated EGroupware development installation:

apt/yum/zypper install nodejs
npm install -g grunt-cli
  • install EGroupware and dependencies
cd /path/to/your/docroot
git clone https://github.com/EGroupware/egroupware.git # or git@github.com:EGroupware/egroupware.git for ssh
cd egroupware
./install-cli.php
  • install non-default EGroupware apps by cloning them into your egroupware directory eg.
cd /path/to/your/egroupware
git clone https://github.com/EGroupware/wiki.git

Keeping EGroupware up to date or switch to release branch:

cd /path/to/your/egroupware
./install-cli.php [<change-channel>]
setup/setup-cli.php # will tell you if a schema-update is necessary

install-cli.php supports the following "channels":

  • release: taged maintenance releases only eg. 19.1.20200701
  • bugfix: release-branch incl. latest bugfixes eg. 20.1, if you are currently on 20.1.20200710
  • <branch>: switch to given branch
  • master: latest development for next release

To change the channel, call install-cli.php <channel-to-update-to>.

For further instalation instructions see our wiki.