You are not logged in or registered. Please login or register to use the full functionality of this board...


Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Error 500 when request large file
05-01-2012, 08:12 PM (This post was last modified: 05-01-2012 08:19 PM by savefile.)
Post: #1
Error 500 when request large file
I upgrade to ver 3.5 and i got error when request large file (more than 201 MB)

working fine in version 3.3

All version with default config
Find all posts by this user
Quote this message in a reply
05-02-2012, 09:40 AM
Post: #2
RE: Error 500 when request large file
disable gzip and then try
Find all posts by this user
Quote this message in a reply
05-04-2012, 04:47 PM
Post: #3
RE: Error 500 when request large file
don't work
Do not by gzip( v3.3 work but v3.5 not work)
Find all posts by this user
Quote this message in a reply
05-05-2012, 05:56 PM
Post: #4
RE: Error 500 when request large file
you have any http submission value on tweek setting ?
Find all posts by this user
Quote this message in a reply
05-07-2012, 10:23 AM (This post was last modified: 05-07-2012 10:25 AM by savefile.)
Post: #5
RE: Error 500 when request large file
All setting is defaults
With v3.3, work with no problerm
But with v3.5 -> error

After upgrade to v3.5 => error
Unistall v3.5 and setup v3.3 => working
Unistall v3.3 and setup v3.5 again => error
Install again v3.3 => working
Find all posts by this user
Quote this message in a reply
05-07-2012, 12:52 PM
Post: #6
RE: Error 500 when request large file
What is your Nginx configuration? Look if there are any Size Limits related settings in the Nginx configuration.

Phost.nl - Your Personal Host!
Phost.nl offers quality cPanel hosting in the Netherlands for SMEs and private persons.
Visit this user's website Find all posts by this user
Quote this message in a reply
05-07-2012, 02:51 PM
Post: #7
RE: Error 500 when request large file
(05-07-2012 12:52 PM)Joriz Wrote:  What is your Nginx configuration? Look if there are any Size Limits related settings in the Nginx configuration.

This is my config
i set: client_max_body_size 500M;
Code:
user  nobody;
# no need for more workers in the proxy mode
worker_processes  2;
error_log  /var/log/nginx/error.log info;
worker_rlimit_nofile 20480;
events {
worker_connections 5120; # increase for busier servers
use epoll; # you should use epoll here for Linux kernels 2.6.x
}
http {
server_name_in_redirect off;
server_names_hash_max_size 10240;
server_names_hash_bucket_size 1024;
include    mime.types;
default_type  application/octet-stream;
server_tokens off;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout  5;
gzip on;
gzip_vary on;
gzip_disable "MSIE [1-6]\.";
gzip_proxied any;
gzip_http_version 1.1;
gzip_min_length  1000;
gzip_comp_level  6;
gzip_buffers  16 8k;
# You can remove image/png image/x-icon image/gif image/jpeg if you have slow CPU
gzip_types    text/plain text/xml text/css application/x-javascript application/xml image/png image/x-icon image/gif image/jpeg application/xml+rss text/javascript application/atom+xml;
ignore_invalid_headers on;
client_header_timeout  3m;
client_body_timeout 3m;
send_timeout     3m;
reset_timedout_connection on;
connection_pool_size  256;
client_header_buffer_size 256k;
large_client_header_buffers 4 256k;
client_max_body_size 500M;
client_body_buffer_size 128k;
request_pool_size  32k;
output_buffers   4 32k;
postpone_output  1460;
proxy_temp_path  /tmp/nginx_proxy/;
client_body_in_file_only on;
log_format bytes_log "$msec $bytes_sent .";
include "/etc/nginx/vhosts/*";
}
Find all posts by this user
Quote this message in a reply
05-08-2012, 09:22 AM
Post: #8
RE: Error 500 when request large file
Did this solve the problem? Are you sure that the 500 error is coming from Nginx and not from Apache/PHP? Check your Apache log. There might be some explanation there.

I advice you to upload such big files via FTP. FTP works much quicker.

Phost.nl - Your Personal Host!
Phost.nl offers quality cPanel hosting in the Netherlands for SMEs and private persons.
Visit this user's website Find all posts by this user
Quote this message in a reply
05-09-2012, 01:26 PM
Post: #9
RE: Error 500 when request large file
Error ony when i request download large file, not by upload. (Site upload and download file)

This error coming from Nginx Admin v3.5, because with v3.3 => work
And when i remove nginx => work

So, i still use ver 3.3 for my site
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)