How to Increase max_input_vars in PHP Ubuntu

Websolutionstuff | Feb-02-2024 | Categories : Other

Hey folks! If you've ever encountered issues with PHP hitting the max_input_vars limit, you're not alone. In this guide, I'll walk you through the steps to increase the max_input_vars settings on Ubuntu. Let's dive right in!

So, let's see how to increase max_input_vars in php ubuntu, how to change max_input_vars in phpmyadmin, php max input vars, php.ini max_input_vars, how to increase max_input_vars in php.

You can use this command with your Ubuntu 16.04, ubuntu 18.04, ubuntu 20.04, ubuntu 21.04, ubuntu 21.10, ubuntu 22.04, or ubuntu 22.10.

Find PHP Configuration File:

First, we find the PHP configuration using the following command.

php -i | grep php.ini

You will find the following output and copy the loaded php.ini file path:

Configuration File (php.ini) Path => /etc/php/8.1/cli
Loaded Configuration File => /etc/php/8.1/cli/php.ini

In most Ubuntu setups, the configuration file is located at /etc/php/{PHP_VERSION}/apache2/php.ini. Open your terminal and use your favorite text editor to open the file:

sudo nano /etc/php/{PHP_VERSION}/apache2/php.ini

Replace {PHP_VERSION} with your PHP version, for example, 7.4 or 8.0.

 

Step 2: Find max_input_vars Setting

Now that you're in the PHP configuration file, look for the max_input_vars setting. You can use Ctrl + W in nano to search. It should look something like this:

post_max_size = 100M
upload_max_filesize = 100M
max_file_uploads = 20
max_input_vars = 1000
memory_limit = -1

 

Step 3: Update max_input_vars Value

Increase the max_input_vars value to meet your application's needs. For example, set it to 5000:

max_input_vars = 5000

Feel free to adjust this value based on your specific requirements.

 

Step 4: Save and Close

Save the changes by pressing Ctrl + X, then press Y to confirm, and finally press Enter to exit.

 

Step 5: Restart Apache

For the changes to take effect, you need to restart the Apache web server. Run the following command in your terminal:

sudo service apache2 restart

If you're using Nginx or another web server, adjust the command accordingly.

 

Step 6: Verify the Changes

To ensure that the changes have been applied, create a simple PHP script (e.g., phpinfo.php) in your web server's root directory with the following content:

<?php
phpinfo();
?>

Access this script in your browser and search for "max_input_vars" to confirm that the new value is reflected.

And there you have it! You've successfully increased the max_input_vars in PHP on Ubuntu. If you ever need to adjust it again, just revisit the configuration file and make the necessary changes.

Happy coding! 🚀

 


You might also like:

Recommended Post
Featured Post
Multiple ways to Validate Email Addresses in Laravel 10
Multiple ways to Validate Emai...

Hey there! Have you ever wondered how websites ensure that the email addresses you provide are valid? In this article, I...

Read More

Mar-04-2024

Carbon Add Minutes To Date In Laravel 9
Carbon Add Minutes To Date In...

In this article, we'll explore how to add minutes to a date in Laravel 8, Laravel 9 and Laravel 10 using Carbon...

Read More

Nov-23-2022

Dropzone Image Upload Tutorial In Laravel 6/7
Dropzone Image Upload Tutorial...

In this article, we will see dropzone image upload in laravel 6/7. To upload images and files we will use dropzone....

Read More

Sep-21-2020

Laravel 11 CRUD with Image Upload Example
Laravel 11 CRUD with Image Upl...

In this article, we'll see laravel 11 crud with an image upload example. Here, we'll perform a crud operation on...

Read More

Apr-26-2024