Source for file index.php
Documentation is available at index.php
==============================================================================
Dokeos - elearning and course management software
Copyright (c) 2004-2008 Dokeos SPRL
Copyright (c) 2003 Ghent University (UGent)
Copyright (c) 2001 Universite catholique de Louvain (UCL)
Copyright (c) Olivier Brouckaert
Copyright (c) Roan Embrechts, Vrije Universiteit Brussel
For a full list of contributors, see "credits.txt".
The full license can be read in "license.txt".
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
See the GNU General Public License for more details.
Contact address: Dokeos, rue du Corbeau, 108, B-1030 Brussels, Belgium
==============================================================================
==============================================================================
* GOAL : Dokeos installation
* As seen from the user, the installation proceeds in 6 steps.
* The user is presented with several webpages where he/she has to make choices
* The aim is, as always, to have good default settings and suggestions.
* @todo reduce high level of duplication in this code
* @todo (busy) organise code into functions
* @package dokeos.install
==============================================================================
==============================================================================
==============================================================================
// Including necessary files
@include('../inc/installedVersion.inc.php');
require ('../inc/lib/main_api.lib.php');
require ('../lang/english/trad4all.inc.php');
require ('../lang/english/install.inc.php');
if (!empty($_POST['language_list']))
$search = array('../','\\0');
if(!is_dir('../lang/'. $install_language)){$install_language = 'english';}
include_once("../lang/ $install_language/trad4all.inc.php ");
include_once("../lang/ $install_language/install.inc.php ");
elseif ( isset ($_SESSION['install_language']) && $_SESSION['install_language'] )
$install_language = $_SESSION['install_language'];
include_once("../lang/ $install_language/trad4all.inc.php ");
include_once("../lang/ $install_language/install.inc.php ");
//force ISO-8859-15 for European languages. Leave Apache determine the encoding for others (HTML declaring UTF-8)
$euro_langs = array('english','french','french_KM','french_corporate','french_org','dutch','spanish','german','italian','greek','danish','swedish','norwegian','polish','galician','catalan','czech','finnish');
if (isset ($install_language))
if(in_array($install_language,$euro_langs))
$charset = 'ISO-8859-15';
header('Content-Type: text/html; charset='. $charset);
require_once('install_upgrade.lib.php'); //also defines constants
require_once('install_functions.inc.php');
define('MAX_COURSE_TRANSFER',100);
define('INSTALL_TYPE_UPDATE', 'update');
define('FORM_FIELD_DISPLAY_LENGTH', 40);
define('DATABASE_FORM_FIELD_DISPLAY_LENGTH', 25);
define('MAX_FORM_FIELD_LENGTH', 50);
define('DEFAULT_LANGUAGE', 'english');
// setting the error reporting
// overriding the timelimit (for large campusses that have to be migrated)
//upgrading from any subversion of 1.6 is just like upgrading from 1.6.5
$update_from_version_6= array('1.6','1.6.1','1.6.2','1.6.3','1.6.4','1.6.5');
//upgrading from any subversion of 1.8 avoids the additional step of upgrading from 1.6
$update_from_version_8= array('1.8','1.8.2','1.8.3','1.8.4');
if(!empty($_POST['old_version']))
$my_old_version = $_POST['old_version'];
elseif(!empty($dokeos_version)) //variable coming from installedVersion, normally
$my_old_version = $dokeos_version;
elseif(!empty($tmp_version))
$my_old_version = $tmp_version;
$new_version_stable = true;
==============================================================================
STEP 1 : INITIALIZES FORM VARIABLES IF IT IS THE FIRST VISIT
==============================================================================
$proposedUpdatePath = '';
if(!empty($_POST['updatePath']))
$proposedUpdatePath = $_POST['updatePath'];
if($_POST['step2_install'] || $_POST['step2_update_8'] || $_POST['step2_update_6'])
if($_POST['step2_install'])
if($_POST['step2_update_8'])
$emptyUpdatePath = false;
if(empty($_POST['updatePath']))
$proposedUpdatePath = $_SERVER['DOCUMENT_ROOT'];
$proposedUpdatePath = $_POST['updatePath'];
if(substr($proposedUpdatePath,- 1) != '/')
$proposedUpdatePath.= '/';
if(in_array($my_old_version,$update_from_version_8))
else //step2_update_6, presumably
if(empty($_POST['updatePath']))
$emptyUpdatePath = false;
if(substr($_POST['updatePath'],- 1) != '/')
$_POST['updatePath'].= '/';
if(in_array($my_old_version,$update_from_version_6))
$proposedUpdatePath = $_POST['updatePath'];
$updateFromConfigFile= '';
$installType= $_GET['installType'];
$updateFromConfigFile= $_GET['updateFromConfigFile'];
if($installType== 'update' && in_array($my_old_version,$update_from_version_8))
include_once('../inc/conf/configuration.php');
if(!isset ($_GET['running']))
$dbNameForm= 'dokeos_main';
$dbStatsForm= 'dokeos_stats';
$dbScormForm= 'dokeos_scorm';
$dbUserForm= 'dokeos_user';
// extract the path to append to the url if Dokeos is not installed on the web root directory
$urlForm= 'http://'. $_SERVER['HTTP_HOST']. $urlAppendPath. '/';
$emailForm= $_SERVER['SERVER_ADMIN'];
$email_parts = explode('@',$emailForm);
if($email_parts[1] == 'localhost')
$emailForm .= '.localdomain';
$educationForm= 'Albert Einstein';
$adminPhoneForm= '(000) 001 02 03';
$institutionForm= 'My Organisation';
$institutionUrlForm= 'http://www.dokeos.com';
$ShowEmailnotcheckedToStudent= 1;
$session_lifetime= 360000;
foreach($_POST as $key=> $val)
$magic_quotes_gpc= ini_get('magic_quotes_gpc')? true: false;
foreach($val as $key2=> $val2)
$_POST[$key][$key2]= $val2;
$GLOBALS[$key]= $_POST[$key];
elseif (!empty($_POST['language_list']) or !empty($_POST['step1']) or ((!empty($_POST['step2_update_8']) or (!empty($_POST['step2_update_6']))) && ($emptyUpdatePath or $badUpdatePath)))
elseif (!empty($_POST['step2']) or (!empty($_POST['step2_update_8']) or (!empty($_POST['step2_update_6'])) ))
elseif (!empty($_POST['step3']))
elseif (!empty($_POST['step4']))
elseif (!empty($_POST['step5']))
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<title>— <?php echo get_lang('DokeosInstallation'). ' — '. get_lang('Version_'). ' '. $new_version; ?></title>
<style type="text/css" media="screen, projection">
@import "../css/public_admin/default.css";
<script language="javascript">
function show_hide_option()
document.getElementById('optional_param1').style.display = '';
document.getElementById('optional_param2').style.display = '';
if(document.getElementById('optional_param3'))
document.getElementById('optional_param3').style.display = '';
document.getElementById('optional_param4').style.display = '';
document.getElementById('optional_param5').style.display = '';
document.getElementById('optional_param6').style.display = '';
document.getElementById('optional_param1').style.display = 'none';
document.getElementById('optional_param2').style.display = 'none';
if(document.getElementById('optional_param3'))
document.getElementById('optional_param3').style.display = 'none';
document.getElementById('optional_param4').style.display = 'none';
document.getElementById('optional_param5').style.display = 'none';
document.getElementById('optional_param6').style.display = 'none';
<?php if(!empty($charset)){ ?>
<meta http-equiv="Content-Type" content="text/html; charset= <?php echo $charset ?>" />
<body dir=" <?php echo $text_dir ?>">
<div id="header1"> <?php echo get_lang('DokeosInstallation'). ' — '. get_lang('Version_'). ' '. $new_version; ?><?php if($installType == 'new') echo ' – '. get_lang('NewInstallation'); else if($installType == 'update') echo ' – '. get_lang('UpdateFromDokeosVersion'). implode('|',$update_from_version); ?></div>
<div id="header2"> </div>
<div id="header3"> </div>
<form style="padding: 0px; margin: 0px;" method="post" action=" <?php echo api_get_self(); ?>?running=1&installType= <?php echo $installType; ?>&updateFromConfigFile= <?php echo urlencode($updateFromConfigFile); ?>">
<div id="installation_steps">
<img src="../img/bluelogo.gif" hspace="10" vspace="10" alt="Dokeos logo" />
<table cellpadding="6" cellspacing="0" border="0" width="75%" align="center">
<input type="hidden" name="updatePath" value=" <?php if(!$badUpdatePath) echo htmlentities($proposedUpdatePath); ?>" />
<input type="hidden" name="urlAppendPath" value=" <?php echo htmlentities($urlAppendPath); ?>" />
<input type="hidden" name="pathForm" value=" <?php echo htmlentities($pathForm); ?>" />
<input type="hidden" name="urlForm" value=" <?php echo htmlentities($urlForm); ?>" />
<input type="hidden" name="dbHostForm" value=" <?php echo htmlentities($dbHostForm); ?>" />
<input type="hidden" name="dbUsernameForm" value=" <?php echo htmlentities($dbUsernameForm); ?>" />
<input type="hidden" name="dbPassForm" value=" <?php echo htmlentities($dbPassForm); ?>" />
<input type="hidden" name="singleDbForm" value=" <?php echo htmlentities($singleDbForm); ?>" />
<input type="hidden" name="dbPrefixForm" value=" <?php echo htmlentities($dbPrefixForm); ?>" />
<input type="hidden" name="dbNameForm" value=" <?php echo htmlentities($dbNameForm); ?>" />
if($installType == 'update' OR $singleDbForm == 0)
<input type="hidden" name="dbStatsForm" value=" <?php echo htmlentities($dbStatsForm); ?>" />
<input type="hidden" name="dbScormForm" value=" <?php echo htmlentities($dbScormForm); ?>" />
<input type="hidden" name="dbUserForm" value=" <?php echo htmlentities($dbUserForm); ?>" />
<input type="hidden" name="dbStatsForm" value=" <?php echo htmlentities($dbNameForm); ?>" />
<input type="hidden" name="dbUserForm" value=" <?php echo htmlentities($dbNameForm); ?>" />
<input type="hidden" name="enableTrackingForm" value=" <?php echo htmlentities($enableTrackingForm); ?>" />
<input type="hidden" name="allowSelfReg" value=" <?php echo htmlentities($allowSelfReg); ?>" />
<input type="hidden" name="allowSelfRegProf" value=" <?php echo htmlentities($allowSelfRegProf); ?>" />
<input type="hidden" name="emailForm" value=" <?php echo htmlentities($emailForm); ?>" />
<input type="hidden" name="adminLastName" value=" <?php echo htmlentities($adminLastName); ?>" />
<input type="hidden" name="adminFirstName" value=" <?php echo htmlentities($adminFirstName); ?>" />
<input type="hidden" name="adminPhoneForm" value=" <?php echo htmlentities($adminPhoneForm); ?>" />
<input type="hidden" name="loginForm" value=" <?php echo htmlentities($loginForm); ?>" />
<input type="hidden" name="passForm" value=" <?php echo htmlentities($passForm); ?>" />
<input type="hidden" name="languageForm" value=" <?php echo htmlentities($languageForm); ?>" />
<input type="hidden" name="campusForm" value=" <?php echo htmlentities($campusForm); ?>" />
<input type="hidden" name="educationForm" value=" <?php echo htmlentities($educationForm); ?>" />
<input type="hidden" name="institutionForm" value=" <?php echo htmlentities($institutionForm); ?>" />
<input type="hidden" name="institutionUrlForm" value=" <?php echo stristr($institutionUrlForm,'http://')? htmlentities($institutionUrlForm): 'http://'. htmlentities($institutionUrlForm); ?>" />
<input type="hidden" name="checkEmailByHashSent" value=" <?php echo htmlentities($checkEmailByHashSent); ?>" />
<input type="hidden" name="ShowEmailnotcheckedToStudent" value=" <?php echo htmlentities($ShowEmailnotcheckedToStudent); ?>" />
<input type="hidden" name="userMailCanBeEmpty" value=" <?php echo htmlentities($userMailCanBeEmpty); ?>" />
<input type="hidden" name="encryptPassForm" value=" <?php echo htmlentities($encryptPassForm); ?>" />
<input type="hidden" name="session_lifetime" value=" <?php echo htmlentities($session_lifetime); ?>" />
<input type="hidden" name="old_version" value=" <?php echo htmlentities($my_old_version); ?>" />
<input type="hidden" name="new_version" value=" <?php echo htmlentities($new_version); ?>" />
//STEP 4 : MYSQL DATABASE SETTINGS
display_database_settings_form($installType, $dbHostForm, $dbUsernameForm, $dbPassForm, $dbPrefixForm, $enableTrackingForm, $singleDbForm, $dbNameForm, $dbStatsForm, $dbScormForm, $dbUserForm);
//STEP 5 : CONFIGURATION SETTINGS
//if update, try getting settings from the database...
if($installType == 'update')
if(!empty($tmp)) $languageForm = $tmp;
if(!empty($tmp)) $emailForm = $tmp;
if(!empty($tmp)) $adminFirstName = $tmp;
if(!empty($tmp)) $adminLastName = $tmp;
if(!empty($tmp)) $adminPhoneForm = $tmp;
if(!empty($tmp)) $campusForm = $tmp;
if(!empty($tmp)) $institutionForm = $tmp;
if(!empty($tmp)) $institutionUrlForm = $tmp;
if(in_array($my_old_version,$update_from_version_6))
$urlForm = $_configuration['root_web'];
if(!empty($tmp)) $allowSelfReg = $tmp;
$allowSelfRegProf = false;
if(!empty($tmp)) $allowSelfRegProf = $tmp;
display_configuration_settings_form($installType, $urlForm, $languageForm, $emailForm, $adminFirstName, $adminLastName, $adminPhoneForm, $campusForm, $institutionForm, $institutionUrlForm, $encryptPassForm, $allowSelfReg, $allowSelfRegProf, $loginForm, $passForm);
//STEP 6 : LAST CHECK BEFORE INSTALL
<?php echo get_lang('HereAreTheValuesYouEntered');?>
<b> <?php echo get_lang('PrintThisPageToRememberPassAndOthers');?></b>
<?php echo get_lang('MainLang'). ' : '. $languageForm; ?><br /><br />
<?php echo get_lang('DBHost'). ' : '. $dbHostForm; ?><br />
<?php echo get_lang('DBLogin'). ' : '. $dbUsernameForm; ?><br />
<?php echo get_lang('DBPassword'). ' : '. $dbPassForm; ?><br />
<?php if(!empty($dbPrefixForm)) echo get_lang('DbPrefixForm'). ' : '. $dbPrefixForm. '<br />'; ?>
<?php echo get_lang('MainDB'). ' : <b>'. $dbNameForm; ?></b> <?php if($installType == 'new') echo ' (<font color="#cc0033">'. get_lang('ReadWarningBelow'). '</font>)'; ?><br />
echo get_lang('StatDB'). ' : <b>'. $dbStatsForm. '</b>';
if($installType == 'new')
echo ' (<font color="#cc0033">'. get_lang('ReadWarningBelow'). '</font>)';
echo get_lang('ScormDB'). ' : <b>'. $dbScormForm. '</b>';
if($installType == 'new')
echo ' (<font color="#cc0033">'. get_lang('ReadWarningBelow'). '</font>)';
echo get_lang('UserDB'). ' : <b>'. $dbUserForm. '</b>';
if($installType == 'new')
echo ' (<font color="#cc0033">'. get_lang('ReadWarningBelow'). '</font>)';
<?php echo get_lang('EnableTracking'). ' : '. ($enableTrackingForm? $langYes: $langNo); ?><br />
<?php echo get_lang('SingleDb'). ' : '. ($singleDbForm? $langOne: $langSeveral); ?><br /><br />
<?php echo get_lang('AllowSelfReg'). ' : '. ($allowSelfReg? $langYes: $langNo); ?><br />
<?php echo get_lang('EncryptUserPass'). ' : '. ($encryptPassForm? $langYes: $langNo); ?><br /><br/>
<?php echo get_lang('AdminEmail'). ' : '. $emailForm; ?><br />
<?php echo get_lang('AdminLastName'). ' : '. $adminLastName; ?><br />
<?php echo get_lang('AdminFirstName'). ' : '. $adminFirstName; ?><br />
<?php echo get_lang('AdminPhone'). ' : '. $adminPhoneForm; ?><br />
<?php if($installType == 'new'): ?>
<?php echo get_lang('AdminLogin'). ' : <b>'. $loginForm; ?></b><br />
<?php echo get_lang('AdminPass'). ' : <b>'. $passForm; ?></b><br /><br />
<?php echo get_lang('CampusName'). ' : '. $campusForm; ?><br />
<?php echo get_lang('InstituteShortName'). ' : '. $institutionForm; ?><br />
<?php echo get_lang('InstituteURL'). ' : '. $institutionUrlForm; ?><br />
<?php echo get_lang('DokeosURL'). ' : '. $urlForm; ?><br />
<?php if($installType == 'new'): ?>
<div style="background-color:#FFFFFF">
<p align="center"><b><font color="red">
<?php echo get_lang('Warning');?> !<br />
<?php echo get_lang('TheInstallScriptWillEraseAllTables');?>
<td><input type="submit" name="step4" value="< <?php echo get_lang('Previous'); ?>" /></td>
<td align="right"><input type="submit" name="step6" value=" <?php echo get_lang('InstallDokeos'); ?> >" onclick="javascript:if(this.value == ' <?php echo get_lang('PleaseWait');?>...') return false; else this.value=' <?php echo get_lang('PleaseWait');?>...';" /></td>
//STEP 6 : INSTALLATION PROCESS
if($installType == 'update')
if(empty($my_old_version)){$my_old_version= '1.8.3';} //we guess
$_configuration['main_database'] = $dbNameForm;
//$urlAppendPath = get_config_param('urlAppend');
include('update-db-1.6.x-1.8.0.inc.php');
include('update-files-1.6.x-1.8.0.inc.php');
//intentionally no break to continue processing
include('update-db-1.8.0-1.8.2.inc.php');
//intentionally no break to continue processing
include('update-db-1.8.2-1.8.3.inc.php');
//intentionally no break to continue processing
include('update-db-1.8.3-1.8.4.inc.php');
include('update-files-1.8.3-1.8.4.inc.php');
include('update-db-1.8.4-1.8.5.inc.php');
include('update-files-1.8.4-1.8.5.inc.php');
include('install_db.inc.php');
include('install_files.inc.php');
elseif($_POST['step1'] || $badUpdatePath)
//make sure that proposed path is set, shouldn't be necessary but...
if(empty($proposedUpdatePath)){$proposedUpdatePath = $_POST['updatePath'];}
display_requirements($installType, $badUpdatePath, $proposedUpdatePath, $update_from_version_8, $update_from_version_6);
<br style="clear:both;" />
<div class="copyright"> <?php echo get_lang('Platform');?> <a href="http://www.dokeos.com"> Dokeos <?php echo $new_version ?></a> © <?php echo date('Y'); ?> </div>
|