When I access http://localhost/myapp111/index/ then this script will excute:
$a = 0;
for($i = 0; $i < 100000000; ++$i) {
$a = $a +$i ;
}
then I can’t access http://localhost/myapp111/* ( can’t access any page on myapp111, i must wait above script complete)
but I can access http://localhost/myapp2222/*
What is the reason for this ? Is there any way to solve this ?
It might be PHP sessions, I can’t remember if they serialize requests participating in the same session.