You are not logged in.
Pages: 1
Topic closed
Bonjour,
Je viens de mettre à jour GLPI de la version 0.80.1 vers 0.83.7.
Tous c'est passé correctement, les plugin telechargé pour cette version se sont tous bien mis à jour excepté le plugin Order
qui lorsque je fais une mise à jour lance une procedure, qui bloque sur Upgrading glpi_plugin_order_orders_items ( 1 Sec(s))
J'ai beau activer le mode debug aucune trace de debug n'apparait en bas de page dans cette section.
Le dossier a été decompacté avec 7zip, glpi tourne sous un serveur Windows 2003R2,
EDIT: je viens enfin d'avoir un message
Fatal error: Maximum execution time of 30 seconds exceeded in C:\Program Files\xampp\htdocs\glpi\inc\timer.class.php on line 63
et voici ce que j'ai dans le fichier:
<?php
/*
* @version $Id: timer.class.php 17152 2012-01-24 11:22:16Z moyo $
-------------------------------------------------------------------------
GLPI - Gestionnaire Libre de Parc Informatique
Copyright (C) 2003-2012 by the INDEPNET Development Team.
http://indepnet.net/ http://glpi-project.org
-------------------------------------------------------------------------
LICENSE
This file is part of GLPI.
GLPI 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 2 of the License, or
(at your option) any later version.
GLPI 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
along with GLPI. If not, see <http://www.gnu.org/licenses/>.
--------------------------------------------------------------------------
*/
// ----------------------------------------------------------------------
// Original Author of file: Julien Dombre
// Purpose of file:
// ----------------------------------------------------------------------
if (!defined('GLPI_ROOT')) {
die("Sorry. You can't access directly to this file");
}
/**
* Timer class for debug
*/
class Timer {
//! Timer value
var $timer=0;
//! Start the Timer
function start () {
$this->timer=microtime(true);
return true;
}
/**
* Get the current time of the timer
*
* @param $decimals number of decimal of the result
* @return time past from start
*
*/
function getTime ($decimals = 3) {
// $decimals will set the number of decimals you want for your milliseconds.
return number_format(microtime(true) - $this->timer,$decimals,'.',' ');
}
}
?>
Last edited by samz (2013-01-29 19:05:25)
glpi v0.83.7 sous Windows2003R Xampp 1.7.4 / Apache 2.2.17 / PHP 5.3.3 / MySQL 5.5.8
Offline
modifiez le max_execution_time du php.ini
Offline
Faut il relancer le serveur appache pour que cela soit prise en compte car cela n'a aucun effet actuellement.
glpi v0.83.7 sous Windows2003R Xampp 1.7.4 / Apache 2.2.17 / PHP 5.3.3 / MySQL 5.5.8
Offline
C'est bon cela fonctionne maintenant!..
J'en ai profité pour augmenter la memoire qui était à 256.
Merci beaucoup.
glpi v0.83.7 sous Windows2003R Xampp 1.7.4 / Apache 2.2.17 / PHP 5.3.3 / MySQL 5.5.8
Offline
Pages: 1
Topic closed