You are not logged in.
yllen,
Où puis-je trouver le paquet de la release ?
Offline
Je vois que le RPM de la version 9.1.6 est dispo à l'url http://rpms.remirepo.net/enterprise/7.3 … /glpi.html
C'est bien de cela que tu parles ?
Offline
J'ai "résolu" le pb en forçant une maj en mettant en commentaire une partie du code du fichier inc/config.php et cela a fonctionné :
266 //if ($older === true) {
267 echo "<form method='post' action='".$CFG_GLPI["root_doc"]."/install/update.php'>";
268 if ($dev === true) {
269 echo Config::agreeDevMessage();
270 }
271 echo "<p class='red'>";
272 echo __('The version of the database is not compatible with the version of the installed files. An update is necessary.')."</p>";
273 echo "<input type='submit' name='from_update' value=\""._sx('button', 'Upgrade')."\"
274 class='submit'>";
275 Html::closeForm();
276 //} else if ($newer === true) {
277 // echo "<p class='red'>".
278 // __('You are trying to use GLPI with outdated files compared to the version of the database. Please install the correct GLPI files corresponding to the version of your database.')."</p>";
279 //} else if ($dev === true) {
280 // echo "<p class='red'><strong>".
281 // __('You are trying to update to a development version from a development version. This is not suppoorted.')."</strong></p>";
282 //}
Offline