Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-12-11 11:59:38 +0300
committerJoas Schilling <nickvergessen@owncloud.com>2015-12-11 11:59:38 +0300
commit0f122dcefef14b37a53760b2cf947927fa2b9dee (patch)
tree3f4620d4d5de93cb035dada852c358d7830566d6 /issue_template.md
parent60071ef04050e7a11e9e691043193dc892c9d935 (diff)
Remove steps for ownCloud 6
Diffstat (limited to 'issue_template.md')
-rw-r--r--issue_template.md10
1 files changed, 4 insertions, 6 deletions
diff --git a/issue_template.md b/issue_template.md
index 4932a402eaa..0295eb9c336 100644
--- a/issue_template.md
+++ b/issue_template.md
@@ -52,16 +52,14 @@ Insert your config.php content here
#### LDAP configuration (delete this part if not used)
```
-On ownCloud 7+ with access to your command line run e.g.:
+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.
+computer or access your SQL server remotely and run the select query:
+SELECT * FROM `oc_appconfig` WHERE `appid` = 'user_ldap';
+
Eventually replace sensitive data as the name/IP-address of your LDAP server or groups.
```