php.ini

Path: "php/php.ini". Frequently used settings:

  • max_execution_time = 60 ; Maximum execution time of each script, in seconds. Fatal error: Maximum execution time of 10 seconds exceeded in...
  • max_input_time = 60 ; Maximum amount of time each script may spend parsing request data.
  • memory_limit = 128M ; Maximum amount of memory a script may consume.
  • post_max_size = 8M ; Maximum size of POST data that PHP will accept.
  • upload_max_filesize = 128M ; Maximum allowed size for uploaded files.

Leave a Comment