Web based groupware server written in PHP, forum at https://help.egroupware.org/
Go to file
2021-11-23 17:24:22 +01:00
addressbook fix PHP 8.0 TypeError: array_search(): Argument #2 ($haystack) must be of type array, null given 2021-11-19 10:49:20 +01:00
admin fix PHP 8.0 Error: Undefined constant "data" 2021-11-18 14:54:43 +01:00
api fix PHP 8.0 TypeError: Unsupported operand types: string & int 2021-11-23 17:24:22 +01:00
calendar fix PHP 8.0 TypeError: Unsupported operand types: int | array 2021-11-20 08:41:01 +01:00
doc fix error caused by post_install.php not running as root (default for container) 2021-11-09 09:40:34 +01:00
emailadmin
filemanager * Admin/Filemanager: correctly encode user "WORKGROUP\$user" for SMB mounts and do NOT require mountpoints to exist 2021-11-22 13:09:32 +01:00
files
home Fix PHP8.0 error Cannot access offset of type string on string 2021-11-15 12:11:40 +01:00
importexport fix PHP 8.0 Error: Illegal string offset 'string' 2021-11-23 17:18:17 +01:00
infolog * InfoLog: fix not working overwrite check (optimistic locking) plus incrementing etag 2021-11-22 17:56:31 +01:00
mail fix PHP 8.0 TypeError: Cannot access offset of type string on string 2021-11-22 11:09:40 +01:00
notifications an other chunk of fixed PHP 8.0 Warnings 2021-10-07 10:16:09 +02:00
pixelegg Filemanager: Add lock tooltip, unlock icon on action 2021-10-29 08:48:15 -06:00
preferences Fix PHP 8.0 Fatal error: Declaration of preferences_categories_ui::index(?array $content = null) must be compatible with admin_categories::index(?array $content = null, $msg = '') 2021-11-16 16:11:24 -07:00
resources fix PHP 8.0 TypeError: Unsupported operand types: int + string 2021-11-10 11:28:51 +01:00
saml SAML/Shibboleth with multiple IdP or optional on regular login page 2020-06-10 15:19:24 +02:00
setup fix PHP 8.0 errors: key(): Argument #1 ($array) must be of type array, null given 2021-10-06 16:12:49 +02:00
timesheet fix PHP 8.0 TypeError: Unsupported operand types: string * float 2021-11-16 18:28:02 +01:00
ViewerJS
.gitignore remove not used dev-dependencies giving a (non-exploitable) Dependabot warning 2021-06-01 17:44:36 +02:00
.htaccess
.travis.yml run install-cli twice, to update composer installed apps 2020-07-13 19:54:33 +02:00
about.php
composer.json fix PHP 8.0 ValueError: fread(): Argument #2 ($length) must be greater than 0 2021-11-18 14:37:48 +01:00
composer.lock fix PHP 8.0 ValueError: fread(): Argument #2 ($length) must be greater than 0 2021-11-18 14:37:48 +01:00
groupdav.htaccess
groupdav.php
Gruntfile.js Fix placeholder dialog in collabora did not show up 2021-11-17 10:24:55 -07:00
header.inc.php.template
index.php quiten warning if client sends no User-Agent header 2021-08-30 08:55:20 +02:00
install-cli.php
json.php also output file and line of exception for json requests 2021-10-11 11:26:38 +02:00
LICENSE.md
login.php fix old classname uipassword --> preferences_password 2021-11-11 07:53:27 +01:00
logout.php SAML/Shibboleth with multiple IdP or optional on regular login page 2020-06-10 15:19:24 +02:00
manifest.json square logo in svg and adding this to manifest.json 2021-02-26 17:31:35 +02:00
package-lock.json fix 1 moderate severity vulnerability 2021-08-12 09:42:52 +02:00
package.json remove (not used) grunt-ts to allow fixing dependabot alerts in dev packages 2021-06-15 10:35:33 +02:00
README.md Fix installation instructions and wiki links 2021-08-10 12:08:09 +02:00
redirect.php
remote.php
service-worker.js
share.php Change global sharing variable to be a list of shares in use, indexed by token. This should resolve the issues with multiple shares being accessed in the same session. 2021-03-11 17:00:16 -07:00
status.php
tsconfig.json
updateGruntfile.php Fix js packaging by switching from uglify-es to terser 2020-05-28 11:48:44 -06:00
webdav.php fix typo 2021-04-19 22:55:40 +02:00

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.