root / README @ master
History | View | Annotate | Download (1.47 KB)
| 1 |
sBNC Interface 1.3 Biofix - <http://www.sbnciface.org/> |
|---|---|
| 2 |
|
| 3 |
Copyright (C) 2010-2012 Conny Sjöblom <[email protected]> |
| 4 |
Copyright (C) 2010-2012 Arne Jensen <[email protected]> |
| 5 |
|
| 6 |
This program is free software: you can redistribute it and/or modify |
| 7 |
it under the terms of the GNU General Public License as published by |
| 8 |
the Free Software Foundation, either version 3 of the License, or |
| 9 |
(at your option) any later version. |
| 10 |
|
| 11 |
This program is distributed in the hope that it will be useful, |
| 12 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 |
GNU General Public License for more details. |
| 15 |
|
| 16 |
You should have received a copy of the GNU General Public License |
| 17 |
along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 18 |
|
| 19 |
|
| 20 |
Configuration |
| 21 |
~~~~~~~~~~~~~~ |
| 22 |
Make sure you have vhost.tcl added in sbnc.tcl, |
| 23 |
and edit the settings in settings.php |
| 24 |
|
| 25 |
Example configuration: |
| 26 |
|
| 27 |
//BNC Servers |
| 28 |
$bncServers = array( |
| 29 |
$sbncsrv1 = array( |
| 30 |
'name' => 'Mustis BNC', // sBNC Server Name |
| 31 |
'ip' => 'localhost', // sBNC Server Host |
| 32 |
'port' => '9000' // sBNC Server Port |
| 33 |
), |
| 34 |
); |
| 35 |
|
| 36 |
//Cookie Settings |
| 37 |
$expire = time() + 60 * 60 * 24 * 30; // Cookie lifetime Default: 30 days |
| 38 |
|
| 39 |
//Default language |
| 40 |
$defaultLang = 'en'; // Default language for sbnciface. |
| 41 |
|
| 42 |
//Select template |
| 43 |
$template = 'sbnciface'; // Template that sbnciface uses. |