You are not logged in.
Pages: 1
Topic closed
Hello,
during the installation of glpi there was needfull to do some changes in the install.php
my testsystem is the xampp version which comes with OCSNG RC1
in the install.php i have changed the line
$mem=ini_get("memory_limit");
to
$mem=get_cfg_var("memory_limit");
on my system the instruction ini_get("memory_limit") did not work well.
in the section //file test
the file docs/test_glpi.txt will be checked but the directory glpi/docs did not exist in the download-package
after creat the directory the "filetest" also works perfect!
i hope this helps other users who maybe run into the same problems
Greeting, Stephan
Offline
ini_get must to work and give real data.
get_cfg_var return the global value not the local one.
The memory limit is only a warning.
MoYo - Julien Dombre - Association INDEPNET
Contribute to GLPI : Support Contribute References Freshmeat
Offline
but the return of ini_get is empty even though the memory_limit in php.ini is set to 32M
Stephan
Last edited by Stephan (2006-01-19 13:35:51)
Offline
Il me semble que ça avait déjà été modifié pour que ça ne pose plus de pb :
JMD / Jean-Mathieu Doléans - Glpi-project.org - Association Indepnet
Apportez votre pierre au projet GLPI : Soutenir
Offline
oh hrm, i did not speek (read) french but Babelfish helps me
ok, sorry. I used the Version 0.6 from Download Date 20.09.2005
Stephan
Offline
Today now i have tested the cvs snapshot from the morning.
It is the same Problem.
with $mem=ini_get("memory_limit"); the return of ini_get is empty and with
$mem=get_cfg_var("memory_limit"); it works.
Stephan
Offline
Euh moi j'osait pas le dire mais ca me fait pareil
Xavier Caillaud
Blog GLPI Infotel
Offline
euh non ca fait pareil
Mémoire allouée : octets
Un minimum de 16Mo est généralement nécessaire à GLPI.
Essayez d'augmenter le paramètre memory_limit dans le fichier php.ini.
Xavier Caillaud
Blog GLPI Infotel
Offline
Hello,
i have tested the cvs-snap fom 25.01. 08:00.
the instruction if(!isset($mem)) did not work because $mem is set but empty
wit the instruction if(empty($mem)) the memory test works properly.
in the install.php on line 179 is a little error: deutch had to be deutsch
Greetings, Stephan
Offline
Corrected in the CVS
Thanks.
I also add others language to the install process
MoYo - Julien Dombre - Association INDEPNET
Contribute to GLPI : Support Contribute References Freshmeat
Offline
Pages: 1
Topic closed