On Jul 14, 2011, at 11:40, Phang Mulianto wrote: > if run a php, which is i assume,in php.ini there is default time limit to run > a php script..
You're talking about max_execution_time. However when running as a command-line script, it's apparently unlimited. From the default php.ini that ships with PHP 5.3.6: > ; Maximum execution time of each script, in seconds > ; http://php.net/max-execution-time > ; Note: This directive is hardcoded to 0 for the CLI SAPI > max_execution_time = 30 -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php
