Re: Recommended php.ini settings

  •  06-30-2010, 6:27 PM

    Re: Recommended php.ini settings


     
    Parameter Name Default Value Remark
    file_uploads 1 Whether or not to allow HTTP file uploads.
    upload_max_filesize 2M The maximum size of an uploaded file.
    max_input_time 60 This sets the maximum time in seconds a script is allowed to parse input data, like POST, GET and file uploads.
    max_execution_time 30 This sets the maximum time in seconds a script is allowed to run before it is terminated by the parser.
    post_max_size 8M Sets max size of post data allowed. This setting affects file upload. To upload large files, this value must be larger than upload_max_filesize.
    memory_limit 128M memory_limit affects file uploading. Generally speaking, memory_limit should be larger than post_max_size.
     
    You can update these default value to match your requirements.
     
    Regards,
    Eric
View Complete Thread