Chamilo is a learning management system focused on ease of use and accessibility
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.
 
 
 
 
 
 
chamilo-lms/tests/scripts/fix_user_id.php

18 lines
510 B

<?php
/* For licensing terms, see /license.txt */
/**
* Temporary fix to set user.user_id to the same as user.id
*/
if (PHP_SAPI != 'cli') {
die('This script can only be executed from the command line');
}
require __DIR__.'/../../main/inc/conf/configuration.php';
$dbh = mysql_connect(
$_configuration['db_host'],
$_configuration['db_user'],
$_configuration['db_password']
);
$db = mysql_select_db($_configuration['main_database']);
$sql = "UPDATE user SET user_id = id";
mysql_query($sql);