SQL injection vulnerability in index.php in Seagull 0.6.7 and earlier allows remote attackers to execute arbitrary SQL commands via the frmQuestion parameter in a retrieve action, in conjunction with a user/password PATH_INFO.
nginx error: 413 Request Entity Too Large
Submitted by nuzrin on Sat, 07/24/2010 - 20:29Encountered this error when I tried to upload a large file. nginx default is too small. To upload bigger file, add this line in /etc/nginx/nginx.conf, somewhere inside the http section:
http {
....
client_max_body_size 20M;
....
}Save, and then restart your nginx instance.
