Subversion Repositories configs

Rev

Rev 192 | Rev 204 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 192 Rev 195
Line 581... Line 581...
581
 
581
 
582
; Log errors to specified file. PHP's default behavior is to leave this value
582
; Log errors to specified file. PHP's default behavior is to leave this value
583
; empty.
583
; empty.
584
; http://php.net/error-log
584
; http://php.net/error-log
585
; Example:
585
; Example:
586
;error_log = php_errors.log
586
error_log = php_errors.log
587
; Log errors to syslog (Event Log on Windows).
587
; Log errors to syslog (Event Log on Windows).
588
;error_log = syslog
588
;error_log = syslog
589
 
589
 
590
; The syslog ident is a string which is prepended to every message logged
590
; The syslog ident is a string which is prepended to every message logged
591
; to syslog. Only used when error_log is set to syslog.
591
; to syslog. Only used when error_log is set to syslog.
Line 689... Line 689...
689
 
689
 
690
; Maximum size of POST data that PHP will accept.
690
; Maximum size of POST data that PHP will accept.
691
; Its value may be 0 to disable the limit. It is ignored if POST data reading
691
; Its value may be 0 to disable the limit. It is ignored if POST data reading
692
; is disabled through enable_post_data_reading.
692
; is disabled through enable_post_data_reading.
693
; http://php.net/post-max-size
693
; http://php.net/post-max-size
694
post_max_size = 8M
694
post_max_size = 16M
695
 
695
 
696
; Automatically add files before PHP document.
696
; Automatically add files before PHP document.
697
; http://php.net/auto-prepend-file
697
; http://php.net/auto-prepend-file
698
auto_prepend_file =
698
auto_prepend_file =
699
 
699
 
Line 841... Line 841...
841
; http://php.net/upload-tmp-dir
841
; http://php.net/upload-tmp-dir
842
;upload_tmp_dir =
842
;upload_tmp_dir =
843
 
843
 
844
; Maximum allowed size for uploaded files.
844
; Maximum allowed size for uploaded files.
845
; http://php.net/upload-max-filesize
845
; http://php.net/upload-max-filesize
846
upload_max_filesize = 2M
846
upload_max_filesize = 16M
847
 
847
 
848
; Maximum number of files that can be uploaded via a single request
848
; Maximum number of files that can be uploaded via a single request
849
max_file_uploads = 20
849
max_file_uploads = 20
850
 
850
 
851
;;;;;;;;;;;;;;;;;;
851
;;;;;;;;;;;;;;;;;;