Web based groupware server written in PHP, forum at https://help.egroupware.org/
Go to file
Hadi Nategh f424b1cdb6 WIP new framework style:
- Fix tab's close buttons jump while hovering
- Add search menu into info menu
- Add notifications as info menu and style it nicely
- Toggle avatar top menu by clicking away on body
- Fix notifications popup message alignment
2019-05-27 17:12:40 +02:00
addressbook some chars also require encoding for iCal 2+ or vCard 3+ 2019-05-27 17:00:40 +02:00
admin
api WIP new framework style: 2019-05-27 17:12:40 +02:00
calendar some chars also require encoding for iCal 2+ or vCard 3+ 2019-05-27 17:00:40 +02:00
doc
emailadmin
filemanager
files
home
importexport
infolog some chars also require encoding for iCal 2+ or vCard 3+ 2019-05-27 17:00:40 +02:00
mail
notifications
pixelegg WIP new framework style: 2019-05-27 17:12:40 +02:00
preferences
resources
setup
timesheet
ViewerJS
.gitignore
.htaccess
.travis.yml
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
composer.lock
groupdav.htaccess
groupdav.php
Gruntfile.js
header.inc.php.template
index.php
install-cli.php
json.php
LICENSE.md
login.php
logout.php
package.json
README.md
redirect.php From tracker 2276: 2010-04-13 19:27:54 +00:00
remote.php
share.php
status.php
updateGruntfile.php
webdav.php

EGroupware

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

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:

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 further EGroupware apps by cloning them into your egroupware directory eg.
cd /path/to/your/egroupware
git clone https://github.com/EGroupware/registration.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. 17.1.20190222
  • bugfix: release-branch incl. latest bugfixes eg. 17.1, if you are currently on 17.1.20190222
  • <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.