来源:
(1)modify the parameters in php.ini
max_execution_time = 360 ; Maximum execution time of each script, in seconds (I CHANGED THIS VALUE)max_input_time = 120 ; Maximum amount of time each script may spend parsing request data;max_input_nesting_level = 64 ; Maximum input variable nesting levelmemory_limit = 128M ; Maximum amount of memory a script may consume (128MB by default)
(2)set in php script
set_time_limit(0);
(3)set in .htaccess file
php_value post_max_size 200Mphp_value upload_max_filesize 200Mphp_value memory_limit 300Mphp_value max_execution_time 259200php_value max_input_time 259200php_value session.gc_maxlifetime 1200