You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
201 lines
6.2 KiB
201 lines
6.2 KiB
<?php //$id: $
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
// TODO: Ivan, 13-FEB-2010: Is this file really needed?
|
|
|
|
/**
|
|
==============================================================================
|
|
* GOAL: Updates courses separately
|
|
*
|
|
* After upgrading a previous version to Dokeos 1.6, there are only
|
|
* MAX_COURSE_TRANSFER courses converted to the new format - with
|
|
* MAX_COURSE_TRANSFER in install/index.php being 100 as default.
|
|
*
|
|
* To update the rest of the courses you need to run this script.
|
|
*
|
|
* @package chamilo.install
|
|
* @todo remove duplication: MAX_COURSE_TRANSFER is defined here and
|
|
* also in install.index.php
|
|
==============================================================================
|
|
*/
|
|
|
|
/*
|
|
==============================================================================
|
|
INIT SECTION
|
|
==============================================================================
|
|
*/
|
|
@include '../inc/installedVersion.inc.php';
|
|
require '../inc/lib/main_api.lib.php';
|
|
|
|
require '../lang/english/trad4all.inc.php';
|
|
require '../lang/english/install.inc.php';
|
|
|
|
//load for get_config_param()
|
|
require_once 'install_functions.inc.php';
|
|
|
|
define('DOKEOS_COURSE_UPDATE', 1);
|
|
define('MAX_COURSE_TRANSFER', 100);
|
|
|
|
error_reporting(E_COMPILE_ERROR | E_ERROR | E_CORE_ERROR);
|
|
|
|
@set_time_limit(0);
|
|
|
|
$update_path=trim(stripslashes($_GET['update_path']));
|
|
|
|
$update_from_version = array('1.5', '1.5.4', '1.5.5');
|
|
|
|
/*
|
|
==============================================================================
|
|
INITIALISE FORM VARIABLES
|
|
(If this is the first visit to this script.)
|
|
Variables are read from the configuration file
|
|
of the old Dokeos version (configuration.php).
|
|
==============================================================================
|
|
*/
|
|
|
|
$updateFromConfigFile = ''; // leave empty
|
|
$badUpdatePath = false;
|
|
|
|
if ($_POST['step2']) {
|
|
|
|
if (empty($_POST['updatePath'])) {
|
|
|
|
$_POST['step1'] = 1;
|
|
|
|
} else {
|
|
|
|
if ($_POST['updatePath'][strlen($_POST['updatePath'])-1] != '/') {
|
|
$_POST['updatePath'] .= '/';
|
|
}
|
|
|
|
if (!file_exists($_POST['updatePath'])) {
|
|
$badUpdatePath = true;
|
|
$_POST['step2'] = 0;
|
|
} elseif (!in_array(get_config_param('clarolineVersion'), $update_from_version)) {
|
|
$badUpdatePath = true;
|
|
$_POST['step2'] = 0;
|
|
} else {
|
|
$urlAppendPath = str_replace('/main/install/update_courses.php', '', api_get_self());
|
|
$urlForm = 'http://'.$_SERVER['HTTP_HOST'].$urlAppendPath.'/'; // What about https? See api_get_path().
|
|
$singleDbForm = get_config_param('singleDbEnabled');
|
|
$dbNameForm = get_config_param('mainDbName');
|
|
$dbHostForm = get_config_param('dbHost');
|
|
$dbUsernameForm = get_config_param('dbLogin');
|
|
$dbPassForm = get_config_param('dbPass');
|
|
}
|
|
}
|
|
|
|
} elseif ($_POST['step1']) {
|
|
|
|
$_POST['updatePath'] = '';
|
|
}
|
|
?>
|
|
|
|
<html>
|
|
<head>
|
|
<?php /* There is no metadata about current language and encoding. */ ?>
|
|
<title>-- Dokeos course update -- version <?php echo $dokeos_version; ?></title>
|
|
<link rel="stylesheet" href="../css/chamilo/default.css" type="text/css">
|
|
</head>
|
|
<body bgcolor="white" dir="<?php echo $text_dir; ?>">
|
|
|
|
<form method="post" action="<?php echo api_get_self(); ?>">
|
|
<table cellpadding="6" cellspacing="0" border="0" width="650" bgcolor="#E6E6E6" align="center">
|
|
<tr bgcolor="#4171B5"">
|
|
<td valign="top">
|
|
<big><font color="white">Dokeos course update - version <?php echo $dokeos_version; ?></font></big>
|
|
</td>
|
|
</tr>
|
|
<tr bgcolor="#E6E6E6">
|
|
<td>
|
|
|
|
<img src="../img/bluelogo.gif" align="right" hspace="10" vspace="10">
|
|
|
|
<?php
|
|
|
|
|
|
/*
|
|
==============================================================================
|
|
STEP 2 - COURSE UPDATE PROCESS
|
|
|
|
the included files, update_db.inc.php and update_files.inc.php
|
|
do the actual work of converting the course database
|
|
and the files, respectively
|
|
==============================================================================
|
|
*/
|
|
|
|
if ($_POST['step2']) {
|
|
|
|
include('update_db.inc.php');
|
|
include('update_files.inc.php');
|
|
?>
|
|
|
|
<h2>Step 2 of 2 – Course Update</h2>
|
|
|
|
<?php echo sizeof($coursePath); ?> courses have been successfully updated.
|
|
<br /><br />
|
|
|
|
<?php if($nbr_courses > MAX_COURSE_TRANSFER): ?>
|
|
<font color="red"><strong>Warning:</strong> You have more than <?php echo MAX_COURSE_TRANSFER; ?> courses on your Dokeos platform ! Only <?php echo MAX_COURSE_TRANSFER; ?> courses have been updated. To update the other courses, <a href="update_courses.php?update_path=<?php echo urlencode($updatePath); ?>"><font color="red">click here</font></a>.</font>
|
|
<?php else: ?>
|
|
<br /><br />
|
|
<?php endif; ?>
|
|
|
|
<br /><br /><br /><br />
|
|
|
|
</form>
|
|
<form method="get" action="../../">
|
|
<p align="right"><input type="submit" value="Go to your Dokeos portal" /></p>
|
|
|
|
<?php
|
|
}
|
|
|
|
|
|
/*
|
|
==============================================================================
|
|
STEP 1 : CONFIGURATION
|
|
==============================================================================
|
|
*/
|
|
|
|
else {
|
|
?>
|
|
<h2>Step 1 of 2 – Configuration</h2>
|
|
|
|
Please enter the path where the older version of Dokeos is installed (<?php echo implode(' | ',$update_from_version); ?>). The courses will be moved from that location to the Dokeos path.
|
|
<br /><br />
|
|
<strong>Notice:</strong> Please run this update script only if you've just updated (incompletely) Dokeos <?php echo implode(' | ',$update_from_version); ?> to Dokeos <?php echo $dokeos_version; ?>!
|
|
<br /><br />
|
|
<?php
|
|
if ($badUpdatePath) {
|
|
?>
|
|
<br /><br />
|
|
<div style="background-color:white; color:red; text-align:center; font-weight:bold;">
|
|
Error!<br />
|
|
Dokeos <?php echo implode('|',$update_from_version); ?> has not been found in that directory.
|
|
</div>
|
|
<?php
|
|
} else {
|
|
echo '<br />';
|
|
}
|
|
?>
|
|
<table border="0" cellpadding="5" width="100%" align="center">
|
|
<tr>
|
|
<td>Where are the courses to be updated: </td>
|
|
<td><input type="text" name="updatePath" size="50" value="<?php echo empty($update_path)?($badUpdatePath?htmlentities($_POST['updatePath']):$_SERVER['DOCUMENT_ROOT'].'/old_version/'):htmlentities($update_path); ?>" /></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<p align="center">
|
|
<input type="submit" name="step2" value="Update courses" onclick="javascript:if(this.value == 'Please Wait...') return false; else this.value='Please Wait...';" />
|
|
</p>
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|
|
|