<a href="http://drupal.org/node/add/project-issue/drupal">http://drupal.org/node/add/project-issue/drupal</a><br clear="all"><br>Dave Reid<br><a href="mailto:dave@davereid.net">dave@davereid.net</a><br>
<br><br><div class="gmail_quote">On Wed, Jan 20, 2010 at 2:29 PM, blokkie <span dir="ltr">&lt;<a href="mailto:blokkie@h0m3.be">blokkie@h0m3.be</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

Hi,<br>
<br>
_System info _<br>
    database : mysql  Ver 14.14 Distrib 5.1.42, for pc-linux-gnu (i686) using readline 6.0<br>
    php : PHP 5.3.1 with Suhosin-Patch (cli) (built: Nov 23 2009 21:35:08)<br>
    webserver : nginx version: nginx/0.7.64<br>
<br>
<br>
On the following drupal 7 url  : <a href="http://local.drupal/index.php?q=admin/reports/status" target="_blank">http://local.drupal/index.php?q=admin/reports/status</a><br>
<br>
there is in blue :<br>
<br>
<br>
        <br>
Upload progress         Not enabled<br>
Your server is not capable of displaying file upload progress. File upload progress requires an Apache server running PHP with mod_php.<br>
<br>
<br>
<br>
<br>
This is not correct because  nginx (webserver) also supports this :<br>
<a href="http://wiki.nginx.org/NginxHttpUploadProgressModule" target="_blank">http://wiki.nginx.org/NginxHttpUploadProgressModule</a><br>
<br>
<br>
source file to adjust:<br>
modules/file/file.install:      $description = t(&#39;Your server is not capable of displaying file upload progress. File upload progress requires an Apache server running PHP with mod_php.&#39;);<br>
<br>
<br>
Can this be fixed to a text like : Your server is currently not capable of displaying file upload progress. Consult your webserver documentation to enable this.<br>
<br>
<br>
<br>
<br>
<br>
Additional info, my nginx virtual host file :<br>
<br>
server {<br>
      listen       80;<br>
      server_name  local.drupal;<br>
      root   /srv/http/drupal;<br>
      access_log /srv/http/logs/drupal/access.log;<br>
      error_log /srv/http/logs/drupal/error.log;<br>
<br>
      location / {<br>
        index index.php index.html index.htm;<br>
      }<br>
        location ~ \.php$ {<br>
            root           /srv/http/drupal;<br>
            fastcgi_pass   <a href="http://127.0.0.1:9000" target="_blank">127.0.0.1:9000</a>;<br>
            fastcgi_index  index.php;<br>
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;<br>
            include        fastcgi_params;<br>
        }<br>
}<br>
<br>
<br>
<br>
Kind regards ,<br><font color="#888888">
Blokkie<br>
<br>
</font></blockquote></div><br>