How to change php.ini in IBM bluemix

Asked 2 years ago, Updated 2 years ago, 103 views

I am trying to install phpmyadmin on IBM bluemix using the git below.
How do I change the max_file_uploads value in php.ini?

https://github.com/dmikusa-pivotal/cf-ex-phpmyadmin

I would appreciate it if you could let me know if there is any good way.Thank you for your cooperation.

By the way, according to manifest.yml, PHP seems to be installed from the buildpack below.

buildpack:https://github.com/cloudfoundry/php-buildpack.git#8c13f5434b2f31ca960d2bca9153df1978258535

php bluemix phpmyadmin

2022-09-30 19:18

2 Answers

I didn't try this buildpack, but the php.ini environment variable may be changed by the ini_set() function.

If ini_set is not allowed to change, you will need to set php.ini on the Buildpack side, so you will need to prepare your own Buildpack for the desired environment and use it as runtime.


2022-09-30 19:18

If you follow the document HTTPD, Nginx and PHP configuration in this buildpack, you should be able to create a .bp-config/config/php/5.5.x/php.ini for php> series.


2022-09-30 19:18

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.