<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Problem with uploading large video files - IO/HTTP error</title>
        <description> Hello,
I recently moved one of my projects to new server using NGINX + php-fpm
..The problem is, that when I upload ~50 MB video it works well, but when
I try to upload bigger file - it gives me IO or sometimes HTTP error.

php.ini
max_execution_time = 900
max_input_time = 900
memory_limit = 2048M
post_max_size = 2048M
upload_max_filesize = 2048M
file_uploads = On

nginx.conf
  client_max_body_size 2048m;
  client_body_timeout       900;
  client_header_timeout     900;


my php-fpm logs are empy, my  nginx error log too
Thanks

Posted at Nginx Forum: http://forum.nginx.org/read.php?2,226854,226854#msg-226854

_______________________________________________
nginx mailing list
&amp;#110;&amp;#103;&amp;#105;&amp;#110;&amp;#120;&amp;#64;&amp;#110;&amp;#103;&amp;#105;&amp;#110;&amp;#120;&amp;#46;&amp;#111;&amp;#114;&amp;#103;
http://mailman.nginx.org/mailman/listinfo/nginx</description>
        <link>http://www.serverphorums.com/read.php?5,503855,503855#msg-503855</link>
        <lastBuildDate>Thu, 23 May 2013 01:07:36 +0200</lastBuildDate>
        <generator>Phorum 5.2.18</generator>
        <item>
            <guid>http://www.serverphorums.com/read.php?5,503855,504381#msg-504381</guid>
            <title>Re: Problem with uploading large video files - IO/HTTP error</title>
            <link>http://www.serverphorums.com/read.php?5,503855,504381#msg-504381</link>
            <description><![CDATA[ Hello I solved the problem, I was using the cloudflare services and<br />
currently theu support only 50MB upload on their free plans.<br />
After I removed their services the website works again.<br />
<br />
Regards<br />
<br />
Posted at Nginx Forum: <a href="http://forum.nginx.org/read.php?2,226854,226942#msg-226942" target="_blank"  rel="nofollow">http://forum.nginx.org/read.php?2,226854,226942#msg-226942</a><br />
<br />
_______________________________________________<br />
nginx mailing list<br />
<a href="mailto:&#110;&#103;&#105;&#110;&#120;&#64;&#110;&#103;&#105;&#110;&#120;&#46;&#111;&#114;&#103;">&#110;&#103;&#105;&#110;&#120;&#64;&#110;&#103;&#105;&#110;&#120;&#46;&#111;&#114;&#103;</a><br />
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank"  rel="nofollow">http://mailman.nginx.org/mailman/listinfo/nginx</a>]]></description>
            <dc:creator>tophi</dc:creator>
            <category>Nginx</category>
            <pubDate>Tue, 29 May 2012 03:20:02 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?5,503855,504336#msg-504336</guid>
            <title>Re: Problem with uploading large video files - IO/HTTP error</title>
            <link>http://www.serverphorums.com/read.php?5,503855,504336#msg-504336</link>
            <description><![CDATA[ My /tmp/ folder is chmod 777 , <br />
df -h<br />
/dev/md0              915G  220G  650G  26% /<br />
<br />
Posted at Nginx Forum: <a href="http://forum.nginx.org/read.php?2,226854,226908#msg-226908" target="_blank"  rel="nofollow">http://forum.nginx.org/read.php?2,226854,226908#msg-226908</a><br />
<br />
_______________________________________________<br />
nginx mailing list<br />
<a href="mailto:&#110;&#103;&#105;&#110;&#120;&#64;&#110;&#103;&#105;&#110;&#120;&#46;&#111;&#114;&#103;">&#110;&#103;&#105;&#110;&#120;&#64;&#110;&#103;&#105;&#110;&#120;&#46;&#111;&#114;&#103;</a><br />
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank"  rel="nofollow">http://mailman.nginx.org/mailman/listinfo/nginx</a>]]></description>
            <dc:creator>tophi</dc:creator>
            <category>Nginx</category>
            <pubDate>Mon, 28 May 2012 22:20:02 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?5,503855,503867#msg-503867</guid>
            <title>Re: Problem with uploading large video files - IO/HTTP error</title>
            <link>http://www.serverphorums.com/read.php?5,503855,503867#msg-503867</link>
            <description><![CDATA[ the upload size is related with your disk size which nginx cache the temp<br />
file.<br />
please check where the temp file locates.<br />
<br />
thanks<br />
George<br />
<br />
<br />
On Sun, May 27, 2012 at 9:44 PM, tophi &lt;nginx-forum@nginx.us&gt; wrote:<br />
<br />
&gt; Hello,<br />
&gt; I recently moved one of my projects to new server using NGINX + php-fpm<br />
&gt; .The problem is, that when I upload ~50 MB video it works well, but when<br />
&gt; I try to upload bigger file - it gives me IO or sometimes HTTP error.<br />
&gt;<br />
&gt; php.ini<br />
&gt; max_execution_time = 900<br />
&gt; max_input_time = 900<br />
&gt; memory_limit = 2048M<br />
&gt; post_max_size = 2048M<br />
&gt; upload_max_filesize = 2048M<br />
&gt; file_uploads = On<br />
&gt;<br />
&gt; nginx.conf<br />
&gt;  client_max_body_size 2048m;<br />
&gt;  client_body_timeout       900;<br />
&gt;  client_header_timeout     900;<br />
&gt;<br />
&gt;<br />
&gt; my php-fpm logs are empy, my  nginx error log too<br />
&gt; Thanks<br />
&gt;<br />
&gt; Posted at Nginx Forum:<br />
&gt; <a href="http://forum.nginx.org/read.php?2,226854,226854#msg-226854" target="_blank"  rel="nofollow">http://forum.nginx.org/read.php?2,226854,226854#msg-226854</a><br />
&gt;<br />
&gt; _______________________________________________<br />
&gt; nginx mailing list<br />
&gt; <a href="mailto:&#110;&#103;&#105;&#110;&#120;&#64;&#110;&#103;&#105;&#110;&#120;&#46;&#111;&#114;&#103;">&#110;&#103;&#105;&#110;&#120;&#64;&#110;&#103;&#105;&#110;&#120;&#46;&#111;&#114;&#103;</a><br />
&gt; <a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank"  rel="nofollow">http://mailman.nginx.org/mailman/listinfo/nginx</a><br />
&gt;<br />
_______________________________________________<br />
nginx mailing list<br />
<a href="mailto:&#110;&#103;&#105;&#110;&#120;&#64;&#110;&#103;&#105;&#110;&#120;&#46;&#111;&#114;&#103;">&#110;&#103;&#105;&#110;&#120;&#64;&#110;&#103;&#105;&#110;&#120;&#46;&#111;&#114;&#103;</a><br />
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank"  rel="nofollow">http://mailman.nginx.org/mailman/listinfo/nginx</a>]]></description>
            <dc:creator>Geoge.Q</dc:creator>
            <category>Nginx</category>
            <pubDate>Sun, 27 May 2012 17:00:04 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.serverphorums.com/read.php?5,503855,503855#msg-503855</guid>
            <title>Problem with uploading large video files - IO/HTTP error</title>
            <link>http://www.serverphorums.com/read.php?5,503855,503855#msg-503855</link>
            <description><![CDATA[ Hello,<br />
I recently moved one of my projects to new server using NGINX + php-fpm<br />
..The problem is, that when I upload ~50 MB video it works well, but when<br />
I try to upload bigger file - it gives me IO or sometimes HTTP error.<br />
<br />
php.ini<br />
max_execution_time = 900<br />
max_input_time = 900<br />
memory_limit = 2048M<br />
post_max_size = 2048M<br />
upload_max_filesize = 2048M<br />
file_uploads = On<br />
<br />
nginx.conf<br />
  client_max_body_size 2048m;<br />
  client_body_timeout       900;<br />
  client_header_timeout     900;<br />
<br />
<br />
my php-fpm logs are empy, my  nginx error log too<br />
Thanks<br />
<br />
Posted at Nginx Forum: <a href="http://forum.nginx.org/read.php?2,226854,226854#msg-226854" target="_blank"  rel="nofollow">http://forum.nginx.org/read.php?2,226854,226854#msg-226854</a><br />
<br />
_______________________________________________<br />
nginx mailing list<br />
<a href="mailto:&#110;&#103;&#105;&#110;&#120;&#64;&#110;&#103;&#105;&#110;&#120;&#46;&#111;&#114;&#103;">&#110;&#103;&#105;&#110;&#120;&#64;&#110;&#103;&#105;&#110;&#120;&#46;&#111;&#114;&#103;</a><br />
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank"  rel="nofollow">http://mailman.nginx.org/mailman/listinfo/nginx</a>]]></description>
            <dc:creator>tophi</dc:creator>
            <category>Nginx</category>
            <pubDate>Sun, 27 May 2012 15:50:03 +0200</pubDate>
        </item>
    </channel>
</rss>
