系统:红帽
配置:
./configure --prefix=/path/to/php/share/php --with-apxs2=/path/to/apache2/bin/apxs --with-mysql --with-libdir=lib64 --with-ldap --with-ldap-sasl --with-config-file-path=/path/to/php/share/php.ini
在 php.ini 中,我将upload_max_filesize设置为50并重新启动 apache。
我用
<?php
phpinfo();
?>
去检查。配置文件(php.ini)路径是正确的,但是upload_max_filesize还是2M。有谁知道为什么配置失败?谢谢。
; Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = 50M
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = Asia/Shanghai