我将max_execution_time
设置为120秒。
$ grep max_execution_time /etc/php5/php.ini
max_execution_time = 120
我仍然遇到错误
Error: Maximum execution time of 60 seconds exceeded
几次重新加载后,它可以工作(大概是在编译Twig和LESS进行缓存),但通常失败,尤其是对于新页面或运行composer
之后。
我看不到通过代码设置(下)的任何地方:
$ grep -r max_execution_time *
vendor/symfony/symfony/appveyor.yml: - echo max_execution_time=1200 >> php.ini-min
web/classes/phpmailer/class.smtp.php: $max = ini_get('max_execution_time');
web/conf/phpini.inc.php: ini_set("max_execution_time", "3600");
web/simplesaml/modules/statistics/config-templates/module_statistics.php: * Set max running time for this script. This is also controlle by max_execution_time in php.ini
我还尝试添加opcache
来加快速度,但似乎并不快。
$ grep opcache composer.json
"ext-opcache": "*",
$ cat /etc/php5/conf.d/opcache.ini
zend_extension = /usr/lib/php/20131226/opcache.dll
; Sets how much memory to use
opcache.memory_consumption=128
;Sets how much memory should be used by OPcache for storing internal strings
;(e.g. classnames and the files they are contained in)
opcache.interned_strings_buffer=8
; The maximum number of files OPcache will cache
opcache.max_accelerated_files=4000
;How often (in seconds) to check file timestamps for changes to the shared
;memory storage allocation.
opcache.revalidate_freq=60
;If enabled, a fast shutdown sequence is used for the accelerated code
;The fast shutdown sequence doesn't free each allocated block, but lets
;the Zend Engine Memory Manager do the work.
opcache.fast_shutdown=1
;Enables the OPcache for the CLI version of PHP.
opcache.enable_cli=1
;If you use any library or code that uses code annotations you must enable save comments:
opcache.save_comments=1
Symfony 2.8,PHP 5.6.27
答案 0 :(得分:0)
我添加了
ini_set("max_execution_time", 120);
在第23行之前绕到edirectory\web\app_dev.php
,然后再做很多事情。
如上面的评论所述。