webCOMAND

PHP Configuration (/etc/php.ini)

The following configuration options are recommended for PHP.

; default is typically 30
; increase number of seconds to accommodate slower AJAX requests, etc.
max_execution_time = 480

; Maximum amount of memory a script may consume
; http://php.net/memory-limit
; increase memory limit to improve performance by allowing larger
; repository caches, etc.  Increasing up to 1G or even 4G will help
; with larger installations and publishes.
memory_limit = 128M

; Maximum size of POST data that PHP will accept.
; Its value may be 0 to disable the limit. It is ignored if POST data reading
; is disabled through enable_post_data_reading.
; http://php.net/post-max-size
;
; This should be at least as large as max_allowed_packet in /etc/my.cnf
; so that files that reach the maximum allowed size in the database can
; be uploaded via the web.  If some content types have multiple file fields
; you may need to multiply max_allowed_packet by the number of file fields.
post_max_size = 32M

; Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
;
; This should be at least as large as max_allowed_packet in /etc/my.cnf
; so that files that reach the maximum allowed size in the database can
; be uploaded via the web.
upload_max_filesize = 16M