I tried increasing the value of max_execution_time in php using
ini_set('max_execution_time', 108000);
which equals to 30 hours. I was just playing with this value to crawl websites with large amount of data in it. But, I go this fatal error that said the maximum execution time cannot exceed 30 seconds. When I changed 108000 value to 300, my script executed for 5 minutes. I wonder what is the maximum allowed value for this thing in php?