install_files.inc.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Install the Chamilo files
  5. * Notice : This script has to be included by install/index.php
  6. *
  7. * The script creates two files:
  8. * - configuration.php, the file that contains very important info for Chamilo
  9. * such as the database names.
  10. * - .htaccess file (in the courses directory) that is optional but improves
  11. * security
  12. *
  13. * @package chamilo.install
  14. */
  15. if (defined('SYSTEM_INSTALLATION')) {
  16. // Write the system config file
  17. write_system_config_file('../inc/conf/configuration.php');
  18. // Write a distribution file with the config as a backup for the admin
  19. write_system_config_file('../inc/conf/configuration.dist.php');
  20. // Write a .htaccess file in the course repository
  21. write_courses_htaccess_file($urlAppendPath);
  22. // Copy distribution files with renaming for being the actual system configuration files.
  23. copy('../inc/conf/add_course.conf.dist.php', '../inc/conf/add_course.conf.php');
  24. copy('../inc/conf/course_info.conf.dist.php', '../inc/conf/course_info.conf.php');
  25. copy('../inc/conf/mail.conf.dist.php', '../inc/conf/mail.conf.php');
  26. copy('../inc/conf/profile.conf.dist.php', '../inc/conf/profile.conf.php');
  27. } else {
  28. echo 'You are not allowed here !';
  29. }