Hi,
I have a query ... I have changed php max_execution_time in php.ini to say 600 seconds. It worked on Windows platform. However the same code doesn't work in Linux redhat5. I even tried ini_set('max_execution_time', 600); in a php file but it still executes its default time that is 10 seconds. Moreover i tried to change in /etc/httpd/conf/httpd.conf by introducing following lines of codes -
**<IfModule mod_php5.c>
php_value max_execution_time 600
</IfModule>**
But still no effects it still runs for 10 seconds ... Please help !!