Commit 54ca21a87a05c6c95edeb712d638724ba87c8a60

Authored by Michael Joseph
1 parent 56f99750

beefed up upload settings


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1104 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 2 changed files with 6 additions and 5 deletions
etc/httpd.conf
... ... @@ -1335,7 +1335,8 @@ SSLLogLevel info
1335 1335 ServerName gobbler.jamwarehouse.com
1336 1336 ErrorLog logs/gobbler.jamwarehouse.com-error_log
1337 1337 CustomLog logs/gobbler.jamwarehouse.com-access_log common
1338   - AddType application/x-httpd-php .php .phtml
  1338 + AddType application/x-httpd-php .php .phtml
  1339 + LimitRequestBody 2147483647
1339 1340 <IfDefine SSL>
1340 1341 SSLEngine on
1341 1342 SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
... ...
etc/php.ini
... ... @@ -199,7 +199,7 @@ expose_php = On
199 199 ;;;;;;;;;;;;;;;;;;;
200 200  
201 201 max_execution_time = 60 ; Maximum execution time of each script, in seconds
202   -memory_limit = 500M ; Maximum amount of memory a script may consume (8MB)
  202 +memory_limit = 1000M ; Maximum amount of memory a script may consume (8MB)
203 203  
204 204  
205 205 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
... ... @@ -314,7 +314,7 @@ register_globals = Off
314 314 register_argc_argv = Off
315 315  
316 316 ; Maximum size of POST data that PHP will accept.
317   -post_max_size = 500M
  317 +post_max_size = 2000M
318 318  
319 319 ; This directive is deprecated. Use variables_order instead.
320 320 gpc_order = "GPC"
... ... @@ -399,7 +399,7 @@ file_uploads = On
399 399 ;upload_tmp_dir =
400 400  
401 401 ; Maximum allowed size for uploaded files.
402   -upload_max_filesize = 500M
  402 +upload_max_filesize = 1000M
403 403  
404 404  
405 405 ;;;;;;;;;;;;;;;;;;
... ... @@ -865,7 +865,7 @@ sockets.use_system_read = On
865 865 ;mbstring.http_input = auto
866 866 ;mbstring.http_output = SJIS
867 867 ;mbstring.detect_order = auto
868   -;mbstring.substitute_character = none;
  868 +;mbstring.substitutemax_character = none;
869 869  
870 870 [FrontBase]
871 871 ;fbsql.allow_persistent = On
... ...