Question

I've installed a Magento Cloud 2.3.5 and I don't have access to the server configuration.

How can I configure a new PHP Memory Limit?

Was it helpful?

Solution

Create the file php.ini at the root of the project. If you need to increase the PHP memory limit:

memory_limit = 1024M

For a list of recommended PHP configuration settings, see Required PHP settings.

After pushing your file, you can check that the custom PHP configuration has been added to your environment by creating an SSH tunnel to your environment and entering:

cat /etc/php5/fpm/php.ini

You can also increase the MySQL, Redis, and ElasticSearch resources in the file .magento/services.yaml.

# The services of the project.
#
# Each service listed will be deployed to power your project.

mysql:
    type: mysql:10.2
    disk: 8192

redis:
    type: redis:5.0

elasticsearch:
    type: elasticsearch:6.8
    disk: 1024

Reference: Magento DevDocs - Customize php.ini settings

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top