Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Fachrat Informatik
user_wcf
Commits
ef79011a
Commit
ef79011a
authored
Nov 24, 2013
by
Fritz Webering
Browse files
Add installation instruction
parent
a82517b2
Changes
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
ef79011a
...
...
@@ -2,3 +2,22 @@ user_wcf
========
Owncloud user backend for the Woltlab Community Framework (WCF) used by Woltlab Burning Board (WBB3)
To use this backend you need to enable the app in OwnCloud and then add the user backend to your configuration file:
```
php
$CONFIG
=
array
(
// [...]
'user_backends'
=>
array
(
array
(
'class'
=>
'OCA\\User_WCF\\User_WCF'
,
'arguments'
=>
array
(
// Change to your WCF path containing the DB settings (config.inc.php)
'/var/www/forum/wcf'
,
// Change this to the WCF groups that should be allowed to use OC.
array
(
'Admins'
,
'Privilged Users'
,
'Some other Privileged Group'
),
),
),
),
);
```
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment