# VIKO Configuration file # # The configuration options are adjusted to match # the needs of a typical VIKO installation. But still # some of them probably need to be adjusted, at least # the database username and password. # Database options # # The database_type option is provided for future needs. # at the moment VIKO only runs with MySQL. # # If the database runs on the same server as VIKO, # then there is also no need to change the database_host option. database_type = mysql database_host = localhost # The following three are probably the ones that need adjustment. # # database_name is the name of MySQL database dedicated to VIKO. # database_username is the username to access this database. # database_password is the password needed for that user. database_name = viko database_username = vikouser database_password = vikopass # Localization options # # The language option is used to set the default interface language. # It is also used when sending e-mail to school administrator. # # - "et_EE" for Estonian, # - "en_US" for English, # - "ru_RU" for Russian. locale = et_EE # date formats # The formats correspond to the syntax of PHP function strftime() # For reference, see: php.net/manual/en/function.strftime.php # # The short date is used where screen real estate is valuable, # the long format is used on all the other occasions plus as a # tooltip appearing when howering over the short format. short_date = %d.%m long_date = %e. %B %Y # long time is the format for full date with time short_time = %d.%m, %H:%M long_time = %e. %B %Y, %H:%M # The order of course modules # course_modules_1 = course-info course_modules_2 = students course_modules_3 = lessons course_modules_4 = marks course_modules_5 = materials course_modules_6 = forum # Are students allowed to create user accounts through # the public registration page, or should the registration be # disabled? The default is to allow registration. # # If you set this to "no", then the school administrator must # add all the students by himself. # allow_registration = yes # What is the maximum size of a file that is allowed to be uploaded? # The default is 100MB ( 104857600 bytes ), which is fairly large. # The value needs to be specified in bytes. # max_file_size = 104857600 # Are students allowed to upload files and add links to course materials # section? The default is to allow. # student_can_upload_files = no student_can_add_links = yes