简体   繁体   English

如何在php.ini中更改upload_max_filesize和max_execution_time?

[英]How do I change upload_max_filesize and max_execution_time in php.ini?

I am trying to change my upload_max_filesize and max_execution_time in my php.ini 我正在尝试在php.ini中更改我的upload_max_filesize和max_execution_time

I've tried 我试过了

upload_max_filesize = 80M
max_execution_time = 300

and

ini_set('max_execution_time', '45')
ini_set('upload_max_filesize', '80M')

I ran phpinfo and none of them changed...what gives? 我运行了phpinfo,但都没有改变...给出什么?

thanks, J 谢谢,J

记住在检查phpinfo()之前重新启动服务器。

You dont need to restart the computer/server after making a php change such as this. 在进行诸如此类的php更改后,您无需重新启动计算机/服务器。 You could make the changes directly to the php.ini and not reboot. 您可以直接对php.ini进行更改,而无需重新启动。

You'll likely need to have your provider allow this, or set it in an .htaccess file. 您可能需要让您的提供商允许此操作,或者将其设置为.htaccess文件。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM