blob: 0d06a22adcdc9d2417755e74e4be70e718303fd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<?php
if (!defined('INCLUDE_OK')) {
die("May not be accessed directly");
}
// Local path to directory where page configuration is kept
$configdir = '../../data';
// Local path to web page root
$webdir = '..';
// Local path to files directory
$filesdir = '../files';
// URL to files directory, from editor
$filesediturl = '../files';
// URL to files directory, from page
$filesrealurl = 'files';
// Allowed file extensions (part of regex)
$allowedexts = 'png|jpg|jpeg|gif|bmp|svg|svgz|odt|odp|ods|rtf|txt|doc|docx|ppt|pptx|xls|xlsx|zip|7z|rar|tar\.gz|tar\.bz2|tar\.xz';
// Image size to scale down to
$image_width = 800;
$image_heigth = 600;
// Directory or base URL of wysihtml
$wysihtmldir = 'wysihtml';
// Name of default template, without .html
$defaulttemplate = 'template1';
// Maximum length of title in bytes
$maxtitle = 100;
// Maximum length of filename in bytes
$maxfilename = 50;
// Editor language
$language = 'en';
// Secret security value. It is used in the anti-CSRF token and as an additional
// salt value for password hashing functions. Please put your own value here.
$secretvalue = 'aIU2Nxz015Lafj3IxvbF';
// Allowed authentication methods
$auth_http_enabled = true; // Plain HTTP authentication, if configured in the web server
$auth_session_enabled = true; // Log-in form and PHP session
// Minimum password length, in characters. Does not apply to HTTP authentication, which does not allow changing passwords.
$minpasswordlength = 8;
|