.. | ||
.gitlab-ci | ||
config | ||
scripts | ||
src | ||
tests | ||
vendor-bin/dbdiff | ||
.ackrc | ||
.codeclimate.yml | ||
.env.dist | ||
.env.gitlab-ci | ||
.gitignore | ||
.gitlab-ci.yml | ||
box.json.dist | ||
composer.json | ||
composer.lock | ||
LICENSE | ||
phpcs.xml.dist | ||
phpmd.xml | ||
phpunit.xml.dist | ||
README.md | ||
report.xml | ||
tiki-manager | ||
tiki-manager.php |
Tiki Manager
Installation
The preferred way to install this extension is through Composer. To install Tiki Manager, it is required to have Composer installed.
php composer.phar install
Configuration
To easily configure Tiki-Manager application, copy .env.dist
file to .env
and insert your configurations for the uncommented (#) entries.
Version Control System
Tiki Manager by default uses git and public repository. If you want to use SVN as your default vcs (but you shouldn't as SVN is deprecated) or another repository please add the following lines to your .env
file.
DEFAULT_VCS=svn
GIT_TIKIWIKI_URI=<CUSTOM_GIT_REPOSITORY_URL>
SVN_TIKIWIKI_URI=<CUSTOM_SVN_REPOSITORY_URL>
Behind Proxy or without internet connection
Tiki Manager is able to use Tiki's distributed version packages as an alternative when there is no connection to external servers like GitLab or SourceForge.
Setting the default VCS to src
, Tiki Manager will use existing packages in the data/tiki_src folder (default).
DEFAULT_VCS=src
Download the distributed Tiki packages, from https://sourceforge.net/projects/tikiwiki/files/, and save them into data/tiki_src folder.
Email settings
To configure Tiki-Manager email sender address add the following line to your .env
file.
FROM_EMAIL_ADDRESS=<SENDER_EMAIL_ADDRESS>
Configure SMTP Server
By default Tiki-Manager uses sendmail to send email notifications. If you intend to use SMTP instead add the following lines to your .env
file.
SMTP_HOST=<SERVER_ADDRESS>
SMTP_PORT=<SERVER_PORT>
SMTP_USER=(optional if authentication is required)
SMTP_PASS=(optional if authentication is required)
Web Manager settings
If you want to setup a default folder to install your web manager or apache user:group are different than apache:apache you can add the following settings to your .env
file.
WWW_PATH=<WEB_MANAGER_FOLDER>
WWW_USER=<APACHE_USER>
WWW_GROUP=<APACHE_GROUP>
Documentation
Documentation is at Tiki Documentation - Manager.
Contributing
Thanks for your interest in contributing! Have a look through our issues section and submit a merge request.