Created
August 31, 2015 08:43
-
-
Save AdamMadrzejewski/254e64ee8cac0007a484 to your computer and use it in GitHub Desktop.
All rules to be chaged inside ini.php to eneble big files upload in PHP
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
; Maximum size of POST data that PHP will accept. | |
post_max_size = 256M | |
; Maximum allowed size for uploaded files. | |
upload_max_filesize = 256M | |
; Maximum execution time of each script, in seconds | |
max_execution_time = 600 | |
; Maximum amount of time each script may spend parsing request data | |
max_input_time = 600 | |
; Maximum amount of memory a script may consume (8MB) | |
memory_limit = 512M |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment