Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HTTP request status fails / Upload Progress not enabled #64

Closed
Sil68 opened this issue Sep 8, 2012 · 27 comments
Closed

HTTP request status fails / Upload Progress not enabled #64

Sil68 opened this issue Sep 8, 2012 · 27 comments
Assignees

Comments

@Sil68
Copy link

Sil68 commented Sep 8, 2012

I'm currently in the wake of moving from Apache2 to Nginx 1.3 as an underlying web environment for my Drupal 7.1.5 shop.

All of the various components are installed and running on one and the very same box--a Mac Mini under MacOS X 10.8.1.

Apart from this I've got homebrew in place, providing

:: MariaDB 5.3.8
:: PHP 5.4.6 (php-cgi)
:: Drush 5.7

For configuring Nginx I followed Persia's Drupal7 setup, but somehow it didn't work out (eg. Drupal all of a sudden complained about some erroneous code; Upload Progress not enabled; updating the site via the web front end resulted in having to provide ftp credentials [which-btw-I haven't got], and after updating using drush, the whole site went south) ! :(

After some try & error, I decided to opt for a fresh, from scratch install, and now, a plain vanilla Drupal7, is reporting on the status page that

:: HTTP request status......fails
:: Upload Progress............Not enabled

@Sil68
Copy link
Author

Sil68 commented Sep 8, 2012

Another thing: when using perusio's config files, I'm receiving bags of error messages in the common error log.

[emerg] 40503#0: bind() to 192.168.5.163:80 failed (48: Address already in use)

@Sil68
Copy link
Author

Sil68 commented Sep 8, 2012

Btw. I've installed the filefield_nginx_progress module, and I've just re-run the status report, which is showing

:: Upload Progress............Not enabled
:: Upload progress nginx....Enabled

But when going to the module update page it's displayed there that

"...Updating modules and themes requires FTP access to your server. See the handbook for other update methods...."

@perusio
Copy link
Owner

perusio commented Sep 10, 2012

I find this bizarre. The D7 version of the upload progress module doesn't work AFAIK. It needs work that I haven't found the time to put in.

As per the address already in use message. Are running apache on port 80? Note that you have to move it to another port and restart it. It's Nginx now that it's run on 80.

@Sil68
Copy link
Author

Sil68 commented Sep 12, 2012

Hi António,

I've double-checked now all the bits and bobs, and suddenly, without changing anything--at least consciously--it's working, the D7 setup, I mean, and I'm already happily re-installing all the various modules and themes.

As for the port issue, no, there is no other process running, no Apache or similar, only Nginx, albeit four processes there are (see below).

6252 ?? 0:00.00 nginx: master process /usr/local/sbin/nginx
6253 ?? 0:00.69 nginx: worker process
6254 ?? 0:00.28 nginx: cache manager process
54780 ?? 1:41.49 /usr/local/bin/php-cgi -c /usr/local/etc/php/5.4/php.ini -b /var/run/php/php-fpm.sock
56308 ?? 0:00.02 /usr/local/sbin/nginx

Cheers,
Martin

On 10.09.2012, at 11:21, António P. P. Almeida notifications@github.com wrote:

I find this bizarre. The D7 version of the upload progress module doesn't work AFAIK. It needs work that I haven't found the time to put in.

As per the address already in use message. Are running apache on port 80? Note that you have to move it to another port and restart it. It's Nginx now that it's run on 80.


Reply to this email directly or view it on GitHub.

@perusio
Copy link
Owner

perusio commented Sep 12, 2012

Are re-using IPv6 addresses? Try restarting Nginx and see if it occurs again, the complain about truing to bind already binded addresses.

@Sil68
Copy link
Author

Sil68 commented Sep 14, 2012

No, no IPv6 addresses, only IPv4 (albeit all of them assigned to virtual ethernet interfaces).

Btw. I'm trying to get your Drupal (7) config working together with your Piwik config, side-by-side, on one and the very same host.

I've configured Drupal to be accessed by the webserver root, and Piwik via http://my.host.net/Piwik, but all I'm receiving when opening the latter URL is a Drupal message stating

Page not found

Configure
The requested page "/Piwik" could not be found.

The piwik.conf is as follows

~_~_~_~_~_~_~_~_~_~_~_~~_

piwik.conf

==========

Piwik-specific configuration

location ^~ /Piwik {
root /Volumes/MHData/Web/apps;

## See the blacklist.conf file at the parent dir: /etc/nginx.
## Deny access based on the User-Agent header.

## -> Uncomment the lines below to enable bad bot blocking based
## on UA string.
#if ($bad_bot)  {
#     return            444;
#}
## -> Uncomment the lines below to enable bad bot blocking based
## on referer header.
## Deny access based on the Referer header.
#if ($bad_referer)  {
#     return            444;
#}

## Disallow any usage of piwik assets if referer is non valid.
location    ~*      ^/Piwik/.+\.(?:css|gif|jpe?g|js|png|swf)$   {

    ## Defining the valid referers.
    valid_referers  none    blocked *.host.net;
    if ($invalid_referer)   {
        return      444;
    }

    expires         max;

    ## No need to bleed constant updates. Send the all shebang in one
    ## fell swoop.
    tcp_nodelay     off;

    ## Set the OS file cache.
    open_file_cache             max=500 inactive=120s;
    open_file_cache_valid       45s;
    open_file_cache_min_uses    2;
    open_file_cache_errors      off;
}

## Try all locations and relay to index.php as a fallback.
location        /Piwik  {
    try_files       $uri    /Piwik/index.php?$query_string;
}

## Relay all index.php requests to fastcgi.
location    =       /Piwik/index.php    {
    fastcgi_pass    phpcgi;
    ## FastCGI cache.
    ## cache ui for 5m (set the same interval of your crontab)
    include         apps.d/piwik/fcgi_piwik_cache.conf;

    ## To use Apache for serving PHP uncomment the line bellow and
    ## comment out the above.
    #proxy_pass     http://phpapache;

    ### Use the proxy cache if proxying to Apache.
    #include            apps.d/piwik/proxy_piwik_cache.conf;
}

## Relay all piwik.php requests to fastcgi.
location    =       /Piwik/piwik.php    {
    fastcgi_pass    phpcgi;
    include         apps.d/piwik/fcgi_piwik_long_cache.conf;

    ## To use Apache for serving PHP uncomment the line bellow and
    ## comment out the above.
    #proxy_pass     http://phpapache;

    ## Proxy cache.
    #include            apps.d/piwik/proxy_piwik_long_cache.conf;
}

## Any other attempt to access PHP files redirects to the root.
location    ~*      ^/Piwik/.+\.php$    {
    return          302     /Piwik;
}

## Redirect to the root if attempting to access a txt file.
location    ~*      /Piwik/(?:DESIGN|(?:gpl|README|LICENSE)[^.]*|LEGALNOTICE)(?:\.txt)*$    {
    return          302     /Piwik;
}

## Disallow access to several helper files.
location    ~*      /Piwik/\.(?:bat|html?|git|ini|sh|svn[^.]*|txt|tpl|xml)$ {
    return          404;
}

## Including the php-fpm status and ping pages config.
## Uncomment to enable if you're running php-fpm.
#include                conf.d/php_fpm_status_vhost.conf;

}

end of file

~_~_~_~_~_~_~_~_~_~_~_~~_

On 12.09.2012, at 23:30, António P. P. Almeida notifications@github.com wrote:

Are re-using IPv6 addresses? Try restarting Nginx and see if it occurs again, the complain about truing to bind already binded addresses.


Reply to this email directly or view it on GitHub.

@Sil68
Copy link
Author

Sil68 commented Sep 14, 2012

Another thing I've just discovered: when trying to upload an picture, eg. for creating a product, Drupal is displaying a "Starting upload" message, but then it gets stuck, at the very beginning, and nothing is happening beyond that point.

When glimpsing into the log files (access.log) the following lines are being added

a.b.c.d - - [14/Sep/2012:22:08:50 +0200] "GET /filefield_nginx_progress/408031086 HTTP/1.1" 304 0 "http://my.host.net/node/6/edit?destination=admin/content" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/536.25 (KHTML, like Gecko) Version/6.0 Safari/536.25"
a.b.c.d - - [14/Sep/2012:22:08:51 +0200] "GET /progress?X-Progress-ID=408031086 HTTP/1.0" 200 29 "-" "Drupal (+http://drupal.org/)"
a.b.c.d - - [14/Sep/2012:22:08:51 +0200] "GET /filefield_nginx_progress/408031086 HTTP/1.1" 200 59 "http://my.host.net/node/6/edit?destination=admin/content" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/536.25 (KHTML, like Gecko) Version/6.0 Safari/536.25"
a.b.c.d - - [14/Sep/2012:22:08:53 +0200] "GET /filefield_nginx_progress/408031086 HTTP/1.1" 304 0 "http:/my.host.net/node/6/edit?destination=admin/content" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/536.25 (KHTML, like Gecko) Version/6.0 Safari/536.25"
1
:
:

On 12.09.2012, at 23:30, António P. P. Almeida notifications@github.com wrote:

Are re-using IPv6 addresses? Try restarting Nginx and see if it occurs again, the complain about truing to bind already binded addresses.


Reply to this email directly or view it on GitHub.

@perusio
Copy link
Owner

perusio commented Sep 15, 2012

It should work. Can you get a debug log?

@Sil68
Copy link
Author

Sil68 commented Sep 15, 2012

Adding "debug" to the log file configuration doesn't change anything, so I guess I have to re-compile nginx, right?

Currently nxing is compiled like

~_~_~_~_~_~_~_~_~_~_~_~_
nginx version: nginx/1.3.5
built by gcc 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)
TLS SNI support enabled
configure arguments: --prefix=/usr/local --sbin-path=/usr/local/sbin --conf-path=/usr/local/etc/nginx/nginx.conf --error-log-path=/usr/local/var/log/nginx/error.log --pid-path=/usr/local/var/run/nginx/nginx.pid --lock-path=/usr/local/var/lock/nginx/nginx.lock --user=www --group=www --with-rtsig_module --with-select_module --with-poll_module --with-ipv6 --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_xslt_module --with-http_image_filter_module --with-http_geoip_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_degradation_module --with-http_stub_status_module --http-log-path=/usr/local/var/log/nginx/access.log --http-client-body-temp-path=/usr/local/var/tmp/nginx/client-body --http-proxy-temp-path=/usr/local/var/tmp/nginx/proxy --http-fastcgi-temp-path=/usr/local/var/tmp/nginx/fastcgi --http-uwsgi-temp-path=/usr/local/var/tmp/nginx/uwsgi --http-scgi-temp-path=/usr/local/var/tmp/nginx/scgi --with-mail --with-mail_ssl_module --with-pcre --with-pcre-jit --with-zlib=/Volumes/MHData/Temporary/macports/nginx/extra/zlib-1.2.7 --add-module=/Volumes/MHData/Temporary/macports/nginx/modules/ngx_devel_kit --add-module=/Volumes/MHData/Temporary/macports/nginx/modules/nginx-rtmp-module --add-module=/Volumes/MHData/Temporary/macports/nginx/modules/nginx-upload-progress-module --add-module=/Volumes/MHData/Temporary/macports/nginx/modules/nginx_lua_module --add-module=/Volumes/MHData/Temporary/macports/nginx/modules/nginx_upload_module-2.2.0 --add-module=/Volumes/MHData/Temporary/macports/nginx/modules/ngx_http_secure_download --add-module=/Volumes/MHData/Temporary/macports/nginx/modules/ngx_auto_lib
_
~_~_~_~_~_~_~_~_~_~_~_~

And my D7 status report looks like

~_~_~_~_~_~_~_~_~_~_~_~~_
Home » Administration » Reports Status report

Here you can find a short overview of your site's parameters as well as any problems detected with your installation. It may be useful to copy and paste this information into support requests filed on drupal.org's support forums and project issue queues.

Drupal 7.15

(X) TCPDF directory Non-writable permissions
You must change the public://print_pdf/
print_pdf_tcpdf/cache permissions to be
writable, as TCPDF requires write-access
to that directory.

Access to update.php Protected

Bad Behavior 2.2.10

(X) CTools CSS Cache Unable to create
The CTools CSS cache directory, ctools/css
could not be created due to a misconfigured
files directory. Please ensure that the files
directory is correctly configured and that
the webserver has permission to create
directories.

Catalog vocabulary Vocabulary Catalog has been identified as
the Ubercart catalog.

Colorbox plugin 1.3.19.3

Configuration file Protected

Countries Country definitions are up-to-date.

Credit card encryption Credit card data is encrypted during checkout
for maximum security.

Cron maintenance tasks Last run 4 min 12 sec ago

You can run cron manually.

Database system MySQL, MariaDB, or equivalent

Database system version 5.3.8-MariaDB-log

Database updates Up to date

Date API System date settings

            The timezone has been set to Europe/London. 
            The first day of the week has been set to 
            Monday. The medium date format type has been 
            set to to Fri, 14/09/2012 - 22:10. You may 
            find it helpful to add new format types like 
            Date, Time, Month, or Year, with appropriate 
            formats, at Date and time settings.

Domain Access Module installed correctly.

Drupal core update status Up to date

File downloads The file downloads directory has been
set and is working.

File system Writable (private download method)

GD library PNG support bundled (2.0.34 compatible)

GD library rotate and
desaturate effects bundled (2.0.34 compatible)

Hierarchical Select All updates installed. HS API implemen-
tation modules correctly installed.

Images Product image support has been automat-
ically configured by Ubercart.

Module and theme update status Up to date

Node Access Permissions 10 permissions in use
If the site is experiencing problems with
permissions to content, you may have to
rebuild the permissions cache. Rebuilding
will remove all privileges to content and
replace them with permissions based on the
current modules and settings. Rebuilding
may take some time if there is a lot of
content or complex permission settings.
After rebuilding has completed, content
will automatically use the new permissions.
Rebuild permissions

(!) Override site name with name of domain. Enabled
The domain module is configured to override
site names with the names of domains. For
multilingual site names this override needs
to be disabled. Note that you may have to
manually update site names for all existing
domains after disabling the override.

PHP 5.4.6 (more information)

PHP extensions Enabled

PHP memory limit 512M

PHP register globals Disabled

Page title version Enabled (page_title table contains 0 rows)

(X) Piwik module Not configured
Piwik module has not been configured yet.
Please configure its settings from the Piwik
settings page.

Printer, email and PDF versions

  • PDF generation library TCPDF 5.9.162

Roles The role(s) administrator are set to be used
with the Role Assignment product feature.

Services Authentication Mechanism Enabled for all Endpoints

(X) Store settings Store e-mail address has not been set. Please
enter it here.

(!) Tokens Problems detected
The following tokens or token types are missing
required name and/or description information:

            $info['tokens']['vote_results']['count-vote-cache-id'] 
            $info['tokens']['vote_results']['count-function'] 
            $info['tokens']['vote_results']['average-vote-cache-id'] 
            $info['tokens']['vote_results']['average-function'] 
            $info['tokens']['vote_results']['sum-vote-cache-id'] 
            $info['tokens']['vote_results']['sum-function']

Unicode library PHP Mbstring Extension

Update notifications Enabled

Upload progress Not enabled
Your server is not capable of displaying file
upload progress. File upload progress requires
an Apache server running PHP with mod_php.

Upload progress nginx Enabled (upload progress module )

Views PDF - FPDI Present

Views PDF - FPDI Template File Present

Views PDF - TCPDF Present

Web server nginx/1.3.5

XML sitemap Last attempted generation on Mon, 10/09/2012 -
19:32 (4 days 2 hours ago).

XML sitemap cache directory Writable

Zend Framework 1.11.11

jQuery Update jQuery 1.5.2 and jQuery UI 1.8.11

sweaver directory Exists

Entity Collector

Before you can create relations, you need to create one or more relation types. Once you've done that, visit any page that loads one or more entities, and use this block to add entities to a new relation. Picked entities stay in the entity_collector until cleared or a relation is created so it is possible to collect the entities from several pages.
~_~_~_~_~_~_~_~_~_~_~_~~_

On 15.09.2012, at 02:11, António P. P. Almeida notifications@github.com wrote:

It should work. Can you get a debug log?


Reply to this email directly or view it on GitHub.

@perusio
Copy link
Owner

perusio commented Sep 15, 2012

Yep. You have to add --with-debug to the configure invocation to enable the debug log.

@Sil68
Copy link
Author

Sil68 commented Sep 15, 2012

Okay! I'll configure this option.

Btw. the first time trying to upload an image, I'm receiving the following error message:

(X) • Notice: Array to string conversion in theme_hierarchical_select() 
      (line 87 of .../Drupal/sites/all/modules/hierarchical_select/includes/theme.inc).
    • The file could not be uploaded.

On any subsequent attempt the upload simply gets stuck.

On 15.09.2012, at 16:48, António P. P. Almeida notifications@github.com wrote:

Yep. You have to add --with-debug to the configure invocation to enable the debug log.


Reply to this email directly or view it on GitHub.

@Sil68
Copy link
Author

Sil68 commented Sep 15, 2012

Strange, no log files are written any more since configuring and activating 'debug'... :(

I've now deactivated the hierarchy modules, and after trying another file upload, I've received the following error message:

An AJAX HTTP request terminated abnormally.
Debugging information follows.
Path: /file/ajax/upload/form-aOzcCwl48WQBqV0sl0T0t099GRHWHUIr_JR347JOqD4/x-progress-id%3A2023214540
StatusText: n/a
ResponseText: 504 Gateway Time-out
nginx
ReadyState: undefined

On 15.09.2012, at 18:34, Community Community@MMHein.at wrote:

Okay! I'll configure this option.

Btw. the first time trying to upload an image, I'm receiving the following error message:

(X) • Notice: Array to string conversion in theme_hierarchical_select()
(line 87 of .../Drupal/sites/all/modules/hierarchical_select/includes/theme.inc).
• The file could not be uploaded.

On any subsequent attempt the upload simply gets stuck.

On 15.09.2012, at 16:48, António P. P. Almeida notifications@github.com wrote:

Yep. You have to add --with-debug to the configure invocation to enable the debug log.


Reply to this email directly or view it on GitHub.

@Sil68
Copy link
Author

Sil68 commented Sep 15, 2012

Finally I managed to get the debug information written to the log.

Please see enclosed error log file.

On 15.09.2012, at 16:48, António P. P. Almeida notifications@github.com wrote:

Yep. You have to add --with-debug to the configure invocation to enable the debug log.


Reply to this email directly or view it on GitHub.

@perusio
Copy link
Owner

perusio commented Sep 16, 2012

There's nothing enclosed. Nada. Either you forgot the attachment or github filters the attachments.

@Sil68
Copy link
Author

Sil68 commented Sep 16, 2012

Well, it appears as if github is filtering the attachments... :(

On 16.09.2012, at 20:51, António P. P. Almeida notifications@github.com wrote:

There's nothing enclosed. Nada. Either you forgot the attachment or github filters the attachments.


Reply to this email directly or view it on GitHub.

@Sil68
Copy link
Author

Sil68 commented Sep 16, 2012

Let's try it included hereto.

~_~_~_~_~_~_~_~_~_~_~_~~_
2012/09/15 22:10:46 [debug] 27413#0: kevent set event: 41: ft:-1 fl:0005
2012/09/15 22:10:46 [debug] 27413#0: kevent deleted: 41: ft:-1
2012/09/15 22:10:46 [debug] 27412#0: kevent set event: 41: ft:-1 fl:0005
2012/09/15 22:10:46 [debug] 27414#0: kevent set event: 41: ft:-1 fl:0005
2012/09/15 22:10:46 [debug] 27414#0: kevent deleted: 41: ft:-1
2012/09/15 22:11:04 [debug] 27412#0: accept on a.b.c.d:80, ready: 1
2012/09/15 22:11:04 [debug] 27412#0: posix_memalign: 00007FADDBC1F470:256 @16
2012/09/15 22:11:04 [debug] 27412#0: 1 accept: a.b.c.d fd:60
2012/09/15 22:11:04 [debug] 27412#0: *1 event timer add: 60: 180000:1347740044369
2012/09/15 22:11:04 [debug] 27412#0: *1 kevent set event: 60: ft:-1 fl:0025
2012/09/15 22:11:04 [debug] 27412#0: *1 malloc: 00007FADDC024400:1312
2012/09/15 22:11:04 [debug] 27412#0: *1 posix_memalign: 00007FADDBC1F570:256 @16
2012/09/15 22:11:04 [debug] 27412#0: *1 malloc: 00007FADDC008800:1024
2012/09/15 22:11:04 [debug] 27412#0: *1 posix_memalign: 00007FADDC007400:4096 @16
2012/09/15 22:11:04 [debug] 27412#0: *1 http process request line
2012/09/15 22:11:04 [debug] 27412#0: *1 recv: eof:0, avail:871, err:0
2012/09/15 22:11:04 [debug] 27412#0: *1 recv: fd:60 871 of 1024
2012/09/15 22:11:04 [debug] 27412#0: *1 http request line: "GET /admin/content/file HTTP/1.1"
2012/09/15 22:11:04 [debug] 27412#0: *1 http uri: "/admin/content/file"
2012/09/15 22:11:04 [debug] 27412#0: *1 http args: ""
2012/09/15 22:11:04 [debug] 27412#0: *1 http exten: ""
2012/09/15 22:11:04 [debug] 27412#0: *1 http process request header line
2012/09/15 22:11:04 [debug] 27412#0: *1 http header: "Host: my.host.net"
2012/09/15 22:11:04 [debug] 27412#0: *1 http header: "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/536.25 (KHTML, like Gecko) Version/6.0 Safari/536.25"
2012/09/15 22:11:04 [debug] 27412#0: *1 http header: "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,
/;q=0.8"
2012/09/15 22:11:04 [debug] 27412#0: *1 http header: "DNT: 1"
2012/09/15 22:11:04 [debug] 27412#0: *1 http header: "Referer: http://my.host.net/admin/quiz"
2012/09/15 22:11:04 [debug] 27412#0: *1 http header: "Accept-Language: en-gb"
2012/09/15 22:11:04 [debug] 27412#0: *1 http header: "Accept-Encoding: gzip, deflate"
2012/09/15 22:11:04 [debug] 27412#0: *1 http header: "If-Modified-Since: Sat, 15 Sep 2012 17:56:47 GMT"
2012/09/15 22:11:04 [debug] 27412#0: *1 http header: "Cookie: SESSd04d6442803e6cfe6e2b28ff08fe29c4=LpaPzULUgX2SAuaklSnt1glpAUnIAgNsEGFEM1Q0amk; SESS66d3b3c656cdaa9908c3e47f01bb437a=XYymWB8OAWO0Cf1R5IINo6FI136PzrWndpOEs9bdf1Y; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; sweaver_active_tab=tab-sweaver_plugin_editor; sweaver_open=false; Drupal.tableDrag.showWeight=0; Drupal.toolbar.collapsed=0; pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/09/15 22:11:04 [debug] 27412#0: *1 http header: "Connection: keep-alive"
2012/09/15 22:11:04 [debug] 27412#0: *1 http header done
2012/09/15 22:11:04 [debug] 27412#0: *1 event timer del: 60: 1347740044369
2012/09/15 22:11:04 [debug] 27412#0: *1 generic phase: 0
2012/09/15 22:11:04 [debug] 27412#0: *1 rewrite phase: 1
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var
2012/09/15 22:11:04 [debug] 27412#0: *1 http map started
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/536.25 (KHTML, like Gecko) Version/6.0 Safari/536.25"
2012/09/15 22:11:04 [debug] 27412#0: *1 http map: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/536.25 (KHTML, like Gecko) Version/6.0 Safari/536.25" "0"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "0"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script if
2012/09/15 22:11:04 [debug] 27412#0: *1 http script if: false
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var
2012/09/15 22:11:04 [debug] 27412#0: *1 http geo started: a.b.c.d
2012/09/15 22:11:04 [debug] 27412#0: *1 http geo: 0
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "0"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script if
2012/09/15 22:11:04 [debug] 27412#0: *1 http script if: false
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var
2012/09/15 22:11:04 [debug] 27412#0: *1 http map started
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "GET"
2012/09/15 22:11:04 [debug] 27412#0: *1 http map: "GET" "0"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "0"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script if
2012/09/15 22:11:04 [debug] 27412#0: *1 http script if: false
2012/09/15 22:11:04 [debug] 27412#0: *1 test location: "/"
2012/09/15 22:11:04 [debug] 27412#0: *1 test location: "patches"
2012/09/15 22:11:04 [debug] 27412#0: *1 test location: "fpm-status"
2012/09/15 22:11:04 [debug] 27412#0: *1 test location: "backup"
2012/09/15 22:11:04 [debug] 27412#0: *1 test location: ".git"
2012/09/15 22:11:04 [debug] 27412#0: *1 test location: "/sites/default/files/audio/ogg"
2012/09/15 22:11:04 [debug] 27412#0: *1 test location: "/sites/default/files/advagg_js/"
2012/09/15 22:11:04 [debug] 27412#0: *1 test location: "/sites/default/files/advagg_css/"
2012/09/15 22:11:04 [debug] 27412#0: *1 test location: "/help/"
2012/09/15 22:11:04 [debug] 27412#0: *1 test location: ~ "/imagecache/"
2012/09/15 22:11:04 [debug] 27412#0: *1 test location: ~ "/files/styles/"
2012/09/15 22:11:04 [debug] 27412#0: *1 test location: ~ "^.+.(?:css|js|jpe?g|gif|ico|png|html|xml)$"
2012/09/15 22:11:04 [debug] 27412#0: *1 test location: ~ "^.+.(?:pdf|pptx?)$"
2012/09/15 22:11:04 [debug] 27412#0: *1 test location: ~ "^(?:.+.(?:htaccess|make|txt|engine|inc|info|install|module|profile|po|sh|.sql|test|theme|tpl(?:.php)?|xtmpl)|code-style.pl|/Entries.|/Repository|/Root|/Tag|/Template)$"
2012/09/15 22:11:04 [debug] 27412#0: *1 test location: ~ "^.+.php$"
2012/09/15 22:11:04 [debug] 27412#0: *1 test location: ~ "^(.
)/x-progress-id:(\w
)"
2012/09/15 22:11:04 [debug] 27412#0: *1 using configuration "/"
2012/09/15 22:11:04 [debug] 27412#0: *1 http cl:-1 max:10485760
2012/09/15 22:11:04 [debug] 27412#0: *1 rewrite phase: 3
2012/09/15 22:11:04 [debug] 27412#0: *1 rewrite phase: 4
2012/09/15 22:11:04 [debug] 27412#0: *1 post rewrite phase: 5
2012/09/15 22:11:04 [debug] 27412#0: *1 generic phase: 6
2012/09/15 22:11:04 [debug] 27412#0: *1 generic phase: 7
2012/09/15 22:11:04 [debug] 27412#0: *1 generic phase: 8
2012/09/15 22:11:04 [debug] 27412#0: *1 generic phase: 9
2012/09/15 22:11:04 [debug] 27412#0: *1 limit conn: B7CA6CC6 1
2012/09/15 22:11:04 [debug] 27412#0: *1 add cleanup: 00007FADDC008300
2012/09/15 22:11:04 [debug] 27412#0: *1 access phase: 10
2012/09/15 22:11:04 [debug] 27412#0: *1 access phase: 11
2012/09/15 22:11:04 [debug] 27412#0: *1 post access phase: 12
2012/09/15 22:11:04 [debug] 27412#0: *1 try files phase: 13
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "/admin/content/file"
2012/09/15 22:11:04 [debug] 27412#0: *1 trying to use file: "/admin/content/file" "/Volumes/MHData/Web/apps/Drupal/admin/content/file"
2012/09/15 22:11:04 [debug] 27412#0: *1 trying to use file: "@drupal" "/Volumes/MHData/Web/apps/Drupal@drupal"
2012/09/15 22:11:04 [debug] 27412#0: *1 test location: "@drupal"
2012/09/15 22:11:04 [debug] 27412#0: *1 using location: @drupal "/admin/content/file?"
2012/09/15 22:11:04 [debug] 27412#0: *1 rewrite phase: 3
2012/09/15 22:11:04 [debug] 27412#0: *1 rewrite phase: 4
2012/09/15 22:11:04 [debug] 27412#0: *1 post rewrite phase: 5
2012/09/15 22:11:04 [debug] 27412#0: *1 generic phase: 6
2012/09/15 22:11:04 [debug] 27412#0: *1 generic phase: 7
2012/09/15 22:11:04 [debug] 27412#0: *1 generic phase: 8
2012/09/15 22:11:04 [debug] 27412#0: *1 generic phase: 9
2012/09/15 22:11:04 [debug] 27412#0: *1 access phase: 10
2012/09/15 22:11:04 [debug] 27412#0: *1 access phase: 11
2012/09/15 22:11:04 [debug] 27412#0: *1 post access phase: 12
2012/09/15 22:11:04 [debug] 27412#0: *1 try files phase: 13
2012/09/15 22:11:04 [debug] 27412#0: *1 upload-progress: ngx_http_uploadprogress_content_handler
2012/09/15 22:11:04 [debug] 27412#0: *1 posix_memalign: 00007FADDC040000:4096 @16
2012/09/15 22:11:04 [debug] 27412#0: *1 http init upstream, client timer: 0
2012/09/15 22:11:04 [debug] 27412#0: *1 kevent set event: 60: ft:-2 fl:0025
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "my.host.net"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "/admin/content/file"
2012/09/15 22:11:04 [debug] 27412#0: *1 http cache key: "my.host.net/admin/content/file"
2012/09/15 22:11:04 [debug] 27412#0: *1 http map started
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "SESSd04d6442803e6cfe6e2b28ff08fe29c4=LpaPzULUgX2SAuaklSnt1glpAUnIAgNsEGFEM1Q0amk; SESS66d3b3c656cdaa9908c3e47f01bb437a=XYymWB8OAWO0Cf1R5IINo6FI136PzrWndpOEs9bdf1Y; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; sweaver_active_tab=tab-sweaver_plugin_editor; sweaver_open=false; Drupal.tableDrag.showWeight=0; Drupal.toolbar.collapsed=0; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/09/15 22:11:04 [debug] 27412#0: 1 http map: "SESSd04d6442803e6cfe6e2b28ff08fe29c4=LpaPzULUgX2SAuaklSnt1glpAUnIAgNsEGFEM1Q0amk; SESS66d3b3c656cdaa9908c3e47f01bb437a=XYymWB8OAWO0Cf1R5IINo6FI136PzrWndpOEs9bdf1Y; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; sweaver_active_tab=tab-sweaver_plugin_editor; sweaver_open=false; Drupal.tableDrag.showWeight=0; Drupal.toolbar.collapsed=0; pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835." "0"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "0"
2012/09/15 22:11:04 [debug] 27412#0: *1 add cleanup: 00007FADDC040A10
2012/09/15 22:11:04 [debug] 27412#0: *1 http file cache exists: -5 e:0
2012/09/15 22:11:04 [debug] 27412#0: *1 cache file: "/var/tmp/nginx/microcache/2/16/f4c511d0d30721b17213e1b81745d162"
2012/09/15 22:11:04 [debug] 27412#0: *1 add cleanup: 00007FADDC040A68
2012/09/15 22:11:04 [debug] 27412#0: *1 http file cache lock u:1 wt:0
2012/09/15 22:11:04 [debug] 27412#0: *1 http upstream cache: -5
2012/09/15 22:11:04 [debug] 27412#0: *1 posix_memalign: 00007FADDC03E000:4096 @16
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "QUERY_STRING"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "q="
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "/admin/content/file"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "&"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "QUERY_STRING: q=/admin/content/file&"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "REQUEST_METHOD"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "GET"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "REQUEST_METHOD: GET"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "CONTENT_TYPE"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "CONTENT_TYPE: "
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "CONTENT_LENGTH"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "CONTENT_LENGTH: "
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "SCRIPT_NAME"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "/index.php"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "SCRIPT_NAME: /index.php"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "REQUEST_URI"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "/admin/content/file"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "REQUEST_URI: /admin/content/file"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "DOCUMENT_URI"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "/admin/content/file"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "DOCUMENT_URI: /admin/content/file"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "DOCUMENT_ROOT"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "/Volumes/MHData/Web/apps/Drupal"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "DOCUMENT_ROOT: /Volumes/MHData/Web/apps/Drupal"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "SERVER_PROTOCOL"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "HTTP/1.1"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "GATEWAY_INTERFACE"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "CGI/1.1"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "SERVER_SOFTWARE"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "nginx/"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "1.3.5"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "SERVER_SOFTWARE: nginx/1.3.5"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "REMOTE_ADDR"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "a.b.c.d"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "REMOTE_ADDR: a.b.c.d"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "REMOTE_PORT"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "58302"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "REMOTE_PORT: 58302"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "SERVER_ADDR"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "a.b.c.d"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "SERVER_ADDR: a.b.c.d"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "SERVER_PORT"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "80"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "SERVER_PORT: 80"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "SERVER_NAME"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "my.host.net"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "SERVER_NAME: my.host.net"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "REDIRECT_STATUS"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "200"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "REDIRECT_STATUS: 200"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "SCRIPT_FILENAME"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script var: "/Volumes/MHData/Web/apps/Drupal"
2012/09/15 22:11:04 [debug] 27412#0: *1 http script copy: "/index.php"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "SCRIPT_FILENAME: /Volumes/MHData/Web/apps/Drupal/index.php"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "HTTP_HOST: my.host.net"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/536.25 (KHTML, like Gecko) Version/6.0 Safari/536.25"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "HTTP_ACCEPT: text/html,application/xhtml+xml,application/xml;q=0.9,
/
;q=0.8"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "HTTP_DNT: 1"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "HTTP_REFERER: http://my.host.net/admin/quiz"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "HTTP_ACCEPT_LANGUAGE: en-gb"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "HTTP_ACCEPT_ENCODING: gzip, deflate"
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "HTTP_COOKIE: SESSd04d6442803e6cfe6e2b28ff08fe29c4=LpaPzULUgX2SAuaklSnt1glpAUnIAgNsEGFEM1Q0amk; SESS66d3b3c656cdaa9908c3e47f01bb437a=XYymWB8OAWO0Cf1R5IINo6FI136PzrWndpOEs9bdf1Y; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; sweaver_active_tab=tab-sweaver_plugin_editor; sweaver_open=false; Drupal.tableDrag.showWeight=0; Drupal.toolbar.collapsed=0; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/09/15 22:11:04 [debug] 27412#0: *1 fastcgi param: "HTTP_CONNECTION: keep-alive"
2012/09/15 22:11:04 [debug] 27412#0: *1 http cleanup add: 00007FADDC040BD8
2012/09/15 22:11:04 [debug] 27412#0: *1 init keepalive peer
2012/09/15 22:11:04 [debug] 27412#0: *1 get keepalive peer
2012/09/15 22:11:04 [debug] 27412#0: *1 get rr peer, try: 1
2012/09/15 22:11:04 [debug] 27412#0: *1 socket 61
2012/09/15 22:11:04 [debug] 27412#0: *1 connect to unix:/var/run/php/php-fpm.sock, fd:61 #2
2012/09/15 22:11:04 [debug] 27412#0: *1 kevent set event: 61: ft:-1 fl:0025
2012/09/15 22:11:04 [debug] 27412#0: *1 connected
2012/09/15 22:11:04 [debug] 27412#0: *1 http upstream connect: 0
2012/09/15 22:11:04 [debug] 27412#0: *1 posix_memalign: 00007FADDBC1A840:128 @16
2012/09/15 22:11:04 [debug] 27412#0: *1 http upstream send request
2012/09/15 22:11:04 [debug] 27412#0: *1 chain writer buf fl:0 s:1360
2012/09/15 22:11:04 [debug] 27412#0: *1 chain writer in: 00007FADDC040C50
2012/09/15 22:11:04 [debug] 27412#0: *1 writev: 1360 of 1360
2012/09/15 22:11:04 [debug] 27412#0: *1 chain writer out: 0000000000000000
2012/09/15 22:11:04 [debug] 27412#0: *1 event timer add: 61: 14400000:1347754264371
2012/09/15 22:11:04 [debug] 27412#0: *1 http finalize request: -4, "/admin/content/file?" a:1, c:3
2012/09/15 22:11:04 [debug] 27412#0: *1 http request count:3 blk:0
2012/09/15 22:11:04 [debug] 27412#0: *1 http finalize request: -4, "/admin/content/file?" a:1, c:2
2012/09/15 22:11:04 [debug] 27412#0: *1 http request count:2 blk:0
2012/09/15 22:11:04 [debug] 27412#0: *1 http run request: "/admin/content/file?"
2012/09/15 22:11:04 [debug] 27412#0: *1 http upstream check client, write event:1, "/admin/content/file"
2012/09/15 22:11:05 [debug] 27412#0: *1 http upstream request: "/admin/content/file?"
2012/09/15 22:11:05 [debug] 27412#0: *1 http upstream process header
2012/09/15 22:11:05 [debug] 27412#0: *1 malloc: 00007FADDC03C000:4096
2012/09/15 22:11:05 [debug] 27412#0: *1 recv: eof:0, avail:8192, err:0
2012/09/15 22:11:05 [debug] 27412#0: *1 recv: fd:61 4006 of 4006
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 01
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 06
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 00
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 01
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 01
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 53
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 05
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 00
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record length: 339
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi header: "Expires: Sun, 19 Nov 1978 05:00:00 GMT"
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi header: "Last-Modified: Sat, 15 Sep 2012 20:11:04 +0000"
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi header: "Cache-Control: no-cache, must-revalidate, post-check=0, pre-check=0"
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi header: "ETag: "1347739864""
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi header: "X-XSS-Protection: 1; mode=block"
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi header: "X-Content-Type-Options: nosniff"
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi header: "X-Frame-Options: SameOrigin"
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi header: "Content-Type: text/html; charset=utf-8"
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi header: "Content-Language: en-gb"
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi parser: 1
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi header done
2012/09/15 22:11:05 [debug] 27412#0: *1 http ims:1347731807 lm:1347739864
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "MISS"
2012/09/15 22:11:05 [debug] 27412#0: *1 uploadprogress error-tracker error: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 xslt filter header
2012/09/15 22:11:05 [debug] 27412#0: *1 HTTP/1.1 200 OK
Server: nginx
Date: Sat, 15 Sep 2012 20:11:05 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=10
Vary: Accept-Encoding
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Last-Modified: Sat, 15 Sep 2012 20:11:04 +0000
Cache-Control: no-cache
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
X-Frame-Options: SameOrigin
Content-Language: en-gb
X-Micro-Cache: MISS
Content-Encoding: gzip

2012/09/15 22:11:05 [debug] 27412#0: 1 write new buf t:1 f:0 00007FADDC03E848, pos 00007FADDC03E848, size: 488 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 http write filter: l:0 f:0 s:488
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "0"
2012/09/15 22:11:05 [debug] 27412#0: *1 http file cache set header
2012/09/15 22:11:05 [debug] 27412#0: *1 http cacheable: 1
2012/09/15 22:11:05 [debug] 27412#0: *1 http upstream process upstream
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe read upstream: 1
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe preread: 3659
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 01
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 06
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 00
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 01
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 5A
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: E0
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 00
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 00
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record length: 23264
2012/09/15 22:11:05 [debug] 27412#0: *1 input buf #0 00007FADDC03C1C2
2012/09/15 22:11:05 [debug] 27412#0: *1 input buf 00007FADDC03C1C2 3646
2012/09/15 22:11:05 [debug] 27412#0: *1 malloc: 00007FADDC03A000:4096
2012/09/15 22:11:05 [debug] 27412#0: *1 readv: eof:0, avail:4186, err:0
2012/09/15 22:11:05 [debug] 27412#0: *1 readv: 1, last:4096
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe recv chain: 4096
2012/09/15 22:11:05 [debug] 27412#0: *1 input buf #1 00007FADDC03A000
2012/09/15 22:11:05 [debug] 27412#0: *1 input buf 00007FADDC03A000 4096
2012/09/15 22:11:05 [debug] 27412#0: *1 malloc: 00007FADDC038000:4096
2012/09/15 22:11:05 [debug] 27412#0: *1 readv: eof:0, avail:90, err:0
2012/09/15 22:11:05 [debug] 27412#0: *1 readv: 1, last:4096
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe recv chain: 90
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf in s:1 t:1 f:0 00007FADDC03C000, pos 00007FADDC03C1C2, size: 3646 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf in s:1 t:1 f:0 00007FADDC03A000, pos 00007FADDC03A000, size: 4096 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf free s:0 t:1 f:0 00007FADDC038000, pos 00007FADDC038000, size: 90 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe length: 15522
2012/09/15 22:11:05 [debug] 27412#0: *1 add cleanup: 00007FADDC03ED60
2012/09/15 22:11:05 [debug] 27412#0: *1 hashed path: /var/tmp/nginx/fastcgi/0000000001
2012/09/15 22:11:05 [debug] 27412#0: *1 temp fd:62
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe write downstream: 1
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe write busy: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe write: out:00007FADDC03ED90, f:0
2012/09/15 22:11:05 [debug] 27412#0: *1 http output filter "/admin/content/file?"
2012/09/15 22:11:05 [debug] 27412#0: *1 http copy filter: "/admin/content/file?"
2012/09/15 22:11:05 [debug] 27412#0: *1 malloc: 00007FADDC71B800:32768
2012/09/15 22:11:05 [debug] 27412#0: *1 read: 62, 00007FADDC71B800, 7742, 437
2012/09/15 22:11:05 [debug] 27412#0: *1 image filter
2012/09/15 22:11:05 [debug] 27412#0: *1 xslt filter body
2012/09/15 22:11:05 [debug] 27412#0: *1 http postpone filter "/admin/content/file?" 00007FADDC03EEE8
2012/09/15 22:11:05 [debug] 27412#0: *1 http gzip filter
2012/09/15 22:11:05 [debug] 27412#0: *1 malloc: 0000000107CC0000:270336
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip alloc: n:1 s:5936 a:8192 p:0000000107CC0000
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip alloc: n:32768 s:2 a:65536 p:0000000107CC2000
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip alloc: n:32768 s:2 a:65536 p:0000000107CD2000
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip alloc: n:32768 s:2 a:65536 p:0000000107CE2000
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip alloc: n:16384 s:4 a:65536 p:0000000107CF2000
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip in: 00007FADDC03EF08
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip in_buf:00007FADDC03EE88 ni:00007FADDC71B800 ai:7742
2012/09/15 22:11:05 [debug] 27412#0: *1 malloc: 00007FADDC577600:8192
2012/09/15 22:11:05 [debug] 27412#0: *1 deflate in: ni:00007FADDC71B800 no:00007FADDC577600 ai:7742 ao:8192 fl:0 redo:0
2012/09/15 22:11:05 [debug] 27412#0: *1 deflate out: ni:00007FADDC71D63E no:00007FADDC577600 ai:0 ao:8192 rc:0
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip in_buf:00007FADDC03EE88 pos:00007FADDC71B800
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip in: 0000000000000000
2012/09/15 22:11:05 [debug] 27412#0: *1 http copy filter: 0 "/admin/content/file?"
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe write busy: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe write: out:0000000000000000, f:0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe read upstream: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf free s:0 t:1 f:0 00007FADDC038000, pos 00007FADDC038000, size: 90 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf free s:0 t:1 f:0 00007FADDC03C000, pos 00007FADDC03C000, size: 0 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf free s:0 t:1 f:0 00007FADDC03A000, pos 00007FADDC03A000, size: 0 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe length: 15522
2012/09/15 22:11:05 [debug] 27412#0: *1 event timer del: 61: 1347754264371
2012/09/15 22:11:05 [debug] 27412#0: *1 event timer add: 61: 14400000:1347754265274
2012/09/15 22:11:05 [debug] 27412#0: *1 http upstream request: "/admin/content/file?"
2012/09/15 22:11:05 [debug] 27412#0: *1 http upstream process upstream
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe read upstream: 1
2012/09/15 22:11:05 [debug] 27412#0: *1 readv: eof:0, avail:8192, err:0
2012/09/15 22:11:05 [debug] 27412#0: *1 readv: 3, last:4096
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe recv chain: 8192
2012/09/15 22:11:05 [debug] 27412#0: *1 input buf #2 00007FADDC038000
2012/09/15 22:11:05 [debug] 27412#0: *1 input buf 00007FADDC038000 4096
2012/09/15 22:11:05 [debug] 27412#0: *1 input buf #3 00007FADDC03C000
2012/09/15 22:11:05 [debug] 27412#0: *1 input buf 00007FADDC03C000 4096
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf in s:1 t:1 f:0 00007FADDC038000, pos 00007FADDC038000, size: 4096 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf in s:1 t:1 f:0 00007FADDC03C000, pos 00007FADDC03C000, size: 4096 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf free s:0 t:1 f:0 00007FADDC03A000, pos 00007FADDC03A000, size: 90 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe length: 7330
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe write downstream: 1
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe write busy: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe write: out:00007FADDC03EC08, f:0
2012/09/15 22:11:05 [debug] 27412#0: *1 http output filter "/admin/content/file?"
2012/09/15 22:11:05 [debug] 27412#0: *1 http copy filter: "/admin/content/file?"
2012/09/15 22:11:05 [debug] 27412#0: *1 read: 62, 00007FADDC71B800, 8192, 8179
2012/09/15 22:11:05 [debug] 27412#0: *1 image filter
2012/09/15 22:11:05 [debug] 27412#0: *1 xslt filter body
2012/09/15 22:11:05 [debug] 27412#0: *1 http postpone filter "/admin/content/file?" 00007FADDC03EEE8
2012/09/15 22:11:05 [debug] 27412#0: *1 http gzip filter
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip in: 00007FADDC03EF88
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip in_buf:00007FADDC03EE88 ni:00007FADDC71B800 ai:8192
2012/09/15 22:11:05 [debug] 27412#0: *1 deflate in: ni:00007FADDC71B800 no:00007FADDC577600 ai:8192 ao:8192 fl:0 redo:0
2012/09/15 22:11:05 [debug] 27412#0: *1 deflate out: ni:00007FADDC71D800 no:00007FADDC577600 ai:0 ao:8192 rc:0
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip in_buf:00007FADDC03EE88 pos:00007FADDC71B800
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip in: 0000000000000000
2012/09/15 22:11:05 [debug] 27412#0: *1 http copy filter: 0 "/admin/content/file?"
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe write busy: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe write: out:0000000000000000, f:0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe read upstream: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf free s:0 t:1 f:0 00007FADDC03A000, pos 00007FADDC03A000, size: 90 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf free s:0 t:1 f:0 00007FADDC038000, pos 00007FADDC038000, size: 0 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf free s:0 t:1 f:0 00007FADDC03C000, pos 00007FADDC03C000, size: 0 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe length: 7330
2012/09/15 22:11:05 [debug] 27412#0: *1 event timer: 61, old: 1347754265274, new: 1347754265276
2012/09/15 22:11:05 [debug] 27412#0: *1 http upstream request: "/admin/content/file?"
2012/09/15 22:11:05 [debug] 27412#0: *1 http upstream process upstream
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe read upstream: 1
2012/09/15 22:11:05 [debug] 27412#0: *1 readv: eof:0, avail:7240, err:0
2012/09/15 22:11:05 [debug] 27412#0: *1 readv: 3, last:4096
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe recv chain: 7240
2012/09/15 22:11:05 [debug] 27412#0: *1 input buf #4 00007FADDC03A000
2012/09/15 22:11:05 [debug] 27412#0: *1 input buf 00007FADDC03A000 4096
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf in s:1 t:1 f:0 00007FADDC03A000, pos 00007FADDC03A000, size: 4096 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf free s:0 t:1 f:0 00007FADDC038000, pos 00007FADDC038000, size: 3234 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf free s:0 t:1 f:0 00007FADDC03C000, pos 00007FADDC03C000, size: 0 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe length: 3234
2012/09/15 22:11:05 [debug] 27412#0: *1 input buf #5 00007FADDC038000
2012/09/15 22:11:05 [debug] 27412#0: *1 input buf 00007FADDC038000 3234
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe write downstream: 1
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe write busy: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe write: out:00007FADDC03ED90, f:0
2012/09/15 22:11:05 [debug] 27412#0: *1 http output filter "/admin/content/file?"
2012/09/15 22:11:05 [debug] 27412#0: *1 http copy filter: "/admin/content/file?"
2012/09/15 22:11:05 [debug] 27412#0: *1 read: 62, 00007FADDC71B800, 7330, 16371
2012/09/15 22:11:05 [debug] 27412#0: *1 image filter
2012/09/15 22:11:05 [debug] 27412#0: *1 xslt filter body
2012/09/15 22:11:05 [debug] 27412#0: *1 http postpone filter "/admin/content/file?" 00007FADDC03EEE8
2012/09/15 22:11:05 [debug] 27412#0: *1 http gzip filter
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip in: 00007FADDC03EFA8
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip in_buf:00007FADDC03EE88 ni:00007FADDC71B800 ai:7330
2012/09/15 22:11:05 [debug] 27412#0: *1 deflate in: ni:00007FADDC71B800 no:00007FADDC577600 ai:7330 ao:8192 fl:0 redo:0
2012/09/15 22:11:05 [debug] 27412#0: *1 deflate out: ni:00007FADDC71D4A2 no:00007FADDC577600 ai:0 ao:8192 rc:0
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip in_buf:00007FADDC03EE88 pos:00007FADDC71B800
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip in: 0000000000000000
2012/09/15 22:11:05 [debug] 27412#0: *1 http copy filter: 0 "/admin/content/file?"
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe write busy: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe write: out:0000000000000000, f:0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe read upstream: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf free s:0 t:1 f:0 00007FADDC03C000, pos 00007FADDC03C000, size: 0 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf free s:0 t:1 f:0 00007FADDC03A000, pos 00007FADDC03A000, size: 0 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf free s:0 t:1 f:0 00007FADDC038000, pos 00007FADDC038000, size: 0 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe length: 1
2012/09/15 22:11:05 [debug] 27412#0: *1 event timer: 61, old: 1347754265274, new: 1347754265276
2012/09/15 22:11:05 [debug] 27412#0: *1 http upstream request: "/admin/content/file?"
2012/09/15 22:11:05 [debug] 27412#0: *1 http upstream process upstream
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe read upstream: 1
2012/09/15 22:11:05 [debug] 27412#0: *1 readv: eof:0, avail:32, err:0
2012/09/15 22:11:05 [debug] 27412#0: *1 readv: 3, last:4096
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe recv chain: 32
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf free s:0 t:1 f:0 00007FADDC03C000, pos 00007FADDC03C000, size: 32 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf free s:0 t:1 f:0 00007FADDC03A000, pos 00007FADDC03A000, size: 0 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe buf free s:0 t:1 f:0 00007FADDC038000, pos 00007FADDC038000, size: 0 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe length: 1
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 01
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 06
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 00
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 01
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 00
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 05
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 03
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 00
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record length: 5
2012/09/15 22:11:05 [debug] 27412#0: *1 input buf #6 00007FADDC03C008
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 01
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 03
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 00
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 01
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 00
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 08
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 00
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record byte: 00
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi record length: 8
2012/09/15 22:11:05 [debug] 27412#0: *1 http fastcgi sent end request
2012/09/15 22:11:05 [debug] 27412#0: *1 input buf 00007FADDC03C008 5
2012/09/15 22:11:05 [debug] 27412#0: *1 write: 62, 00007FADDC03C008, 5, 23701
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe write downstream: 1
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe write downstream flush out
2012/09/15 22:11:05 [debug] 27412#0: *1 http output filter "/admin/content/file?"
2012/09/15 22:11:05 [debug] 27412#0: *1 http copy filter: "/admin/content/file?"
2012/09/15 22:11:05 [debug] 27412#0: *1 read: 62, 00007FADDC71B800, 5, 23701
2012/09/15 22:11:05 [debug] 27412#0: *1 image filter
2012/09/15 22:11:05 [debug] 27412#0: *1 xslt filter body
2012/09/15 22:11:05 [debug] 27412#0: *1 http postpone filter "/admin/content/file?" 00007FADDC03EEE8
2012/09/15 22:11:05 [debug] 27412#0: *1 http gzip filter
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip in: 00007FADDC03EFC8
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip in_buf:00007FADDC03EE88 ni:00007FADDC71B800 ai:5
2012/09/15 22:11:05 [debug] 27412#0: *1 deflate in: ni:00007FADDC71B800 no:00007FADDC577600 ai:5 ao:8192 fl:0 redo:0
2012/09/15 22:11:05 [debug] 27412#0: *1 deflate out: ni:00007FADDC71B805 no:00007FADDC577600 ai:0 ao:8192 rc:0
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip in_buf:00007FADDC03EE88 pos:00007FADDC71B800
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip in: 0000000000000000
2012/09/15 22:11:05 [debug] 27412#0: *1 http copy filter: 0 "/admin/content/file?"
2012/09/15 22:11:05 [debug] 27412#0: *1 pipe write downstream done
2012/09/15 22:11:05 [debug] 27412#0: *1 event timer: 61, old: 1347754265274, new: 1347754265336
2012/09/15 22:11:05 [debug] 27412#0: *1 http file cache update
2012/09/15 22:11:05 [debug] 27412#0: *1 http file cache rename: "/var/tmp/nginx/fastcgi/0000000001" to "/var/tmp/nginx/microcache/2/16/f4c511d0d30721b17213e1b81745d162"
2012/09/15 22:11:05 [debug] 27412#0: *1 http upstream exit: 0000000000000000
2012/09/15 22:11:05 [debug] 27412#0: *1 finalize http upstream request: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 finalize http fastcgi request
2012/09/15 22:11:05 [debug] 27412#0: *1 free keepalive peer
2012/09/15 22:11:05 [debug] 27412#0: *1 free keepalive peer: saving connection 0000000109861E40
2012/09/15 22:11:05 [debug] 27412#0: *1 event timer del: 61: 1347754265274
2012/09/15 22:11:05 [debug] 27412#0: *1 free rr peer 1 0
2012/09/15 22:11:05 [debug] 27412#0: *1 http upstream temp fd: 62
2012/09/15 22:11:05 [debug] 27412#0: *1 posix_memalign: 00007FADDC036000:4096 @16
2012/09/15 22:11:05 [debug] 27412#0: *1 http output filter "/admin/content/file?"
2012/09/15 22:11:05 [debug] 27412#0: *1 http copy filter: "/admin/content/file?"
2012/09/15 22:11:05 [debug] 27412#0: *1 image filter
2012/09/15 22:11:05 [debug] 27412#0: *1 xslt filter body
2012/09/15 22:11:05 [debug] 27412#0: *1 http postpone filter "/admin/content/file?" 00007FFF587CE920
2012/09/15 22:11:05 [debug] 27412#0: *1 http gzip filter
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip in: 00007FADDC03EFD8
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip in_buf:00007FADDC036020 ni:0000000000000000 ai:0
2012/09/15 22:11:05 [debug] 27412#0: *1 deflate in: ni:0000000000000000 no:00007FADDC577600 ai:0 ao:8192 fl:4 redo:0
2012/09/15 22:11:05 [debug] 27412#0: *1 deflate out: ni:0000000000000000 no:00007FADDC5789F4 ai:0 ao:3084 rc:1
2012/09/15 22:11:05 [debug] 27412#0: *1 gzip in_buf:00007FADDC036020 pos:0000000000000000
2012/09/15 22:11:05 [debug] 27412#0: *1 free: 0000000107CC0000
2012/09/15 22:11:05 [debug] 27412#0: *1 http chunk: 10
2012/09/15 22:11:05 [debug] 27412#0: *1 http chunk: 5116
2012/09/15 22:11:05 [debug] 27412#0: *1 write old buf t:1 f:0 00007FADDC03E848, pos 00007FADDC03E848, size: 488 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 write new buf t:1 f:0 00007FADDC036150, pos 00007FADDC036150, size: 6 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 write new buf t:0 f:0 0000000000000000, pos 000000010754AF98, size: 10 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 write new buf t:1 f:0 00007FADDC577600, pos 00007FADDC577600, size: 5116 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 write new buf t:0 f:0 0000000000000000, pos 0000000107508874, size: 7 file: 0, size: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 http write filter: l:1 f:1 s:5627
2012/09/15 22:11:05 [debug] 27412#0: *1 http write filter limit 0
2012/09/15 22:11:05 [debug] 27412#0: *1 writev: 5627 of 5627
2012/09/15 22:11:05 [debug] 27412#0: *1 http write filter 0000000000000000
2012/09/15 22:11:05 [debug] 27412#0: *1 http copy filter: 0 "/admin/content/file?"
2012/09/15 22:11:05 [debug] 27412#0: *1 http finalize request: 0, "/admin/content/file?" a:1, c:1
2012/09/15 22:11:05 [debug] 27412#0: *1 set http keepalive handler
2012/09/15 22:11:05 [debug] 27412#0: *1 http close request
2012/09/15 22:11:05 [debug] 27412#0: *1 http log handler
2012/09/15 22:11:05 [debug] 27412#0: *1 run cleanup: 00007FADDC03ED60
2012/09/15 22:11:05 [debug] 27412#0: *1 file cleanup: fd:62
2012/09/15 22:11:05 [debug] 27412#0: *1 run cleanup: 00007FADDC040A10
2012/09/15 22:11:05 [debug] 27412#0: *1 run cleanup: 00007FADDC008300
2012/09/15 22:11:05 [debug] 27412#0: *1 free: 00007FADDC577600
2012/09/15 22:11:05 [debug] 27412#0: *1 free: 0000000000000000
2012/09/15 22:11:05 [debug] 27412#0: *1 free: 00007FADDC71B800
2012/09/15 22:11:05 [debug] 27412#0: *1 free: 00007FADDC038000
2012/09/15 22:11:05 [debug] 27412#0: *1 free: 00007FADDC03A000
2012/09/15 22:11:05 [debug] 27412#0: *1 free: 00007FADDC03C000
2012/09/15 22:11:05 [debug] 27412#0: *1 free: 00007FADDC007400, unused: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 free: 00007FADDC040000, unused: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 free: 00007FADDC03E000, unused: 8
2012/09/15 22:11:05 [debug] 27412#0: *1 free: 00007FADDC036000, unused: 3293
2012/09/15 22:11:05 [debug] 27412#0: *1 event timer add: 60: 10000:1347739875336
2012/09/15 22:11:05 [debug] 27412#0: *1 free: 00007FADDC024400
2012/09/15 22:11:05 [debug] 27412#0: *1 free: 00007FADDC008800
2012/09/15 22:11:05 [debug] 27412#0: *1 hc free: 0000000000000000 0
2012/09/15 22:11:05 [debug] 27412#0: *1 hc busy: 0000000000000000 0
2012/09/15 22:11:05 [debug] 27412#0: *1 tcp_nodelay
2012/09/15 22:11:05 [debug] 27412#0: *1 reusable connection: 1
2012/09/15 22:11:05 [debug] 27412#0: *1 http empty handler
2012/09/15 22:11:05 [debug] 27412#0: *1 http keepalive handler
2012/09/15 22:11:05 [debug] 27412#0: *1 malloc: 00007FADDC008800:1024
2012/09/15 22:11:05 [debug] 27412#0: *1 recv: eof:0, avail:940, err:0
2012/09/15 22:11:05 [debug] 27412#0: *1 recv: fd:60 940 of 1024
2012/09/15 22:11:05 [debug] 27412#0: *1 reusable connection: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 malloc: 00007FADDC024400:1312
2012/09/15 22:11:05 [debug] 27412#0: *1 posix_memalign: 00007FADDC036000:4096 @16
2012/09/15 22:11:05 [debug] 27412#0: *1 http process request line
2012/09/15 22:11:05 [debug] 27412#0: *1 http request line: "GET /js/admin_menu/cache/4cd560b9c85ba2f4ac51e8dd666107a9 HTTP/1.1"
2012/09/15 22:11:05 [debug] 27412#0: *1 http uri: "/js/admin_menu/cache/4cd560b9c85ba2f4ac51e8dd666107a9"
2012/09/15 22:11:05 [debug] 27412#0: *1 http args: ""
2012/09/15 22:11:05 [debug] 27412#0: *1 http exten: ""
2012/09/15 22:11:05 [debug] 27412#0: *1 http process request header line
2012/09/15 22:11:05 [debug] 27412#0: *1 http header: "Host: my.host.net"
2012/09/15 22:11:05 [debug] 27412#0: *1 http header: "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/536.25 (KHTML, like Gecko) Version/6.0 Safari/536.25"
2012/09/15 22:11:05 [debug] 27412#0: *1 http header: "Accept: text/plain, */
; q=0.01"
2012/09/15 22:11:05 [debug] 27412#0: 1 http header: "DNT: 1"
2012/09/15 22:11:05 [debug] 27412#0: *1 http header: "X-Requested-With: XMLHttpRequest"
2012/09/15 22:11:05 [debug] 27412#0: *1 http header: "If-Modified-Since: Sat, 15 Sep 2012 17:46:07 +0000"
2012/09/15 22:11:05 [debug] 27412#0: *1 http header: "Referer: http://my.host.net/admin/content/file"
2012/09/15 22:11:05 [debug] 27412#0: *1 http header: "If-None-Match: "1347731167-1""
2012/09/15 22:11:05 [debug] 27412#0: *1 http header: "Accept-Language: en-gb"
2012/09/15 22:11:05 [debug] 27412#0: *1 http header: "Accept-Encoding: gzip, deflate"
2012/09/15 22:11:05 [debug] 27412#0: *1 http header: "Cookie: SESSd04d6442803e6cfe6e2b28ff08fe29c4=LpaPzULUgX2SAuaklSnt1glpAUnIAgNsEGFEM1Q0amk; SESS66d3b3c656cdaa9908c3e47f01bb437a=XYymWB8OAWO0Cf1R5IINo6FI136PzrWndpOEs9bdf1Y; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; sweaver_active_tab=tab-sweaver_plugin_editor; sweaver_open=false; Drupal.tableDrag.showWeight=0; Drupal.toolbar.collapsed=0; pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/09/15 22:11:05 [debug] 27412#0: *1 http header: "Connection: keep-alive"
2012/09/15 22:11:05 [debug] 27412#0: *1 http header done
2012/09/15 22:11:05 [debug] 27412#0: *1 event timer del: 60: 1347739875336
2012/09/15 22:11:05 [debug] 27412#0: *1 generic phase: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 rewrite phase: 1
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var
2012/09/15 22:11:05 [debug] 27412#0: *1 http map started
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/536.25 (KHTML, like Gecko) Version/6.0 Safari/536.25"
2012/09/15 22:11:05 [debug] 27412#0: *1 http map: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/536.25 (KHTML, like Gecko) Version/6.0 Safari/536.25" "0"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "0"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script if
2012/09/15 22:11:05 [debug] 27412#0: *1 http script if: false
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var
2012/09/15 22:11:05 [debug] 27412#0: *1 http geo started: a.b.c.d
2012/09/15 22:11:05 [debug] 27412#0: *1 http geo: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "0"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script if
2012/09/15 22:11:05 [debug] 27412#0: *1 http script if: false
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var
2012/09/15 22:11:05 [debug] 27412#0: *1 http map started
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "GET"
2012/09/15 22:11:05 [debug] 27412#0: *1 http map: "GET" "0"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "0"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script if
2012/09/15 22:11:05 [debug] 27412#0: *1 http script if: false
2012/09/15 22:11:05 [debug] 27412#0: *1 test location: "/"
2012/09/15 22:11:05 [debug] 27412#0: *1 test location: "patches"
2012/09/15 22:11:05 [debug] 27412#0: *1 test location: "fpm-status"
2012/09/15 22:11:05 [debug] 27412#0: *1 test location: "fpm-status-3"
2012/09/15 22:11:05 [debug] 27412#0: *1 test location: "nginx_status"
2012/09/15 22:11:05 [debug] 27412#0: *1 test location: "/sites/default/files/audio/ogg"
2012/09/15 22:11:05 [debug] 27412#0: *1 test location: "/sites/default/files/advagg_js/"
2012/09/15 22:11:05 [debug] 27412#0: *1 test location: "/sites/default/files/advagg_css/"
2012/09/15 22:11:05 [debug] 27412#0: *1 test location: "/help/"
2012/09/15 22:11:05 [debug] 27412#0: *1 test location: ~ "/imagecache/"
2012/09/15 22:11:05 [debug] 27412#0: *1 test location: ~ "/files/styles/"
2012/09/15 22:11:05 [debug] 27412#0: *1 test location: ~ "^.+.(?:css|js|jpe?g|gif|ico|png|html|xml)$"
2012/09/15 22:11:05 [debug] 27412#0: *1 test location: ~ "^.+.(?:pdf|pptx?)$"
2012/09/15 22:11:05 [debug] 27412#0: *1 test location: ~ "^(?:.+.(?:htaccess|make|txt|engine|inc|info|install|module|profile|po|sh|.sql|test|theme|tpl(?:.php)?|xtmpl)|code-style.pl|/Entries.|/Repository|/Root|/Tag|/Template)$"
2012/09/15 22:11:05 [debug] 27412#0: *1 test location: ~ "^.+.php$"
2012/09/15 22:11:05 [debug] 27412#0: *1 test location: ~ "^(.
)/x-progress-id:(\w
)"
2012/09/15 22:11:05 [debug] 27412#0: *1 using configuration "/"
2012/09/15 22:11:05 [debug] 27412#0: *1 http cl:-1 max:10485760
2012/09/15 22:11:05 [debug] 27412#0: *1 rewrite phase: 3
2012/09/15 22:11:05 [debug] 27412#0: *1 rewrite phase: 4
2012/09/15 22:11:05 [debug] 27412#0: *1 post rewrite phase: 5
2012/09/15 22:11:05 [debug] 27412#0: *1 generic phase: 6
2012/09/15 22:11:05 [debug] 27412#0: *1 generic phase: 7
2012/09/15 22:11:05 [debug] 27412#0: *1 generic phase: 8
2012/09/15 22:11:05 [debug] 27412#0: *1 generic phase: 9
2012/09/15 22:11:05 [debug] 27412#0: *1 limit conn: B7CA6CC6 1
2012/09/15 22:11:05 [debug] 27412#0: *1 add cleanup: 00007FADDC036F20
2012/09/15 22:11:05 [debug] 27412#0: *1 access phase: 10
2012/09/15 22:11:05 [debug] 27412#0: *1 access phase: 11
2012/09/15 22:11:05 [debug] 27412#0: *1 post access phase: 12
2012/09/15 22:11:05 [debug] 27412#0: *1 try files phase: 13
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "/js/admin_menu/cache/4cd560b9c85ba2f4ac51e8dd666107a9"
2012/09/15 22:11:05 [debug] 27412#0: *1 trying to use file: "/js/admin_menu/cache/4cd560b9c85ba2f4ac51e8dd666107a9" "/Volumes/MHData/Web/apps/Drupal/js/admin_menu/cache/4cd560b9c85ba2f4ac51e8dd666107a9"
2012/09/15 22:11:05 [debug] 27412#0: *1 trying to use file: "@drupal" "/Volumes/MHData/Web/apps/Drupal@drupal"
2012/09/15 22:11:05 [debug] 27412#0: *1 test location: "@drupal"
2012/09/15 22:11:05 [debug] 27412#0: *1 using location: @drupal "/js/admin_menu/cache/4cd560b9c85ba2f4ac51e8dd666107a9?"
2012/09/15 22:11:05 [debug] 27412#0: *1 rewrite phase: 3
2012/09/15 22:11:05 [debug] 27412#0: *1 rewrite phase: 4
2012/09/15 22:11:05 [debug] 27412#0: *1 post rewrite phase: 5
2012/09/15 22:11:05 [debug] 27412#0: *1 generic phase: 6
2012/09/15 22:11:05 [debug] 27412#0: *1 generic phase: 7
2012/09/15 22:11:05 [debug] 27412#0: *1 generic phase: 8
2012/09/15 22:11:05 [debug] 27412#0: *1 generic phase: 9
2012/09/15 22:11:05 [debug] 27412#0: *1 access phase: 10
2012/09/15 22:11:05 [debug] 27412#0: *1 access phase: 11
2012/09/15 22:11:05 [debug] 27412#0: *1 post access phase: 12
2012/09/15 22:11:05 [debug] 27412#0: *1 try files phase: 13
2012/09/15 22:11:05 [debug] 27412#0: *1 upload-progress: ngx_http_uploadprogress_content_handler
2012/09/15 22:11:05 [debug] 27412#0: *1 posix_memalign: 00007FADDC03E000:4096 @16
2012/09/15 22:11:05 [debug] 27412#0: *1 http init upstream, client timer: 0
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "my.host.net"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "/js/admin_menu/cache/4cd560b9c85ba2f4ac51e8dd666107a9"
2012/09/15 22:11:05 [debug] 27412#0: *1 http cache key: "my.host.net/js/admin_menu/cache/4cd560b9c85ba2f4ac51e8dd666107a9"
2012/09/15 22:11:05 [debug] 27412#0: *1 http map started
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "SESSd04d6442803e6cfe6e2b28ff08fe29c4=LpaPzULUgX2SAuaklSnt1glpAUnIAgNsEGFEM1Q0amk; SESS66d3b3c656cdaa9908c3e47f01bb437a=XYymWB8OAWO0Cf1R5IINo6FI136PzrWndpOEs9bdf1Y; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; sweaver_active_tab=tab-sweaver_plugin_editor; sweaver_open=false; Drupal.tableDrag.showWeight=0; Drupal.toolbar.collapsed=0; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/09/15 22:11:05 [debug] 27412#0: *1 http map: "SESSd04d6442803e6cfe6e2b28ff08fe29c4=LpaPzULUgX2SAuaklSnt1glpAUnIAgNsEGFEM1Q0amk; SESS66d3b3c656cdaa9908c3e47f01bb437a=XYymWB8OAWO0Cf1R5IINo6FI136PzrWndpOEs9bdf1Y; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; sweaver_active_tab=tab-sweaver_plugin_editor; sweaver_open=false; Drupal.tableDrag.showWeight=0; Drupal.toolbar.collapsed=0; pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835." "0"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "0"
2012/09/15 22:11:05 [debug] 27412#0: *1 add cleanup: 00007FADDC036FE8
2012/09/15 22:11:05 [debug] 27412#0: *1 http file cache exists: -5 e:0
2012/09/15 22:11:05 [debug] 27412#0: *1 cache file: "/var/tmp/nginx/microcache/d/df/1deb8dc0a6cf80dc93b326e3a17b2dfd"
2012/09/15 22:11:05 [debug] 27412#0: *1 add cleanup: 00007FADDC03EAD0
2012/09/15 22:11:05 [debug] 27412#0: *1 http file cache lock u:1 wt:0
2012/09/15 22:11:05 [debug] 27412#0: *1 http upstream cache: -5
2012/09/15 22:11:05 [debug] 27412#0: *1 posix_memalign: 00007FADDC040000:4096 @16
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "QUERY_STRING"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "q="
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "/js/admin_menu/cache/4cd560b9c85ba2f4ac51e8dd666107a9"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "&"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "QUERY_STRING: q=/js/admin_menu/cache/4cd560b9c85ba2f4ac51e8dd666107a9&"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "REQUEST_METHOD"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "GET"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "REQUEST_METHOD: GET"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "CONTENT_TYPE"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "CONTENT_TYPE: "
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "CONTENT_LENGTH"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "CONTENT_LENGTH: "
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "SCRIPT_NAME"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "/index.php"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "SCRIPT_NAME: /index.php"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "REQUEST_URI"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "/js/admin_menu/cache/4cd560b9c85ba2f4ac51e8dd666107a9"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "REQUEST_URI: /js/admin_menu/cache/4cd560b9c85ba2f4ac51e8dd666107a9"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "DOCUMENT_URI"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "/js/admin_menu/cache/4cd560b9c85ba2f4ac51e8dd666107a9"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "DOCUMENT_URI: /js/admin_menu/cache/4cd560b9c85ba2f4ac51e8dd666107a9"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "DOCUMENT_ROOT"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "/Volumes/MHData/Web/apps/Drupal"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "DOCUMENT_ROOT: /Volumes/MHData/Web/apps/Drupal"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "SERVER_PROTOCOL"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "HTTP/1.1"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "GATEWAY_INTERFACE"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "CGI/1.1"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "SERVER_SOFTWARE"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "nginx/"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "1.3.5"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "SERVER_SOFTWARE: nginx/1.3.5"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "REMOTE_ADDR"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "a.b.c.d"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "REMOTE_ADDR: a.b.c.d"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "REMOTE_PORT"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "58302"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "REMOTE_PORT: 58302"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "SERVER_ADDR"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "a.b.c.d"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "SERVER_ADDR: a.b.c.d"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "SERVER_PORT"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "80"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "SERVER_PORT: 80"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "SERVER_NAME"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "my.host.net"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "SERVER_NAME: my.host.net"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "REDIRECT_STATUS"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "200"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "REDIRECT_STATUS: 200"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "SCRIPT_FILENAME"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script var: "/Volumes/MHData/Web/apps/Drupal"
2012/09/15 22:11:05 [debug] 27412#0: *1 http script copy: "/index.php"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "SCRIPT_FILENAME: /Volumes/MHData/Web/apps/Drupal/index.php"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "HTTP_HOST: my.host.net"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_1) AppleWebKit/536.25 (KHTML, like Gecko) Version/6.0 Safari/536.25"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "HTTP_ACCEPT: text/plain, */
; q=0.01"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "HTTP_DNT: 1"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "HTTP_X_REQUESTED_WITH: XMLHttpRequest"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "HTTP_REFERER: http://my.host.net/admin/content/file"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "HTTP_ACCEPT_LANGUAGE: en-gb"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "HTTP_ACCEPT_ENCODING: gzip, deflate"
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "HTTP_COOKIE: SESSd04d6442803e6cfe6e2b28ff08fe29c4=LpaPzULUgX2SAuaklSnt1glpAUnIAgNsEGFEM1Q0amk; SESS66d3b3c656cdaa9908c3e47f01bb437a=XYymWB8OAWO0Cf1R5IINo6FI136PzrWndpOEs9bdf1Y; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; sweaver_active_tab=tab-sweaver_plugin_editor; sweaver_open=false; Drupal.tableDrag.showWeight=0; Drupal.toolbar.collapsed=0; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/09/15 22:11:05 [debug] 27412#0: *1 fastcgi param: "HTTP_CONNECTION: keep-alive"
2012/09/15 22:11:05 [debug] 27412#0: *1 http cleanup add: 00007FADDC03EC50
2012/09/15 22:11:05 [debug] 27412#0: *1 init keepalive peer
2012/09/15 22:11:05 [debug] 27412#0: *1 get keepalive peer
2012/09/15 22:11:05 [debug] 27412#0: *1 get rr peer, try: 1
2012/09/15 22:11:05 [debug] 27412#0: *1 get keepalive peer: using connection 0000000109861E40
2012/09/15 22:11:05 [debug] 27412#0: *1 http upstream connect: -4
2012/09/15 22:11:05 [debug] 27412#0: *1 http upstream send request
2012/09/15 22:11:05 [debug] 27412#0: *1 chain writer buf fl:0 s:1464
2012/09/15 22:11:05 [debug] 27412#0: *1 chain writer in: 00007FADDC03ECC8
2012/09/15 22:11:05 [debug] 27412#0: *1 writev: 1464 of 1464
2012/09/15 22:11:05 [debug] 27412#0: *1 chain writer out: 0000000000000000
2012/09/15 22:11:05 [debug] 27412#0: *1 event timer add: 61: 14400000:1347754265753
2012/09/15 22:11:05 [debug] 27412#0: *1 http finalize request: -4, "/js/admin_menu/cache/4cd560b9c85ba2f4ac51e8dd666107a9?" a:1, c:3
2012/09/15 22:11:05 [debug] 27412#0: *1 http request count:3 blk:0
2012/09/15 22:11:05 [debug] 27412#0: *1 http finalize request: -4, "/js/admin_menu/cache/4cd560b9c85ba2f4ac51e8dd666107a9?" a:1, c:2
2012/09/15 22:11:05 [debug] 27412#0: *1 http request count:2 blk:0
2012/09/15 22:11:06 [debug] 27412#0: *1 http upstream request: "/js/admin_menu/cache/4cd560b9c85ba2f4ac51e8dd666107a9?"
2012/09/15 22:11:06 [debug] 27412#0: *1 http upstream process header
2012/09/15 22:11:06 [debug] 27412#0: *1 malloc: 00007FADDC007400:4096
2012/09/15 22:11:06 [debug] 27412#0: *1 recv: eof:0, avail:8192, err:0
2012/09/15 22:11:06 [debug] 27412#0: *1 recv: fd:61 3972 of 3972
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi record byte: 01
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi record byte: 06
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi record byte: 00
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi record byte: 01
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi record byte: 1F
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi record byte: F8
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi record byte: 00
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi record byte: 00
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi record length: 8184
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi header: "X-Drupal-Cache: HIT"
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi header: "Etag: "1347731167-1""
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi header: "X-XSS-Protection: 1; mode=block"
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi header: "X-Content-Type-Options: nosniff"
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi header: "X-Frame-Options: SameOrigin"
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi header: "Expires: Sun, 15 Sep 2013 17:46:07 +0000"
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi header: "Cache-Control: private, max-age=31536000"
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi header: "Content-Type: text/html; charset=utf-8"
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi header: "Content-Language: en-gb"
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi header: "Last-Modified: Sat, 15 Sep 2012 17:46:07 +0000"
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi header: "Vary: Cookie"
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi header: "Vary: Accept-Encoding"
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi parser: 0
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi header: "Content-Encoding: gzip"
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi parser: 1
2012/09/15 22:11:06 [debug] 27412#0: *1 http fastcgi header done
2012/09/15 22:11:06 [debug] 27412#0: *1 http ims:1347731167 lm:1347731167
2012/09/15 22:11:06 [debug] 27412#0: *1 http im:""1347731167-1"" etag:"1347731167-1"
2012/09/15 22:11:06 [debug] 27412#0: *1 http script var: "MISS"
2012/09/15 22:11:06 [debug] 27412#0: *1 uploadprogress error-tracker error: 0
2012/09/15 22:11:06 [debug] 27412#0: *1 xslt filter header
2012/09/15 22:11:06 [debug] 27412#0: *1 HTTP/1.1 304 Not Modified
Server: nginx
Date: Sat, 15 Sep 2012 20:11:06 GMT
Connection: keep-alive
Keep-Alive: timeout=10
Etag: "1347731167-1"
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
X-Frame-Options: SameOrigin
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Cache-Control: no-cache
Content-Language: en-gb
Last-Modified: Sat, 15 Sep 2012 17:46:07 +0000
Vary: Cookie
Vary: Accept-Encoding
X-Micro-Cache: MISS

2012/09/15 22:11:06 [debug] 27412#0: *1 write new buf t:1 f:0 00007FADDC040870, pos 00007FADDC040870, size: 442 file: 0, size: 0
2012/09/15 22:11:06 [debug] 27412#0: *1 http write filter: l:1 f:0 s:442
2012/09/15 22:11:06 [debug] 27412#0: *1 http write filter limit 0
2012/09/15 22:11:06 [debug] 27412#0: *1 writev: 442 of 442
2012/09/15 22:11:06 [debug] 27412#0: *1 http write filter 0000000000000000
2012/09/15 22:11:06 [debug] 27412#0: *1 http script var: "0"
2012/09/15 22:11:06 [debug] 27412#0: *1 http file cache set header
2012/09/15 22:11:06 [debug] 27412#0: *1 http cacheable: 1
2012/09/15 22:11:06 [debug] 27412#0: *1 http upstream process upstream
2012/09/15 22:11:06 [debug] 27412#0: *1 pipe read upstream: 1
2012/09/15 22:11:06 [debug] 27412#0: *1 pipe preread: 3566
2012/09/15 22:11:06 [debug] 27412#0: *1 input buf #0 00007FADDC007612
2012/09/15 22:11:06 [debug] 27412#0: *1 input buf 00007FADDC007612 3566
2012/09/15 22:11:06 [debug] 27412#0: *1 malloc: 00007FADDC03C000:4096
2012/09/15 22:11:06 [debug] 27412#0: *1 readv: eof:0, avail:4220, err:0
2012/09/15 22:11:06 [debug] 27412#0: *1 readv: 1, last:4096
2012/09/15 22:11:06 [debug] 27412#0: *1 pipe recv chain: 4096
2012/09/15 22:11:06 [debug] 27412#0: *1 input buf #1 00007FADDC03C000
2012/09/15 22:11:06 [debug] 27412#0: *1 input buf 00007FADDC03C000 4096
2012/09/15 22:11:06 [debug] 27412#0: *1 malloc: 00007FADDC03A000:4096
2012/09/15 22:11:06 [debug] 27412#0: *1 readv: eof:0, avail:124, err:0
2012/09/15 22:11:06 [debug] 27412#0: *1 readv: 1, last:4096
2012/09/15 22:11:06 [debug] 27412#0: *1 pipe recv chain: 124
2012/09/15 22:11:06 [debug] 27412#0: *1 pipe buf in s:1 t:1 f:0 00007FADDC007400, pos 00007FADDC007612, size: 3566 file: 0, size: 0
2012/09/15 22:11:06 [debug] 27412#0: *1 pipe buf in s:1 t:1 f:0 00007FADDC03C000, pos 00007FADDC03C000, size: 4096 file: 0, size: 0
2012/09/15 22:11:06 [debug] 27412#0: *1 pipe buf free s:0 t:1 f:0 00007FADDC03A000, pos 00007FADDC03A000, size: 124 file: 0, size: 0
2012/09/15 22:11:06 [debug] 27412#0: *1 pipe length: 124
2012/09/15 22:11:06 [debug] 27412#0: *1 input buf #2 00007FADDC03A000
2012/09/15 22:11:06 [debug] 27412#0: *1 input buf 00007FADDC03A000 124
2012/09/15 22:11:06 [debug] 27412#0: *1 add cleanup: 00007FADDC040DA0
2012/09/15 22:11:06 [debug] 27412#0: *1 hashed path: /var/tmp/nginx/fastcgi/0000000002
2012/09/15 22:11:06 [debug] 27412#0: *1 temp fd:62
2012/09/15 22:11:06 [debug] 27412#0: *1 pipe write downstream: 1
2012/09/15 22:11:06 [debug] 27412#0: *1 pipe write busy: 0
2012/09/15 22:11:06 [debug] 27412#0: *1 pipe write: out:00007FADDC040A40

@perusio
Copy link
Owner

perusio commented Sep 17, 2012

I don't see anything particularly wrong at first sight. You get the proper status for each request. OTOH from above you have (had) permissions problems with your files directory. Returning to the log, Nginx finds the location, forwards the request to the FCGI upstream, gets the response with a 200 status. From the log it seems OK. In a first approach.

@Sil68
Copy link
Author

Sil68 commented Sep 17, 2012

Hmm....a tough one, it would seem. :(

Anything else I can look into, enable any further debugging (eg. php)?

On 17.09.2012, at 09:18, António P. P. Almeida notifications@github.com wrote:

I don't see anything particularly wrong at first sight. You get the proper status for each request. OTOH from above you have (had) permissions problems with your files directory. Returning to the log, Nginx finds the location, forwards the request to the FCGI upstream, gets the response with a 200 status. From the log it seems OK. In a first approach.


Reply to this email directly or view it on GitHub.

@perusio
Copy link
Owner

perusio commented Sep 17, 2012

Yes there's a php-fpm option that prints information about script processing. Set it to debug.

@Sil68
Copy link
Author

Sil68 commented Sep 19, 2012

Well, I'm using 'php-cgi' instead of 'php-fpm', as instructed by the nginx wiki, and as I had no luck with 'php-fpm' at all. :(

Are there any specific php/pear/pecl modules/extensions to install or on the other hand to be removed?

On 18.09.2012, at 00:03, António P. P. Almeida notifications@github.com wrote:

Yes there's a php-fpm option that prints information about script processing. Set it to debug.


Reply to this email directly or view it on GitHub.

@Sil68
Copy link
Author

Sil68 commented Sep 19, 2012

Btw. as I'm also migrating from WP to Drupal, I've setup WP on top of nginx in parallel, and there the upload/only FTP access to the webserver is also appearing...

So the upload issue seems to be unrelated to Drupal...

I've also tried different browsers (Safari, Firefox, Opera, Chrome, OmniWeb), but to no avail...one and the very same behaviour across all these browsers...

PECL modules/extensions installed

Package Version State
APC 3.1.9 stable
uploadprogress 1.0.3.1 stable

PEAR modules/extensions installed

Package Version State
Archive_Tar 1.3.10 stable
Console_Getopt 1.3.1 stable
PEAR 1.9.4 stable
Structures_Graph 1.0.4 stable
XML_Util 1.2.1 stable

PHP modules/extensions installed/configuration

Usage: /usr/local/bin/php-config [OPTION]
Options:
--prefix [/Volumes/MHData/opt/homebrew/Cellar/php54/5.4.6]
--includes [-I/Volumes/MHData/opt/homebrew/Cellar/php54/5.4.6/include/php -I/Volumes/MHData/opt/homebrew/Cellar/php54/5.4.6/include/php/main -I/Volumes/MHData/opt/homebrew/Cellar/php54/5.4.6/include/php/TSRM -I/Volumes/MHData/opt/homebrew/Cellar/php54/5.4.6/include/php/Zend -I/Volumes/MHData/opt/homebrew/Cellar/php54/5.4.6/include/php/ext -I/Volumes/MHData/opt/homebrew/Cellar/php54/5.4.6/include/php/ext/date/lib]
--ldflags [ -L/Volumes/MHData/opt/homebrew/Cellar/libxml2/2.8.0/lib -L/Volumes/MHData/opt/homebrew/Cellar/openssl/1.0.1c/lib -L/Volumes/MHData/opt/homebrew/Cellar/zlib/1.2.7/lib -L/Volumes/MHData/opt/homebrew/Cellar/curl/7.27.0/lib -L/Volumes/MHData/opt/homebrew/Cellar/jpeg/8d/lib -L/Volumes/MHData/opt/homebrew/Cellar/libpng/1.5.12/lib -L/Volumes/MHData/opt/homebrew/Cellar/freetype/2.4.10/lib -L/Volumes/MHData/opt/homebrew/Cellar/gettext/0.18.1.1/lib -L/Volumes/MHData/opt/homebrew/Cellar/gmp/5.0.5/lib -L/usr/local/lib -L/Volumes/MHData/opt/homebrew/Cellar/imap-uw/2007f/lib -L/Volumes/MHData/opt/homebrew/Cellar/icu4c/49.1.2/lib -L/Volumes/MHData/opt/homebrew/Cellar/mcrypt/2.5.8/lib -L/Volumes/MHData/opt/homebrew/Cellar/freetds/0.91/lib -L/Volumes/MHData/opt/homebrew/Cellar/unixodbc/2.3.1/lib -L/Volumes/MHData/opt/homebrew/Cellar/postgresql/9.1.4/lib -L/Volumes/MHData/opt/homebrew/Cellar/tidy/20090325/lib]
--libs [ -lc-client -lz -lexslt -ltidy -lresolv -ledit -lncurses -lpq -lpq -lsybdb -lsybdb -lmcrypt -lltdl -lldap -llber -lstdc++ -lcrypto -lssl -lcrypto -lpam -liconv -liconv -lgmp -lintl -lfreetype -lpng -lz -ljpeg -lcrypto -lssl -lcrypto -lcurl -lbz2 -lz -lcrypto -lssl -lcrypto -lm -lxml2 -lz -lm -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lcurl -lssh2 -lssl -lcrypto -lldap -lssl -lcrypto -lz -lz -lxml2 -lz -lm -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lm -licui18n -licuuc -licudata -lm -licuio -lodbc -lodbc -lxml2 -lz -lm -lnetsnmp -lcrypto -lxml2 -lz -lm -lxml2 -lz -lm -lxml2 -lz -lm -lxml2 -lz -lm -lxml2 -lz -lm -lxml2 -lz -lm -lxml2 -lxslt ]
--extension-dir [/Volumes/MHData/opt/homebrew/Cellar/php54/5.4.6/lib/php/extensions/no-debug-non-zts-20100525]
--include-dir [/Volumes/MHData/opt/homebrew/Cellar/php54/5.4.6/include/php]
--man-dir [/Volumes/MHData/opt/homebrew/Cellar/php54/5.4.6/share/man]
--php-binary [/Volumes/MHData/opt/homebrew/Cellar/php54/5.4.6/bin/php]
--php-sapis [ cli fpm cgi]
--configure-options [--prefix=/Volumes/MHData/opt/homebrew/Cellar/php54/5.4.6 --disable-debug --localstatedir=/usr/local/var --sysconfdir=/usr/local/etc/php/5.4 --with-config-file-path=/usr/local/etc/php/5.4 --with-config-file-scan-dir=/usr/local/etc/php/5.4/conf.d --with-iconv-dir=/usr --enable-dba --with-ndbm=/usr --enable-exif --enable-soap --enable-wddx --enable-ftp --enable-sockets --enable-zip --enable-pcntl --enable-shmop --enable-sysvsem --enable-sysvshm --enable-sysvmsg --enable-mbstring --enable-mbregex --enable-zend-signals --enable-dtrace --enable-bcmath --enable-calendar --with-zlib=/Volumes/MHData/opt/homebrew/Cellar/zlib/1.2.7 --with-ldap --with-ldap-sasl=/usr --with-xmlrpc --with-kerberos=/usr --with-libxml-dir=/Volumes/MHData/opt/homebrew/Cellar/libxml2/2.8.0 --with-xsl=/usr --with-curl=/Volumes/MHData/opt/homebrew/Cellar/curl/7.27.0 --with-gd --enable-gd-native-ttf --with-freetype-dir=/Volumes/MHData/opt/homebrew/Cellar/freetype/2.4.10 --with-mcrypt=/Volumes/MHData/opt/homebrew/Cellar/mcrypt/2.5.8 --with-jpeg-dir=/Volumes/MHData/opt/homebrew/Cellar/jpeg/8d --with-png-dir=/Volumes/MHData/opt/homebrew/Cellar/libpng/1.5.12 --with-gettext=/Volumes/MHData/opt/homebrew/Cellar/gettext/0.18.1.1 --with-snmp=/usr --with-mhash --mandir=/Volumes/MHData/opt/homebrew/Cellar/php54/5.4.6/share/man --with-bz2=/usr --with-openssl=/Volumes/MHData/opt/homebrew/Cellar/openssl/1.0.1c --enable-fpm --with-fpm-user=_www --with-fpm-group=_www --with-gmp=/Volumes/MHData/opt/homebrew/Cellar/gmp/5.0.5 --with-imap=/Volumes/MHData/opt/homebrew/Cellar/imap-uw/2007f --with-imap-ssl=/usr --enable-intl --with-icu-dir=/Volumes/MHData/opt/homebrew/Cellar/icu4c/49.1.2 --with-mssql=/Volumes/MHData/opt/homebrew/Cellar/freetds/0.91 --with-pdo-dblib=/Volumes/MHData/opt/homebrew/Cellar/freetds/0.91 --with-mysql-sock=/tmp/mysql.sock --with-mysqli=mysqlnd --with-mysql=mysqlnd --with-pdo-mysql=mysqlnd --with-pgsql=/Volumes/MHData/opt/homebrew/Cellar/postgresql/9.1.4/include]
--version [5.4.6]
--vernum [50406]

On 19.09.2012, at 22:01, Community Community@MMHein.at wrote:

Well, I'm using 'php-cgi' instead of 'php-fpm', as instructed by the nginx wiki, and as I had no luck with 'php-fpm' at all. :(

Are there any specific php/pear/pecl modules/extensions to install or on the other hand to be removed?

On 18.09.2012, at 00:03, António P. P. Almeida notifications@github.com wrote:

Yes there's a php-fpm option that prints information about script processing. Set it to debug.


Reply to this email directly or view it on GitHub.

@perusio
Copy link
Owner

perusio commented Sep 19, 2012

  1. You don't need upload progress. It's an Apache thing.
  2. I don't think the D7 module will work.
  3. php-cgi is almost a fossil. You should use php-fpm. It has been "blessed" by the PHP team.

Are you sure it's not a permissions problem?

@perusio
Copy link
Owner

perusio commented Sep 20, 2012

I mean the nginx upload progress D7 module. D7 site will work fine.

@rjdjohnston
Copy link

php-fpm is the only reliable module. Running cgi made every site we tried setting up on error our once or twice a day. Figure out fpm! You'll be glad you did.

@Sil68
Copy link
Author

Sil68 commented Sep 20, 2012

Thanks mate!

I've replaced 'php-cgi' with 'php-fpm', de-activated the AntiVirus module, updated the whole Drupal shop, et voilá...all of a sudden file uploading is working like a charm! :)

Albeit one funny thing is still puzzling me...when starting the Drupal/Nginx journey, I facilitated 'php-fpm' back then, and all I've ever received was a WSOD! :(

Using 'php-cgi'...just fine!

Anyhow...

On 20.09.2012, at 03:09, RJ Johnston notifications@github.com wrote:

php-fpm is the only reliable module. Running cgi made every site we tried setting up on error our once or twice a day. Figure out fpm! You'll be glad you did.


Reply to this email directly or view it on GitHub.

@Sil68
Copy link
Author

Sil68 commented Sep 20, 2012

Well, as mentioned just now to RJ J., php-fpm did to the trick... :)

Thanks to the both of you!

Begin forwarded message:

From: António P. P. Almeida notifications@github.com
Subject: Re: [drupal-with-nginx] HTTP request status fails / Upload Progress not enabled (#64)
Date: 20. September 2012 01:06:18 MESZ
To: perusio/drupal-with-nginx drupal-with-nginx@noreply.github.com
Cc: Sil68 Community@MMHein.at
Reply-To: perusio/drupal-with-nginx reply@reply.github.com

• You don't need upload progress. It's an Apache thing.

• I don't think the D7 module will work.

• php-cgi is almost a fossil. You should use php-fpm. It has been "blessed" by the PHP team.

Are you sure it's not a permissions problem?


Reply to this email directly or view it on GitHub.

Begin forwarded message:

From: António P. P. Almeida notifications@github.com
Subject: Re: [drupal-with-nginx] HTTP request status fails / Upload Progress not enabled (#64)
Date: 20. September 2012 02:27:50 MESZ
To: perusio/drupal-with-nginx drupal-with-nginx@noreply.github.com
Cc: Sil68 Community@MMHein.at
Reply-To: perusio/drupal-with-nginx reply@reply.github.com

I mean the nginx upload progress D7 module. D7 site will work fine.


Reply to this email directly or view it on GitHub.

@ghost ghost assigned perusio Sep 21, 2012
@perusio
Copy link
Owner

perusio commented Sep 21, 2012

Great! Glad I could be of help. Closing the issue now.

@perusio perusio closed this as completed Sep 21, 2012
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants