dolibarr/htdocs/admin/tools/update.php

148 lines
4.8 KiB
PHP
Raw Normal View History

<?php
/* Copyright (C) 2007-2017 Laurent Destailleur <eldy@users.sourceforge.net>
2018-10-27 14:43:12 +02:00
* Copyright (C) 2009-2012 Regis Houssin <regis.houssin@inodbox.com>
* Copyright (C) 2012 Juanjo Menent <jmenent@2byte.es>
*
* 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 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2019-09-23 21:55:30 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/**
2009-05-18 01:54:07 +02:00
* \file htdocs/admin/tools/update.php
* \brief Page to make a Dolibarr online upgrade
*/
2007-04-27 11:19:42 +02:00
require '../../main.inc.php';
require_once DOL_DOCUMENT_ROOT . '/core/lib/admin.lib.php';
require_once DOL_DOCUMENT_ROOT . '/core/lib/files.lib.php';
require_once DOL_DOCUMENT_ROOT . '/core/lib/geturl.lib.php';
2018-09-08 10:30:10 +02:00
// Load translation files required by the page
$langs->loadLangs(array("admin","other"));
$action=GETPOST('action', 'alpha');
2011-12-28 12:53:46 +01:00
if (! $user->admin) accessforbidden();
2007-04-27 11:19:42 +02:00
if (GETPOST('msg', 'alpha')) {
setEventMessages(GETPOST('msg', 'alpha'), null, 'errors');
}
2007-04-27 11:19:42 +02:00
2017-01-07 14:56:15 +01:00
$urldolibarr='https://www.dolibarr.org/downloads/';
$dolibarrroot=preg_replace('/([\\/]+)$/i', '', DOL_DOCUMENT_ROOT);
$dolibarrroot=preg_replace('/([^\\/]+)$/i', '', $dolibarrroot);
$dolibarrdataroot=preg_replace('/([\\/]+)$/i', '', DOL_DATA_ROOT);
2007-04-27 11:19:42 +02:00
$sfurl = '';
$version='0.0';
2007-04-27 11:19:42 +02:00
/*
* Actions
*/
2007-04-27 11:19:42 +02:00
if ($action == 'getlastversion')
{
$result = getURLContent('http://sourceforge.net/projects/dolibarr/rss');
//var_dump($result['content']);
$sfurl = simplexml_load_string($result['content']);
2007-04-27 11:19:42 +02:00
}
2007-04-27 11:19:42 +02:00
/*
* View
*/
$wikihelp='EN:Installation_-_Upgrade|FR:Installation_-_Mise_à_jour|ES:Instalación_-_Actualización';
llxHeader('', $langs->trans("Upgrade"), $wikihelp);
print load_fiche_titre($langs->trans("Upgrade"), '', 'title_setup');
print '<br>';
print $langs->trans("CurrentVersion").' : <strong>'.DOL_VERSION.'</strong><br>';
2016-07-27 16:45:13 +02:00
if (function_exists('curl_init'))
{
2017-02-10 18:42:59 +01:00
$conf->global->MAIN_USE_RESPONSE_TIMEOUT = 10;
2018-09-08 10:30:10 +02:00
if ($action == 'getlastversion')
{
if ($sfurl)
{
$i=0;
while (! empty($sfurl->channel[0]->item[$i]->title) && $i < 10000)
2016-07-27 16:45:13 +02:00
{
$title=$sfurl->channel[0]->item[$i]->title;
if (preg_match('/([0-9]+\.([0-9\.]+))/', $title, $reg))
{
$newversion=$reg[1];
$newversionarray=explode('.', $newversion);
$versionarray=explode('.', $version);
//var_dump($newversionarray);var_dump($versionarray);
if (versioncompare($newversionarray, $versionarray) > 0) $version=$newversion;
}
$i++;
2016-07-27 16:45:13 +02:00
}
2018-09-08 10:30:10 +02:00
// Show version
print $langs->trans("LastStableVersion").' : <b>'. (($version != '0.0')?$version:$langs->trans("Unknown")) .'</b><br>';
}
else
{
print $langs->trans("LastStableVersion").' : <b>' .$langs->trans("UpdateServerOffline").'</b><br>';
}
2016-07-27 16:45:13 +02:00
}
else
{
print $langs->trans("LastStableVersion").' : <a href="'.$_SERVER["PHP_SELF"].'?action=getlastversion" class="button">' .$langs->trans("Check").'</a><br>';
}
}
print '<br>';
2016-07-27 16:45:13 +02:00
print '<br>';
// Upgrade
print $langs->trans("Upgrade").'<br>';
2008-02-11 17:34:55 +01:00
print '<hr>';
print $langs->trans("ThisIsProcessToFollow").'<br>';
print '<b>'.$langs->trans("StepNb", 1).'</b>: ';
2008-02-11 17:34:55 +01:00
$fullurl='<a href="'.$urldolibarr.'" target="_blank">'.$urldolibarr.'</a>';
print $langs->trans("DownloadPackageFromWebSite", $fullurl).'<br>';
print '<b>'.$langs->trans("StepNb", 2).'</b>: ';
print $langs->trans("UnpackPackageInDolibarrRoot", $dolibarrroot).'<br>';
print '<b>'.$langs->trans("StepNb", 3).'</b>: ';
print $langs->trans("RemoveLock", $dolibarrdataroot.'/install.lock').'<br>';
print '<b>'.$langs->trans("StepNb", 4).'</b>: ';
$fullurl='<a href="'.DOL_URL_ROOT.'/install/" target="_blank">'.DOL_URL_ROOT.'/install/</a>';
print $langs->trans("CallUpdatePage", $fullurl).'<br>';
print '<b>'.$langs->trans("StepNb", 5).'</b>: ';
print $langs->trans("RestoreLock", $dolibarrdataroot.'/install.lock').'<br>';
print '<br>';
print '<br>';
print $langs->trans("AddExtensionThemeModuleOrOther").'<br>';
2008-02-11 17:34:55 +01:00
print '<hr>';
print $langs->trans("GoModuleSetupArea", DOL_URL_ROOT.'/admin/modules.php?mode=deploy', $langs->transnoentities("Home").' - '.$langs->transnoentities("Setup").' - '.$langs->transnoentities("Modules"));
2007-04-27 11:19:42 +02:00
2018-07-28 14:29:28 +02:00
// End of page
llxFooter();
2012-04-16 11:07:09 +02:00
$db->close();