-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpedadida-config-sample.php
74 lines (50 loc) · 1.9 KB
/
pedadida-config-sample.php
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
// ** MySQL settings - You can get this info from your web host ** //
// Type of Database Used
$pedidada_database_type = 'mysqli'; // 'pgsql', 'mysqli', 'mssql', 'sqlsrv' or 'oci'
/** The name of the database for Pedadida */
$pedadida_database_name = '';
/** MySQL database username */
$pedadida_database_username = '';
/** MySQL database password */
$pedadida_database_password = '';
/** MySQL hostname */
$pedadida_database_host = 'localhost';
/** Database Charset to use in creating database tables. */
$pedadida_database_charset = 'utf8';
/** The Database Collate type. Don't change this if in doubt. */
$pedadida_database_collate = '';
$pedadida_key1 = '';
$pedadida_key2 = '';
$pedadida_key3 = '';
$pedadida_key4 = '';
$pedadida_key5 = '';
$pedadida_key6 = '';
$pedadida_key7 = '';
$pedadida_key8 = '';
// Path to MySQL Bin
$mysql_bin_path = '/usr/bin';
// Full Domain Link with trailing slash included
$pedadida_base = 'http://example.com/';
// Base Site for Classroom
$pedadida_classroom_base = $pedadida_base . 'class';
// Now you need a place where Classroom can save uploaded files.
$pedadida_classroom_data = '/home/example/classdata';
// Base Site for Library
$pedadida_library_base = $pedadida_base . 'library';
$pedadida_library_secure = 'false'; // Using SSL for Library?
// Email Notification Address
$pedadida_email_notify = '[email protected]';
// Paths used in Library - Can be modified in Library Config to override these settings
$pedadida_imagemagick_path = '/usr/bin';
$pedadida_ffmpeg_path = '/usr/local/bin';
$pedadida_exiftool_path="/usr/bin";
$pedadida_antiword_path="/root/antiword";
$pedadida_ghostscript_path="/usr/bin";
// Default Language
$pedadida_language = 'en-US';
# To be able to run certain actions asyncronus (eg. preview transcoding), define the path to php:
$pedadida_php_path="/usr/local/bin";
// Name of Your Pedadida Library
$pedadida_library_name = 'Library';
?>