Web based groupware server written in PHP, forum at https://help.egroupware.org/
Go to file
2016-08-07 11:17:25 +02:00
addressbook * Addressbook: change taborder of fields to allow adding information column wise 2016-07-25 17:54:36 +02:00
admin When loading something into admin, accept & show string data even though it's not valid 2016-07-29 09:51:03 -06:00
api fix charset/transfer encoding issue when sending plain ascii mails but adding utf-8 signature 2016-08-05 15:13:31 +02:00
calendar Fix attempting to set array value accessed via magic methods was silently ignored by changing and setting the whole array 2016-08-05 08:08:32 -06:00
doc some fixes for Suse: changing vendor back to "Stylite GmbH", as it causes to many trouble and adding Suggests for packages requiring egroupware-epl-compat 2016-08-05 09:40:22 +02:00
emailadmin
filemanager fix old class-name egw_vfs --> Vfs 2016-07-28 10:05:50 +02:00
files
home Fix home context menu was not available on the entire home page when blank, only parts 2016-07-21 16:27:38 -06:00
importexport Fix attempting to set array value accessed via magic methods was silently ignored by changing and setting the whole array 2016-08-05 08:08:32 -06:00
infolog Fix attempting to set array value accessed via magic methods was silently ignored by changing and setting the whole array 2016-08-05 08:08:32 -06:00
mail fix charset/transfer encoding issue when sending plain ascii mails but adding utf-8 signature 2016-08-05 15:13:31 +02:00
notifications
pixelegg Fix border radius in nextmatch headers not getting properly rounded in firefox. 2016-08-01 16:55:43 +02:00
preferences get "integer" type settings working, by removing not used size attribute from template causing a 0 size input for integer 2016-07-29 16:03:20 +02:00
resources Fix resource categories to work when first added from search results 2016-07-26 08:20:49 -06:00
setup fix PHP Fatal error: Class 'ldap' not found, when migrating accounts LDAP --> SQL 2016-07-28 15:29:30 +02:00
timesheet Fix attempting to set array value accessed via magic methods was silently ignored by changing and setting the whole array 2016-08-05 08:08:32 -06:00
.gitignore
.htaccess
.mrconfig * ActiveDirectory: using adLDAP now from adldap2/adldap2=4.0.4 via composer 2016-07-15 07:42:12 +02:00
.travis.yml it's db_type=pgsql not postgres 2016-08-07 11:17:25 +02:00
about.php
composer.json * ActiveDirectory: using adLDAP now from adldap2/adldap2=4.0.4 via composer 2016-07-15 07:42:12 +02:00
composer.lock * ActiveDirectory: using adLDAP now from adldap2/adldap2=4.0.4 via composer 2016-07-15 07:42:12 +02:00
groupdav.htaccess
groupdav.php
Gruntfile.js
header.inc.php.template
index.php
json.php
login.php
logout.php
package.json
README.md
redirect.php
remote.php
share.php
status.php
updateGruntfile.php
webdav.php

EGroupware

Status Composer
Build Status Dependency Status

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

https://software.opensuse.org/download.html?project=server%3AeGroupWare&package=egroupware-epl

Installing EGroupware 16.1 from github:

  • cd /path/to/your/docroot
  • git clone -b 16.1 https://github.com/EGroupware/egroupware.git # or git@github.com:EGroupware/egroupware.git for ssh
  • cd egroupware
  • install composer.phar from https://getcomposer.org/download/

  • install myrepos (mr) from https://myrepos.branchable.com/ or your distribution package manager

  • add a line /path/to/egroupware/.mrconfig to your ~/.mrtrust, to allow running composer.phar and git clone -b 16.1

  • mr up
  • enable further / non-default EGroupware apps by uncommenting them in .mrconfig and run mr up

  • continue installation at http://localhost/egroupware/setup/

  • to get minified JavaScript and CSS you need to install nodejs and grunt, if you have not already done so

  • install nodejs from your distribution package manager

  • npm install -g grunt-cli # installs grunt command globally, if you have not already done so
  • npm install # installs required npm/grunt modules into node_modules/ dir
  • run grunt manually after every update, or better uncomment grunt steps in .mrconfig

Switching to stable 16.1 branch from 14.x or master

for d in . * activesync/vendor/z-push/z-push api/src/Db/ADOdb ; do [ -d $d/.git ] && (echo $d; cd $d; git checkout 16.1); done