简体   繁体   中英

I can't change php settings in plesk

As shown below, I can't change any of these PHP settings in plex onyx.

在此输入图像描述

Is there any other way to change these settings, or some workaround?

You can change these settings using ini_set function for specific file or for complete project by including this change in all files. You can write code as below:

ini_set("max_execution_time", 120);

Also, you can make change using .htaccess file as well

php_value max_execution_time 120

Hope it helps you.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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