Add occ app:list and ldap:show-config to issue_template.md

This commit is contained in:
RealRancor 2015-06-09 19:41:12 +02:00 committed by RealRancor
parent 468871818d
commit b0e5901354

View file

@ -24,6 +24,12 @@ Tell us what happens instead
**List of activated apps:** **List of activated apps:**
```
If you have access to your command line run e.g.:
sudo -u www-data php occ app:list
from within your ownCloud installation folder
```
**The content of config/config.php:** **The content of config/config.php:**
``` ```
@ -40,9 +46,17 @@ Insert your config.php content here
#### LDAP configuration (delete this part if not used) #### LDAP configuration (delete this part if not used)
``` ```
run: sqlite3 data/owncloud.db On ownCloud 7+ with access to your command line run e.g.:
sudo -u www-data php occ ldap:show-config
from within your ownCloud installation folder
On ownCloud 6 with access to your command line run e.g.:
sqlite3 data/owncloud.db or mysql -u root -p owncloud
then execute: select * from oc_appconfig where appid='user_ldap'; then execute: select * from oc_appconfig where appid='user_ldap';
Without access to your command line download the data/owncloud.db to your local
computer or access your SQL server remotely and run the select query above.
Eventually replace sensitive data as the name/IP-address of your LDAP server or groups. Eventually replace sensitive data as the name/IP-address of your LDAP server or groups.
``` ```