# How to Edit post\_max\_size in PHP Configuration

**URL:** https://community.kinsta.com/t/how-to-edit-post-max-size-in-php-configuration/266
**Category:** Application Support
**Created:** [January 27, 2021, 3:31pm UTC](https://community.kinsta.com/t/how-to-edit-post-max-size-in-php-configuration/266 "2021-01-27T15:31:50Z")
**Posts on this page:** 1
**Showing post:** 4

<div class="post-metadata">

### Author: ![michael](https://sea2.discourse-cdn.com/flex020/user_avatar/community.kinsta.com/michael/32/31_2.png) [@michael](https://community.kinsta.com/u/michael)
#### Post date: [January 27, 2021, 8:20pm UTC](https://community.kinsta.com/t/how-to-edit-post-max-size-in-php-configuration/266/4 "2021-01-27T20:20:29Z")

</div>

1. Open Terminal on your Mac and type in `docker exec -it devkinsta_fpm bash `

2. Type in `apt-get update && apt-get upgrade && apt-get install nano`. You will be prompted to type Y. This step will install `nano` so you can edit the file.

3. Then type in `nano /etc/php/7.3/fpm/php.ini`. You may need to change the 7.3 to another version. Match this with the version the site is on on DevKinsta.

4. There’s quite a bit here but what you’re looking for is `post_max_size`. To do a search, press control+w on your keyboard - type post\_max\_size - then enter.

5. Change this to your desired value. `post_max_size = 64M` should do it. Exit with control+x and press Y to save.

6. Type `exit` then `docker restart devkinsta_fpm`

Should be all good from there! Let me know if you have any questions about any steps here.

---

_[View the full topic](https://community.kinsta.com/t/how-to-edit-post-max-size-in-php-configuration/266)._
