diff options
author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2015-07-04 20:57:24 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2015-07-04 20:57:24 +0100 |
commit | 34637b58746a5bc89784f6da012046f5be890f93 (patch) | |
tree | 96ab830f01251375e579b7aabdb345871b8e4d65 | |
parent | 468871818dacd1f5188c48b7ec5a72185243eb0e (diff) | |
parent | b0e5901354263aa934f675b64bbe0aa0f6325d7d (diff) | |
download | nextcloud-server-34637b58746a5bc89784f6da012046f5be890f93.tar.gz nextcloud-server-34637b58746a5bc89784f6da012046f5be890f93.zip |
Merge pull request #16846 from RealRancor/apps_list_issue_template
Add occ app:list and ldap:show-config to issue_template.md
-rw-r--r-- | issue_template.md | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/issue_template.md b/issue_template.md index df93e0ffe15..b0b24e56df0 100644 --- a/issue_template.md +++ b/issue_template.md @@ -24,6 +24,12 @@ Tell us what happens instead **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:** ``` @@ -40,9 +46,17 @@ Insert your config.php content here #### 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'; +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. ``` |