Hello,
for our Windowsservers i use phpscripts to monitor several things (Diskfree, CPULoad a.s.o.).
The skeleton:
while(1) {
Make something;
sleep(60);
}
The problem is max_execution_time. The Script breaks after x seconds (the value of max_execution_time in php.ini). How can i set this value to unlimited (i try -1 but this did'nt work).
Thanks for your help.
Kai.