root/releases/0.8/config-dist.php

Revision 1018, 9.4 kB (checked in by sven, 2 years ago)

change default error logging level and memory limit

  • Property svn:eol-style set to native
Line 
1 <?php
2 // ELGG system configuration parameters.
3
4 // System constants: set values as necessary
5 // Supply your values within the second set of speech marks in the pair
6 // i.e., define("system constant name", "your value");
7
8 // Name of the site (eg Elgg, Apcala, University of Bogton's Social Network, etc)
9
10     $CFG->sitename = 'My Elgg site';
11
12 // A tagline for your site (eg 'Social network for Bogton')
13
14     $CFG->tagline = 'A social networking site';
15
16 // External URL to the site (eg http://elgg.bogton.edu/)
17 // NB: **MUST** have a final slash at the end
18
19     $CFG->wwwroot = 'http://';
20
21 // Physical path to the files (eg /home/elggserver/httpdocs/)
22 // NB: **MUST** have a final slash at the end
23
24     $CFG->dirroot = '';
25
26 // Email address of the system (eg elgg-admin@bogton.edu)
27
28     $CFG->sysadminemail = '';
29
30 // Account 1, with username news, is initially administrator. This
31 // will be its initial password - UPON INSTALLATION, YOU SHOULD LOG
32 // IN AS NEWS AND CHANGE THE PASSWORD IMMEDIATELY.
33
34     $CFG->newsinitialpassword = '';
35     
36 // Country code to set language to if you have gettext installed
37 // To include new languages, save their compiled .mo gettext
38 // file into languages/country code/LC_MESSAGES/
39 // (the file within this folder must be called elgg.mo)
40 // See https://launchpad.net/elgg/trunk/+pots/elgg for more
41 // translations.
42
43     $CFG->defaultlocale = 'en_GB';
44
45 // The following should be set to false if you don't want the
46 // general public to be able to register accounts with your
47 // Elgg site.
48
49     $CFG->publicreg = true;
50     
51 // The following should be set to false if you don't want users
52 // to be able to invite new users into the system.
53
54     $CFG->publicinvite = true;
55
56 // Set this to a positive number to cap the number of users in your
57 // installation, for example if you're testing and only have a certain number
58 // of resources available to you.
59
60     $CFG->maxusers = 0;
61
62 // Set this to 1 to enable a walled garden - i.e., if you're not logged in,
63 // all you can see is the login page.
64
65     $CFG->walledgarden = 0;
66
67 // If the following string is non-blank, it must be present within
68 // the domains of email addresses of people signing up. For example,
69 // if you set it to yourinstitution.edu, a user with the email address
70 // foo@bar.yourinstitution.edu will be able to sign up.
71 // This rule will hold true for both public registrations and invitations
72 // from within the system (if either are enabled).
73
74     $CFG->emailfilter = "";
75     
76 // The following sets the default access level within the Elgg
77 // site. Possible values include:
78 //        PUBLIC        :: available to everyone
79 //        LOGGED_IN    :: available to logged in users only
80 //        PRIVATE        :: available to the user only
81
82     $CFG->default_access = "LOGGED_IN";
83
84 // Set the following to true to force users to log in before they can post comments, overriding per-user option
85 // Handy sledgehammer-to-crack-a-nut to protect against comment spam.
86     $CFG->disable_publiccomments = false;
87     
88 // dataroot. this is where uploaded files will go (and sessions for now)
89 // This should be OUTSIDE your wwwroot.
90 // NB: **MUST** have a final slash at the end
91
92     $CFG->dataroot = '';
93
94 // You may change these values to something else but you must ensure that
95 // the user the web server process runs as is able to read and write under
96 // these permissions.
97 //$CFG->directorypermissions = 0777;
98 //$CFG->filepermissions = 0666;
99
100     $CFG->dbtype = 'mysql'; // for now
101     $CFG->dbhost = 'localhost';
102     $CFG->dbuser = '';
103     $CFG->dbpass = '';
104     $CFG->dbname = '';
105     $CFG->dbpersist = false;
106
107 // The following will assume all your database tables have this value at the start
108 // of their names. If you're upgrading from an earlier version of Elgg, you might
109 // need to set this to $CFG->prefix = '';
110
111     $CFG->prefix = 'elgg';
112
113 // performance and debugging
114 // Uncomment this to get sql errors sent to the webserver error log.
115 // $CFG->dblogerror = true;
116
117 // verbosity of PHP error message logging.
118 // set this to 2047 to get adodb error handling.
119
120     //$CFG->debug = 0; // don't log *any* error messages. previously this was the (unhelpful) default.
121     $CFG->debug = 7; // only basic errors. for production systems. equivalent to php (E_ERROR | E_WARNING | E_PARSE).
122     //$CFG->debug = 2047; // errors and notices. for development systems/debugging. equivalent to php E_ALL.
123
124 // Number of days to keep incoming RSS feed entries for before deleting them.
125 // A value of 0 disables automatic deletion.
126
127     $CFG->rsspostsmaxage = 0;
128
129 // Set this to 'admin' to only allow administrators to create new communities.
130 // You can set this to other user flags if you're told to by a plugin.
131
132     $CFG->community_create_flag = "";
133     
134 // Username and password for the admin panel at /_elggadmin/
135 // To use the admin panel, these can't be left blank!
136
137     $CFG->adminuser = "";
138     $CFG->adminpassword = "";
139
140 //
141 //   Capture performance profiling data
142 //   define('ELGG_PERF'  , true);
143 //
144 //   Capture additional data from DB
145 //   define('ELGG_PERFDB'  , true);
146 //
147 //   Print to log (for passive profiling of production servers)
148 //   define('ELGG_PERFTOLOG'  , true);
149 //
150 //   Print to footer (works with the default theme)
151 //   define('ELGG_PERFTOFOOT', true);
152 //
153 // EMAIL HANDLING
154 // $CFG->smtphosts= ''; // empty (sendmail), qmail (qmail) or hosts
155 // $CFG->smtpuser = ''; // if using smtphosts, optional smtpuser & smtppass
156 // $CFG->smtppass = '';
157 // $CFG->noreplyaddress = ''; // this will default to noreply@hostname (from wwwroot)
158
159 // CLAMAV HANDLING
160 //$CFG->runclamonupload = true;
161 //$CFG->quarantinedir = '/somewhere/the/webserver/can/write/to';
162 //$CFG->clamfailureonupload = 'actlikevirus'; // OR 'donothing';
163 //$CFG->pathtoclam = '/usr/bin/clamscan'; // OR '/usr/bin/clamdscan';
164
165 // TEMPLATES HANDLING
166 //$CFG->disable_usertemplates = true;  // users can only choose from available templates
167 //$CFG->disable_templatechanging = true; // users can't change their template at all
168 //Templates root defaults to /mod/template/templates; if you change this, you will need
169 //to move or copy /mod/template/templates/Default_Template/ to the new location
170 //$CFG->templatesroot = '/some/path/'; // use on-disk templates instead of DB templates
171
172 //Template file handing is not currently recommended.
173 //$CFG->templatestore = 'db';          // 'db' (default) or 'files' (requires $CFG->templatesroot to be set)
174
175 // PROFILE LOCATION
176 //\$CFG->profilelocation = '$PARSEDCFG->templatelocation';
177
178 // set up some LMS hosts.
179 // --------------------------------------------------
180 // This array is KEYED on installid - the lms clients should identify themselves with this installid
181 // Token is required and should be shared with the lms client.
182 // Baseurl is required and will be used to link back to the lms.
183 // Name is optional and will be used to display a user friendly name.  The institution name is a good choice.
184 //      If this is not given, installid will be used instead.
185 // Confirmurl is optional (pings back confirmation of requests for signup and authentication.)
186 //      Moodle's confirm url is http://yourmoodlehost.com/blocks/eportfolio/confirm.php
187 //      But not all lms systems will implement this necessarily.
188 // Network address is optional (performs further checking on requests from the lms) & can be three different formats:
189 //      A full exact address like 192.168.0.1
190 //      A partial address like 192.168
191 //      CIDR notation, such as 231.54.211.0/20
192 //
193 // $CFG->lmshosts = array('installid' => array('token' => 'sharedsecret', 'networkaddress' => 'xxx.xxx.xxx.xxx','confirmurl' => 'http://thelms.com/something.php', 'baseurl' => 'http://thelms.com', 'name' => 'Something Friendly'));
194 //
195 // Note that if you are going to allow file transfers between your lms and elgg using scp
196 // you will need to obtain the .pub part of an ssh key that the lms has been set up to use,
197 // and add it to the ~/.ssh/authorized_keys file for the user on this machine they need to connect to,
198 // and provide the lms with the username for that user.
199 // This user needs write access to {$CFG->dataroot}lms/incoming/ as that is where the incoming files will end up.
200
201
202 // For SSL feed *reading* support, Snoopy needs to know where the curl executable is.
203 // To disable, or if curl is not available (e.g. on Windows), set to false
204 //$CFG->curlpath = "/usr/bin/curl";
205 $CFG->curlpath = false;
206
207 // Whether to prevent users from changing their passwords.
208 // For use with an external authentication system that doesn't look at the elgg user's password.
209 // You'll probably want to disable registration and invites too.
210 $CFG->disable_passwordchanging = false;
211
212 // Some other $CFG variables found in codebase.
213 // They may or may not be config options. Some are just used for holding global data.
214
215 // $CFG->admin
216 // $CFG->allowobjectembed // boolean - whether to allow <object> and <embed> tags through input-cleaning
217 // $CFG->auth // string - which auth plugin to use
218 // $CFG->cachetext
219 // $CFG->currenttextiscacheable
220 // $CFG->dbsessions
221 // $CFG->detect_unchecked_vars
222 // $CFG->filterall
223 // $CFG->framename
224 // $CFG->handlebounces // in commented-out code
225 // $CFG->ignoresesskey // in commented-out code
226 // $CFG->logsql
227 // $CFG->maxbytes
228 // $CFG->openid_comments_allowed
229 // $CFG->opentogoogle
230 // $CFG->pathtodu
231 // $CFG->perfdebug
232 // $CFG->pixpath
233 // $CFG->plugins->editor
234 // $CFG->plugins->tinymce
235 // $CFG->release
236 // $CFG->respectsessionsettings
237 // $CFG->secureforms
238 // $CFG->session_error_counter
239 // $CFG->sessioncookie
240 // $CFG->sessiontimeout
241 // $CFG->templatedir
242 // $CFG->tracksessionip
243 // $CFG->unzip
244 // $CFG->userlocale
245 // $CFG->version
246 // $CFG->zip
247
248 ?>
Note: See TracBrowser for help on using the browser.