在 php-fpm 中设置 php_admin_value 是否有限制?

在 php-fpm 中设置 php_admin_value 是否有限制?

我正在尝试在 php-fpm 中的池配置中设置一个较大的值,但在某些时候它不再启动。

php_admin_value[disable_functions] = dl,exec,passthru,shell_exec,system,proc_open,popen,curl_exec,curl_multi_exec,parse_ini_file,show_source,pcntl_exec,include,include_once,require,require_once,posix_mkfifo,posix_getlogin,posix_ttyname,getenv,get_current_use,proc_get_status,get_cfg_va,disk_free_space,disk_total_space,diskfreespace,getcwd,getlastmo,getmygid,getmyinode,getmypid,getmyuid,ini_set,mail,proc_nice,proc_terminate,proc_close,pfsockopen,fsockopen,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,fopen,tmpfile,bzopen,gzopen,chgrp,chmod,chown,copy,file_put_contents,lchgrp,lchown,link,mkdi,move_uploaded_file,rename,rmdi,symlink,tempnam,touch,unlink,iptcembed,ftp_get,ftp_nb_get,file_exists,file_get_contents,file,fileatime,filectime,filegroup,fileinode,filemtime,fileowne,fileperms,filesize,filetype,glob,is_di,is_executable,is_file,is_link,is_readable,is_uploaded_file,is_writable,is_writeable,linkinfo,lstat,parse_ini_file,pathinfo,readfile,readlink,realpath,stat,gzfile,create_function

尝试重新启动 php-fpm 时失败并显示以下消息:

Stopping php-fpm:                                          [  OK  ]
Starting php-fpm: [20-Oct-2013 22:31:52] ERROR: [/etc/php-fpm.d/codepad.conf:235] value is NULL for a ZEND_INI_PARSER_ENTRY
[20-Oct-2013 22:31:52] ERROR: Unable to include /etc/php-fpm.d/codepad.conf from /etc/php-fpm.conf at line 235
[20-Oct-2013 22:31:52] ERROR: failed to load configuration file '/etc/php-fpm.conf'
[20-Oct-2013 22:31:52] ERROR: FPM initialization failed
                                                           [FAILED]

当我删除最后一个禁用的功能( )时,它会重新启动。我也尝试了其他功能,但这会出现相同的错误,因此它与该功能create_function无关。create_function

该字符串当前大小刚好超过 1KB,所以看起来我在这里已经达到了限制?

我的假设正确吗?有没有办法克服这个限制?

我也尝试在它下面添加另一个php_admin_value[disable_functions](希望它会被附加),但没有用(它只是使用第一个)。

答案1

这是 php-fpm 的一个错误。

ini 读取周期中有一个硬编码的 1024 个字符的行长度限制,可以在这里看到:

http://lxr.php.net/xref/PHP_5_5/sapi/fpm/fpm/fpm_conf.c#1495

所以现在,你有点不走运——因为读缓冲sizeof(char) * (1024+1)字节,并且它寻找换行符作为终止符,你无法让它理解比这更长的配置指令。

我有报告错误并计划在接下来的几天内研究如何解决它。

编辑:我现在创建了一个公共关系并修复了此错误。

相关内容