I'm trying to access cachemgr.cgi via my browser from the same machine that squid is running on. I get the initial page but when I click "continue" I get the following error: Cache Manager Error... socket: (13) Permission denied Here's my squid.conf ACL... ----------------------------- acl all src 0.0.0.0/0.0.0.0 acl manager proto cache_object acl localhost src 127.0.0.1/255.255.255.255 http_access allow manager localhost http_access deny manager I copied cachemgr.cgi to /var/www/cgi-bin/ and chmod 755 it. I have the following in my httpd.conf... ----------------------------- ScriptAlias /cgi-bin/ "/var/www/cgi-bin/" <Location /cgi-bin/cachemgr.cgi> order allow,deny allow from 127.0.0.1 allow from localhost </Location> If I do the following (as root) I get the appropriate output. /usr/local/squid/bin/squidclient -p 3128 cache_object://a/info Any ideas? - louis