I want to change the value in PHP.ini file to below value,
upload_max_filesize = 50M post_max_size = 50M max_input_time = 300 max_execution_time = 300
so I run the command in Putty as below sudo nano /etc/php5/apache2/php.ini
it open the PHP.ini in the console,but when I want to change the value,i just cant type anything.
Please tell me how to type the modify the value in Php.ini file in Putty.thanks…
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Hello,
You can create a php info file in order to check the current values and check which is the php.ini file in use. Create the following file in your public_hmtl folder - phpinfo.php and put the following code inside it:
You can also use the following command in order to find the location of the php.ini file:
php -i | grep php.ini
The output will be:
Then check for the current value of uploadmaxfilesize you can also check which is the configuration file - php.ini that is currently used and apply the changes there (if the site using the global php.ini file and you change the values for these settings this will make the changes globally for all sites). Ideally you would like to have the following values:
upload_max_filesize = 64M
You also need to restart your web server in order the changes to take effect.
Hope that this helps! Regards, Alex
@matchartproduction Just a question, are you using the numeric keypad or the numbers above the alpha keys? Try using the numbers instead of the numeric keypad - I’ve seen problems where there is a mixup between PuTTY and the console with some keyboards, so using numeric keypad results in nothing (even when it’s activated, and NumLock is activated right?).
@matchartproduction
You can add those lines to your
php.ini
file with these commands ran as root: