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.
如下所示,我无法在 plex onyx 中更改任何这些 PHP 设置。
有没有其他方法可以更改这些设置,或者一些解决方法?
ini_set您可以通过将此更改包含在所有文件中来使用特定文件或整个项目的功能更改这些设置。您可以编写如下代码:
ini_set
ini_set("max_execution_time", 120);
此外,您也可以使用 .htaccess 文件进行更改
php_value max_execution_time 120
希望它可以帮助你。