Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试更改 php.ini 中的 upload_max_filesize 和 max_execution_time
我试过了
upload_max_filesize = 80M max_execution_time = 300
和
ini_set('max_execution_time', '45') ini_set('upload_max_filesize', '80M')
我跑了 phpinfo,但他们都没有改变……什么给了?
谢谢,J
请记住在检查之前重新启动服务器phpinfo()
phpinfo()
进行诸如此类的 php 更改后,您无需重新启动计算机/服务器。您可以直接对 php.ini 进行更改,而无需重新启动。
您可能需要让您的提供商允许这样做,或者将其设置在 .htaccess 文件中。