Contributing

You can access to the subversion repository at this url : http://forge.jelix.org/svn/jcommunity/trunk

If you want to contribute, see tickets for bug to fix or feature to develop. You can also create new tickets to tell us bugs you found, or to propose new features (you can discuss about it on the jelix.org forums). You can also propose some patch. Attach them to a ticket.

installation

jCommunity works only with Jelix 1.1 beta and higher.

First, get sources from the subversion repository.

The jcommunity modules are in the modules/ directory.

The lib/, test/ directory is an application to test modules.

If you want to install jcommunity modules into your own application, copy the modules/jcommunity directory in a module repository of your application (in yourapp/modules for example).

In the configuration of the application (or precisely, the configuration of the index entry point), activate the auth plugin for the coordinator:

[plugins]
auth = auth.coord.ini.php

Copy the lib/jelix/plugins/coord/auth/auth.coord.ini.php.dist into the file var/config/auth.coord.ini.php

You should change at least this values in this file:

driver = Db

on_error_action = "jcommunity~login:out"

bad_ip_action = "jcommunity~login:out"

[Db]
; name of the dao to get user datas
dao = "jcommunity~user"

Setup other values as indicated in the documentation of this plugin.

In your application, you should not use anything from the jauth module, but only from jcommunity, since it provides all needed things, with some different behaviors.