Current oav website
This commit is contained in:
49
dotclear._no/inc/dbschema/upgrade-cli.php
Normal file
49
dotclear._no/inc/dbschema/upgrade-cli.php
Normal file
@ -0,0 +1,49 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
/**
|
||||
* @brief Dotclear upgrade procedure (CLI)
|
||||
*
|
||||
* @package Dotclear
|
||||
* @subpackage Core
|
||||
*
|
||||
* @copyright Olivier Meunier & Association Dotclear
|
||||
* @copyright GPL-2.0-only
|
||||
*/
|
||||
|
||||
if (!defined('DC_RC_PATH')) {return;}
|
||||
|
||||
try
|
||||
{
|
||||
if (isset($_SERVER['argv'][1])) {
|
||||
$dc_conf = $_SERVER['argv'][1];
|
||||
} elseif (isset($_SERVER['DC_RC_PATH'])) {
|
||||
$dc_conf = realpath($_SERVER['DC_RC_PATH']);
|
||||
} else {
|
||||
$dc_conf = dirname(__FILE__) . '/../config.php';
|
||||
}
|
||||
|
||||
if (!is_file($dc_conf)) {
|
||||
throw new Exception(sprintf('%s is not a file', $dc_conf));
|
||||
}
|
||||
|
||||
$_SERVER['DC_RC_PATH'] = $dc_conf;
|
||||
unset($dc_conf);
|
||||
|
||||
require dirname(__FILE__) . '/../prepend.php';
|
||||
|
||||
echo "Starting upgrade process\n";
|
||||
$core->con->begin();
|
||||
try {
|
||||
$changes = dcUpgrade::dotclearUpgrade($core);
|
||||
} catch (Exception $e) {
|
||||
$core->con->rollback();
|
||||
throw $e;
|
||||
}
|
||||
$core->con->commit();
|
||||
echo 'Upgrade process successfully completed (' . $changes . "). \n";
|
||||
exit(0);
|
||||
} catch (Exception $e) {
|
||||
echo $e->getMessage() . "\n";
|
||||
exit(1);
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user