<p>Ryan try with a JIRA request for the info you want to check</p>
<div class="gmail_quote">El 14/07/2011 04:24, &quot;Ryan Kaldari&quot; &lt;<a href="mailto:kaldari@gmail.com">kaldari@gmail.com</a>&gt; escribió:<br type="attribution">&gt; Actually it looks like ZWS uses a GUI configuration interface. To limit how<br>
&gt; large HTTP requests can be, you click the &quot;Request Filtering&quot; link in the<br>&gt; global settings page menu and then you configure the maximum POST body size<br>&gt; in bytes. Perhaps someone mistakenly entered a number for kilobytes instead<br>
&gt; of bytes. Can someone report what this value is currently set to? Thanks!<br>&gt; <br>&gt; Ryan Kaldari<br>&gt; <br>&gt; On Thu, Jul 14, 2011 at 12:11 AM, Ryan Kaldari &lt;<a href="mailto:kaldari@gmail.com">kaldari@gmail.com</a>&gt; wrote:<br>
&gt; <br>&gt;&gt; Apache apparently limits HTTP requests to 2 GBs by default, but I have<br>&gt;&gt; no idea what the default for ZWS is. I can hardly imagine it would be<br>&gt;&gt; 1 MB though. Perhaps someone has misconfigured it. The config variable<br>
&gt;&gt; in Apache is called LimitRequestBody, and since ZWS generally imitates<br>&gt;&gt; Apache, I imagine it is the same variable. Could someone check the ZWS<br>&gt;&gt; configs to see what it is currently set to?<br>
&gt;&gt;<br>&gt;&gt; Ryan Kaldari<br>&gt;&gt;<br>&gt;&gt; On Wed, Jul 13, 2011 at 11:47 PM, Ryan Kaldari &lt;<a href="mailto:kaldari@gmail.com">kaldari@gmail.com</a>&gt; wrote:<br>&gt;&gt; &gt; I tried this but both of the forms still return the &quot;413 Request Entity<br>
&gt;&gt; Too<br>&gt;&gt; &gt; Large&quot; error when I try to upload anything larger than 1 MB. This seems<br>&gt;&gt; to<br>&gt;&gt; &gt; be an HTTP issue rather than a PHP issue as the error is not coming from<br>&gt;&gt; &gt; PHP. Can other people upload files on nightshade via web forms that are<br>
&gt;&gt; &gt; larger than 1 MB?<br>&gt;&gt; &gt; Ryan Kaldari<br>&gt;&gt; &gt;<br>&gt;&gt; &gt; On Wed, Jul 13, 2011 at 11:20 PM, Jan Luca &lt;<a href="mailto:jan@jans-seite.de">jan@jans-seite.de</a>&gt; wrote:<br>&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Hi,<br>&gt;&gt; &gt;&gt;<br>&gt;&gt; &gt;&gt; maybe you should try using the ini_set function of PHP (at the start of<br>&gt;&gt; &gt;&gt; the<br>&gt;&gt; &gt;&gt; main file) to set the PHP options:<br>&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; ini_set( &quot;upload_max_filesize&quot;, &quot;20M&quot; );<br>&gt;&gt; &gt;&gt; ini_set( &quot;post_max_size&quot;, &quot;20M&quot; );<br>&gt;&gt; &gt;&gt; ini_set( &quot;max_execution_time&quot;, &quot;1200&quot; );<br>
&gt;&gt; &gt;&gt; ini_set( &quot;max_input_time&quot;, &quot;1200&quot; );<br>&gt;&gt; &gt;&gt; ini_set( &quot;memory_limit&quot;, &quot;20M&quot; );<br>&gt;&gt; &gt;&gt;<br>&gt;&gt; &gt;&gt; Best regards,<br>&gt;&gt; &gt;&gt; Jan<br>
&gt;&gt; &gt;&gt;<br>&gt;&gt; &gt;&gt; ---------------<br>&gt;&gt; &gt;&gt; Von: <a href="mailto:toolserver-l-bounces@lists.wikimedia.org">toolserver-l-bounces@lists.wikimedia.org</a><br>&gt;&gt; &gt;&gt; [mailto:<a href="mailto:toolserver-l-bounces@lists.wikimedia.org">toolserver-l-bounces@lists.wikimedia.org</a>] Im Auftrag von Ryan<br>
&gt;&gt; &gt;&gt; Kaldari<br>&gt;&gt; &gt;&gt; Gesendet: Donnerstag, 14. Juli 2011 01:17<br>&gt;&gt; &gt;&gt; An: <a href="mailto:toolserver-l@lists.wikimedia.org">toolserver-l@lists.wikimedia.org</a><br>&gt;&gt; &gt;&gt; Betreff: Re: [Toolserver-l] Uploads over 1MB refused by toolserver<br>
&gt;&gt; &gt;&gt;<br>&gt;&gt; &gt;&gt; Does anyone have any idea what else I can try to work around this<br>&gt;&gt; problem?<br>&gt;&gt; &gt;&gt; I&#39;m doing a presentation of this tool at Wikimania in a couple weeks and<br>
&gt;&gt; &gt;&gt; then it will be used for a major event in Montreal a few weeks after<br>&gt;&gt; that.<br>&gt;&gt; &gt;&gt;<br>&gt;&gt; &gt;&gt; It was working fine in January. People uploaded dozens of 3 and 4 MB<br>&gt;&gt; files<br>
&gt;&gt; &gt;&gt; with no problems, but now it won&#39;t allow anything larger than 1 MB. I<br>&gt;&gt; &gt;&gt; haven&#39;t changed any of the uploading code since then.<br>&gt;&gt; &gt;&gt;<br>&gt;&gt; &gt;&gt; Any help or advise would be appreciated!<br>
&gt;&gt; &gt;&gt;<br>&gt;&gt; &gt;&gt; Ryan Kaldari<br>&gt;&gt; &gt;&gt; On Thu, Jul 7, 2011 at 8:51 PM, Ryan Kaldari &lt;<a href="mailto:kaldari@gmail.com">kaldari@gmail.com</a>&gt; wrote:<br>&gt;&gt; &gt;&gt; I seems that I can&#39;t get the toolserver to accept any uploads larger<br>
&gt;&gt; than<br>&gt;&gt; &gt;&gt; 1MB. I have a web application running on nightshade that has both an<br>&gt;&gt; HTML<br>&gt;&gt; &gt;&gt; upload form and a Flash upload form, both of which upload files to<br>&gt;&gt; &gt;&gt; /mnt/user-store/contests/. I have my PHP limits set to the following in<br>
&gt;&gt; an<br>&gt;&gt; &gt;&gt; .htaccess file:<br>&gt;&gt; &gt;&gt;<br>&gt;&gt; &gt;&gt; php_value upload_max_filesize 20M<br>&gt;&gt; &gt;&gt; php_value post_max_size 20M<br>&gt;&gt; &gt;&gt; php_value max_execution_time 1200<br>
&gt;&gt; &gt;&gt; php_value max_input_time 1200<br>&gt;&gt; &gt;&gt; php_value memory_limit 20M<br>&gt;&gt; &gt;&gt;<br>&gt;&gt; &gt;&gt; Whenever I try to upload a file that is over 1MB (even 1.1MB), from<br>&gt;&gt; either<br>
&gt;&gt; &gt;&gt; the HTML upload form or the Flash interface, it either gives me a 413<br>&gt;&gt; &gt;&gt; server<br>&gt;&gt; &gt;&gt; error or the connection to the server is reset. A 413 error means that<br>&gt;&gt; the<br>
&gt;&gt; &gt;&gt; HTTP data stream sent by the client was too large for the server. Files<br>&gt;&gt; &gt;&gt; that<br>&gt;&gt; &gt;&gt; are less than 1MB always work fine. Any ideas what is going wrong?<br>&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Ryan Kaldari<br>&gt;&gt; &gt;&gt;<br>&gt;&gt; &gt;&gt;<br>&gt;&gt; &gt;&gt;<br>&gt;&gt; &gt;&gt; _______________________________________________<br>&gt;&gt; &gt;&gt; Toolserver-l mailing list (<a href="mailto:Toolserver-l@lists.wikimedia.org">Toolserver-l@lists.wikimedia.org</a>)<br>
&gt;&gt; &gt;&gt; <a href="https://lists.wikimedia.org/mailman/listinfo/toolserver-l">https://lists.wikimedia.org/mailman/listinfo/toolserver-l</a><br>&gt;&gt; &gt;&gt; Posting guidelines for this list:<br>&gt;&gt; &gt;&gt; <a href="https://wiki.toolserver.org/view/Mailing_list_etiquette">https://wiki.toolserver.org/view/Mailing_list_etiquette</a><br>
&gt;&gt; &gt;<br>&gt;&gt; &gt;<br>&gt;&gt;<br></div>