mirror of
https://github.com/YunoHost-Apps/dotclear2_ynh.git
synced 2024-09-03 18:26:29 +02:00
Update README.md
This commit is contained in:
parent
8b9d28118e
commit
1b245084dc
1 changed files with 56 additions and 59 deletions
115
README.md
115
README.md
|
@ -1,66 +1,63 @@
|
|||
# DotClear 2 app for YunoHost
|
||||
|
||||
[DotClear2](http://dotclear.org/) package for [Yunohost](https://yunohost.org/#/)
|
||||
[![Integration level](https://dash.yunohost.org/integration/dotclear2.svg)](https://dash.yunohost.org/appci/app/dotclear2)
|
||||
[![Install dotclear2 with YunoHost](https://install-app.yunohost.org/install-with-yunohost.png)](https://install-app.yunohost.org/?app=dotclear2)
|
||||
|
||||
> *This package allow you to install dotclear2 quickly and simply on a YunoHost server.
|
||||
If you don't have YunoHost, please see [here](https://yunohost.org/#/install) to know how to install and enjoy it.*
|
||||
|
||||
## Overview
|
||||
Quick description of this app.
|
||||
|
||||
**Shipped version:** 2.14.3
|
||||
|
||||
## Screenshots
|
||||
|
||||
![](https://installatron.com/images/remote/ss2_dotclear.png)
|
||||
|
||||
## Configuration
|
||||
|
||||
How to configure this app: by an admin panel.
|
||||
|
||||
## Documentation
|
||||
|
||||
* Official documentation: https://dotclear.org/documentation/2.0
|
||||
|
||||
## YunoHost specific features
|
||||
|
||||
#### Multi-users support
|
||||
|
||||
Are LDAP and HTTP auth supported? **Yes**
|
||||
Can the app be used by multiple users? **Yes**
|
||||
|
||||
#### Supported architectures
|
||||
|
||||
* x86-64b - [![Build Status](https://ci-apps.yunohost.org/ci/logs/dotclear2%20%28Community%29.svg)](https://ci-apps.yunohost.org/ci/apps/dotclear2/)
|
||||
* ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/ci/logs/dotclear2%20%28Community%29.svg)](https://ci-apps-arm.yunohost.org/ci/apps/dotclear2/)
|
||||
* Jessie x86-64b - [![Build Status](https://ci-stretch.nohost.me/ci/logs/dotclear2%20%28Community%29.svg)](https://ci-stretch.nohost.me/ci/apps/dotclear2/)
|
||||
|
||||
## Links
|
||||
|
||||
* Report a bug: https://github.com/YunoHost-Apps/dotclear2_ynh/issues
|
||||
* App website: https://dotclear.org/
|
||||
* YunoHost website: https://yunohost.org/
|
||||
|
||||
---
|
||||
|
||||
Developers info
|
||||
----------------
|
||||
|
||||
**Only if you want to use a testing branch for coding, instead of merging directly into master.**
|
||||
Please do your pull request to the [testing branch](https://github.com/YunoHost-Apps/dotclear2_ynh/tree/testing).
|
||||
|
||||
To try the testing branch, please proceed like that.
|
||||
```
|
||||
sudo yunohost app install https://github.com/YunoHost-Apps/dotclear2_ynh/tree/testing --debug
|
||||
or
|
||||
sudo yunohost app upgrade dotclear2 -u https://github.com/YunoHost-Apps/dotclear2_ynh/tree/testing --debug
|
||||
```
|
||||
|
||||
# TODO
|
||||
|
||||
- Add a 'protected' value to 'public' argument, so admin interface is protected
|
||||
- Replace 'password' argument by http_auth or ldap authent
|
||||
|
||||
# Problème connu
|
||||
|
||||
Dans le panneau d'administration, le sous menu Utilisateurs affiche ce message d'erreur
|
||||
|
||||
1038 Out of sort memory, consider increasing sort buffer size
|
||||
|
||||
Pour corriger se connecter au serveur, éditer `/etc/mysql/my.cnf` et mettre `sort_buffer_size = 256K`. Puis `service mysql restart`
|
||||
|
||||
|
||||
# Backup and restore
|
||||
|
||||
YunoHost backup & restore is not stable yet, you've to save your blog yourself and make sure you know how to restore it.
|
||||
|
||||
## Backup
|
||||
|
||||
In a root:root 750 /etc/cron.daily/yunohost script.
|
||||
|
||||
yunohost backup create
|
||||
|
||||
Note, do not use --hooks option, archives produced can't seems to be restored? And there will be two bugs preventing this command to work on a brand new YunoHost installation as of 09/2015. First one that you may fix asap.
|
||||
|
||||
root@debian-jessie:~# yunohost backup create
|
||||
Traceback (most recent call last):
|
||||
File "/usr/bin/yunohost", line 160, in
|
||||
print_json=PRINT_JSON, use_cache=USE_CACHE)
|
||||
File "/usr/lib/python2.7/dist-packages/moulinette/__init__.py", line 117, in cli
|
||||
moulinette.run(args, print_json)
|
||||
File "/usr/lib/python2.7/dist-packages/moulinette/interfaces/cli.py", line 202, in run
|
||||
ret = self.actionsmap.process(args, timeout=5)
|
||||
File "/usr/lib/python2.7/dist-packages/moulinette/actionsmap.py", line 462, in process
|
||||
return func(**arguments)
|
||||
File "/usr/lib/moulinette/yunohost/backup.py", line 68, in backup_create
|
||||
if name in backup_list()['archives']:
|
||||
File "/usr/lib/moulinette/yunohost/backup.py", line 302, in backup_list
|
||||
logging.info("unable to iterate over local archives: %s", str(e))
|
||||
NameError: global name 'logging' is not defined
|
||||
|
||||
The fix
|
||||
|
||||
sed -i -e "302s/logging/logger/" /usr/lib/moulinette/yunohost/backup.py
|
||||
|
||||
The second bug, that may only be fixed after a first failed backup attempt as this will create the 50-dotclear2 file
|
||||
|
||||
root@debian-jessie:~/dotclear2_ynh# yunohost backup create --hooks dotclear2
|
||||
Exécution des scripts de sauvegarde...
|
||||
Exécution du script...
|
||||
/bin/bash: 50-dotclear2: Permission non accordée
|
||||
Création de l'archive de sauvegarde...
|
||||
Succès ! Sauvegarde terminée
|
||||
|
||||
Then you can fix it
|
||||
|
||||
chown admin /etc/yunohost/hooks.d/backup/50-dotclear2
|
||||
|
||||
## Restore
|
||||
|
||||
Second bug and its fix also apply to restore script, /etc/yunohost/hooks.d/restore/50-dotclear. DotClear2 restore don't work so far.
|
||||
|
|
Loading…
Reference in a new issue