DEV Community

Ali Raza
Ali Raza

Posted on

Update PHP configs

Open php.ini in any text editor

Find and update following values one by one:

post_max_size       = 8M
upload_max_filesize = 2M
max_execution_time  = 30
max_input_time      = 60
memory_limit        = 8M

Enter fullscreen mode Exit fullscreen mode

Updated values:

post_max_size       = 750M
upload_max_filesize = 750M
max_execution_time  = 5000
max_input_time      = 5000
memory_limit        = 1000M
Enter fullscreen mode Exit fullscreen mode

Top comments (0)