Edit php.ini on heroku

I’ve put wordpress up on Heroku and have a 2.5MB custom theme I need to upload.

I’ve installed the wpro plugin to send my uploads directly to s3, however, I still get the error. I think i still need to edit the php.ini file, specifically these lines:

Read More
; Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = 2M

I need to change that to 3M.

How can I edit the php.ini file??

Related posts

Leave a Reply

3 comments

  1. The easiest solution to change Heroku’s php.ini settings is to create a .user.ini.

    This is explained in the Heroku Dev Center Language Support > PHP > Customizing Web Server and Runtime Settings for PHP > PHP runtime settings:

    PHP-FPM will read settings from any .user.ini file in the same directory as the .php file that is being served via a web server; if none is found, it will also read settings from a .user.ini file in any parent directory up to your application’s configured document root.

    For example to increase the maximum allowed size for uploaded files to 10 MB in a Symfony or Laravel project the .user.ini file should be created in the /public and should contain the following lines:

    post_max_size = 10M
    upload_max_filesize = 10M
    
  2. Heroku only unofficially supports php. I contact support and they’re not going to change this for me. Ultimately I think it’s more trouble than it’s worth because Heroku isn’t intended to be a file writing system – anything you change will be undone unless the change is made on your local system and committed in git. Even if you set up WPRO and ship all your static to Amazon s3, you’ll run into trouble.

    It was much easier for me to set WordPress up on Amazon E2.