Created
January 26, 2016 09:20
-
-
Save IamSwap/dc411fe596292daddfa7 to your computer and use it in GitHub Desktop.
PHP Configurations for Magento 2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Set timezone. | |
## Find your time zone here http://php.net/manual/en/timezones.php | |
date.timezone = Asia/Kolkata | |
## Maximum Execution Time. | |
max_execution_time = 18000 | |
## Maximum Input Time. | |
max_input_time = 6000 | |
## Increase Memory Limit (Set more that 768M). | |
memory_limit = 1024M | |
## Increase Maximum size of post data. | |
post_max_size = 128M | |
## Also increase the Maximum allowed size for uploaded files. | |
upload_max_filesize = 32M | |
## Find & set "always_populate_raw_post_data" as shown below | |
always_populate_raw_post_data = -1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment