I need to increase Max_Execution_Time and Max_Input Vars for WP in lightsail

0

Hi I am installing a new Theme on my WP that requires to increase the current MAX_EXECUTION_TIME and MAX_INPUT_VAR. to double the current values. How this can be done using lightsail ? I think the php.ini files or .htaccess needs to be modify but how I can do this in lightsail ? what are the command for it?

Cyrus

cyrus
已提问 8 个月前833 查看次数
1 回答
0
已接受的回答

Hello.

You must do several things:

Navigate to the PHP Configuration Folder: In Lightsail, the PHP configuration files are typically located in /opt/bitnami/php/etc/. You can use the cd command to navigate to this directory.

cd /opt/bitnami/php/etc/

Edit the php.ini File: You will need to edit the php.ini file to modify the MAX_EXECUTION_TIME and MAX_INPUT_VARS values. You can use a text editor like nano or vim. Here's an example using nano:

sudo nano php.ini

Inside the php.ini file, locate the following lines and modify them as needed: max_execution_time = 120 max_input_vars = 1000

Save and Exit: In nano, you can save the changes by pressing Ctrl + O, then press Enter. To exit, press Ctrl + X.

Restart the Apache Web Server: After making changes to the PHP configuration, it's a good practice to restart the Apache web server to apply the changes:

sudo /opt/bitnami/ctlscript.sh restart apache

Best regards, Andrii

profile picture
专家
已回答 8 个月前
  • I followed the instruction but still it seems the files size not changed!

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则

相关内容