Hi squid-users, We're using squid as reverse proxy on several boxes since several months All seems to be working great. But i can find theses on me logs. I can't remenber when this have show up. 2011/10/18 11:39:05| statusIfComplete: Request not yet fully sent "PROPFIND http://my_public_url.com/toto/img-1.gif" 2011/10/18 11:39:06| statusIfComplete: Request not yet fully sent "PROPFIND http://my_public_url.com/toto/img-2.gif" 2011/10/18 11:39:49| statusIfComplete: Request not yet fully sent "PROPFIND http://my_public_url.com/toto/img-3.gif" Should I worry about it ? Did I miss something in the configuration ? We're running squid on debian squeeze (squid 3.1.6). Here's squid conf file : ---------------BEGIN----------------- acl manager proto cache_object acl localhost src 127.0.0.1/32 acl to_localhost dst 127.0.0.0/8 acl SSL_ports port 443 acl Safe_ports port 80 # http acl Safe_ports port 1025-65535 # unregistered ports acl CONNECT method CONNECT http_access allow manager localhost http_access deny manager http_access deny !Safe_ports http_access deny CONNECT !SSL_ports http_access allow all icp_access allow all htcp_access deny all http_port 80 vhost cache_peer 127.0.0.1 parent 8080 0 no-query originserver no-digest cache_peer_domain 127.0.0.1 my_public_url.com hierarchy_stoplist cgi-bin ? cache_mem 6144 MB cache_dir aufs /data/cache 40960 16 256 maximum_object_size 4096 KB maximum_object_size_in_memory 256 KB cache_log /data/logs/squid/cache.log cache_store_log none access_log none refresh_pattern ^ftp: 1440 20% 10080 ignore-reload ignore-no-cache refresh_pattern ^gopher: 1440 0% 1440 ignore-reload ignore-no-cache refresh_pattern (cgi-bin|\?) 0 0% 0 ignore-reload ignore-no-cache refresh_pattern . 0 20% 4320 ignore-reload ignore-no-cache pconn_timeout 60 seconds read_timeout 5 minutes request_timeout 5 seconds quick_abort_max 0 KB quick_abort_min 0 KB client_db off half_closed_clients off client_persistent_connections on server_persistent_connections on visible_hostname my_main_domain_hostname.com unique_hostname squidX.mymain_hostname.com via off snmp_port 0 snmp_access deny all icp_port 3130 udp_incoming_address xxx.xxx.xxx.xxx udp_outgoing_address 255.255.255.255 coredump_dir /var/spool/squid3 cache_replacement_policy heap LFUDA memory_replacement_policy heap LFUDA ---------------END----------------- Best regards, David.