如何给eDirectory/Symfony 2.8更多的时间?错误:超过了60秒的最长执行时间



我将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

我添加了

ini_set("max_execution_time", 120);

在CCD_ 4做任何事情之前。

如上文评论中所述。

相关内容

最新更新