-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfiguration.php
More file actions
executable file
·44 lines (34 loc) · 1.15 KB
/
configuration.php
File metadata and controls
executable file
·44 lines (34 loc) · 1.15 KB
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
<?php
/**
** This configuration file is automatically modifed by CodeZone. Please follow
** EDITING INSTRUCTIONS in the CodeZone manual if you have to do it manually
** Last modified on : 7 of October 2010, at 7:28:26 pm
**/
class ecjConfig{
//Application settings
var $offline=0;
var $allow_user_reg=1;
var $offline_message='CodeZone is offline for routine maintenance. Please check back soon. May the `GoOgLe` be with you!';
var $notify_mail='root@pluto.site';
var $meta_desc='CodeZone: The match arena | for algorithm match competitions | sureronald | osure ronald osure';
var $max_submissions=4;
var $submission_timeout=180;
//Session settings
var $session_lifetime=1800;//seconds
//Database settings
var $db_host='localhost';
var $table_prefix='cz_';
var $db_user='root';
var $db_pass='';
var $db_name='cz';
//Mail settings
var $mail_protocol='php_mail';
var $mail_from='ecm@codezone.com';
var $smtp_username='eucossa@egerton.ac.ke';
var $smtp_pass='#eucossa@compsci';
var $smtp_host='mail1.egerton.ac.ke';
var $smtp_port=25;
//Author details
var $author_url='http://sureronald.blogspot.com';
}
?>