Web based groupware server written in PHP, forum at https://help.egroupware.org/
Go to file
Hadi Nategh 39944322b5 W.I.P. implementing TinyMCE editor and deprecating CKEditor:
- Replace fckEditor with tinymce for old etemplate apps
2018-10-25 12:32:18 +02:00
addressbook fix PHP 7.2 Warning: Use of undefined constant in xet files: {$cont[nm][something]} --> {$cont['nm']['something']} 2018-10-19 09:46:54 +02:00
admin W.I.P. implementing TinyMCE editor and deprecating CKEditor 2018-10-19 16:35:18 +02:00
api W.I.P. implementing TinyMCE editor and deprecating CKEditor: 2018-10-25 12:32:18 +02:00
calendar Calendar - In week view always display name of selected user if not self 2018-10-22 10:31:10 -06:00
collabeditor Fix excluded mime types does not work for CollabEditor 2018-02-08 14:49:10 +01:00
doc fix distro detection to use /etc/os-release to detect newer SUSE distros 2018-10-18 19:48:29 +02:00
emailadmin remove hooks from EMailAdmin as it might screw up adding/removing accounts 2017-11-14 15:19:42 +01:00
filemanager Some missed translations reported by Stefan Unverricht 2018-09-27 11:46:29 -06:00
files
home Add some translations, thanks to Evgen Vodopivec. 2018-04-03 11:24:42 +02:00
importexport Silence warning if there are no conditions 2018-09-05 13:26:27 -06:00
infolog * Infolog - Exclude current entry from parent select/search results to avoid loop 2018-10-24 11:11:25 -06:00
mail W.I.P. implementing TinyMCE editor and deprecating CKEditor: 2018-10-22 12:37:45 +02:00
notifications Show error text of notifications response from server 2018-09-06 15:40:25 +02:00
pixelegg Add missing parts from previous commit 2018-10-04 17:25:09 +02:00
preferences W.I.P. implementing TinyMCE editor and deprecating CKEditor: 2018-10-24 14:48:19 +02:00
resources Fix resource invite permission was checked for every resource type 2018-10-01 10:26:06 -06:00
setup * Addressbook: private addressbook in newer installations could not be enabled 2018-09-14 14:02:51 +02:00
timesheet * Infolog, Timesheet - Fix link title placeholders not working 2018-10-04 11:17:30 -06:00
ViewerJS
.gitignore
.htaccess * Mail: implement notification for incomming mails in folders if configured/set in mailaccountprofile 2014-04-24 13:52:45 +00:00
.mrconfig
.travis.yml 7.3 seems not yet to be available in Travis 2018-10-18 11:28:56 +02:00
about.php using eT2 for about and moved code to api (api/src/Framework/About.php) 2016-05-16 16:27:33 +02:00
composer.json Remove magicsuggest from api then add it to vendor 2018-06-21 13:39:00 +02:00
composer.lock Add magicsuggest new package reference 2018-07-13 11:04:40 +02:00
groupdav.htaccess
groupdav.php
Gruntfile.js Add flags.css into minified bundles 2018-09-18 11:01:17 +02:00
header.inc.php.template
index.php
json.php allow to process real JSON requests with Content-Type: application/json 2018-08-15 13:11:55 +02:00
login.php
logout.php
package.json remove old grunt-contrib-uglify (replaced with grunt-contrib-uglify-es) 2018-08-03 09:52:45 +02:00
README.md Update README.md 2017-11-15 16:53:44 +01:00
redirect.php
remote.php
share.php Use isset(), otherwise it tries to create a share 2018-06-05 14:31:04 -06:00
status.php
updateGruntfile.php
webdav.php

EGroupware

Branch Status Composer
master Build Status Dependency Status
17.1 Build Status Dependency Status
16.1 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 17.1 from github:

switch to 17.1 branch and follow instructions there

Installing EGroupware development version:

  • 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 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
  • 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