[squid-users] Squid not caching

2010-04-01 Thread jayesh chavan
Hi, My squid is not caching anything.My squid config file contains: acl all src all acl manager proto cache_object acl localhost src 127.0.0.1/32 acl to_localhost dst 127.0.0.0/8 acl localnet src 10.0.0.0/8 # RFC1918 possible internal network acl localnet src 172.16.0.0/12 # RFC1918 pos

[squid-users] Squid redirection

2010-03-24 Thread jayesh chavan
Hi, I have written script which redirects my squid to local apache.It works fine for FOLLOWING SCRIPT #!c:/perl/bin/perl.exe $|=1; while (<>) { s...@http://www.az@http://117.195.4.252@; print; } But whenever I use this script #!c:/perl/bin/perl.exe $|=1; while

[squid-users] Squid not caching anything

2010-03-18 Thread jayesh chavan
Hi, My squid is working but not caching anything.What is problem?Whenever I use purge command for any url,it replies 404 not found. Regards, Jayesh

[squid-users] redirect not working

2010-03-17 Thread jayesh chavan
Hi, I have apache server installed on same host.My redirect program is giving error as access is not allowed.Apache is listening on port 80.My squid config contains: htttp_port 8080 http_access allow manager localhost http_access allow localhost http_access deny manager http_access deny !Safe_p

Re: [squid-users] purge command not working

2010-03-17 Thread jayesh chavan
Hi, I am not specifying anything about port in my command.My command is: squidclient.exe -m PURGE http://www.yourtargetwebsite.com/ Regards, JAyesh

[squid-users] purge command not working

2010-03-17 Thread jayesh chavan
Hi, Purge command is not working.It is giving error as "client: ERROR: Cannot connect to localhost:3128: Unknown error".My squid proxy is listening on port 8080. Regards, Jayesh

Re: [squid-users] squid redirection to local apache

2010-03-16 Thread jayesh chavan
Hi, Plz rply. Regards, Jayesh On Mon, Mar 15, 2010 at 4:22 PM, jayesh chavan wrote: > Hi, >   Its not ssl it is safe_ports. >  Regards, >  Jayesh > > On Mon, Mar 15, 2010 at 3:21 PM, jayesh chavan > wrote: >> 2010/3/15 jayesh chavan : >>> Hi, >>

Re: [squid-users] squid redirection to local apache

2010-03-15 Thread jayesh chavan
Hi, Its not ssl it is safe_ports. Regards, Jayesh On Mon, Mar 15, 2010 at 3:21 PM, jayesh chavan wrote: > 2010/3/15 jayesh chavan : >> Hi, >>   squid is used as normal proxy.Port 80 is in ssl ports by >> default.Apache has to be used only to serve some requested files

Re: [squid-users] squid redirection to local apache

2010-03-15 Thread jayesh chavan
2010/3/15 jayesh chavan : > Hi, >   squid is used as normal proxy.Port 80 is in ssl ports by > default.Apache has to be used only to serve some requested files by > squid as squid can not deliver it. > Regards, >  Jayesh >

[squid-users] Displaying squid cache urls for windows

2010-03-15 Thread jayesh chavan
Hi, Is there any tool like purge for windows to display urls stored in squid cache? Regards, Jayesh

[squid-users] redirect request

2010-03-14 Thread jayesh chavan
Hi, How can I check what http-website is requested to redirect in my perl redirect program?I want to access each request coming and write my file. Regards, Jayesh

Re: [squid-users] squid redirection to local apache

2010-03-14 Thread jayesh chavan
Hi, My apache is listening on port 80.Also port 80 is included in ssl_ports option.The options in squid config. are: http_port 8080 http_access allow manager localhost http_access allow localhost http_access deny manager http_access deny !Safe_ports http_access deny CONNECT !SSL_ports http_acc

[squid-users] squid redirection to local apache

2010-03-14 Thread jayesh chavan
Hi, I have to use redirect program only as it is requirement of my project.So please tell me how should be request forwarded to apache using redirect program only.It is giving error that access is not allowed. Regards, Jayesh

[squid-users] squid redirection to local apache

2010-03-14 Thread jayesh chavan
Hi, I can access my apache server from local browser.But redirection to it using squid not working.My redirect program is: #!c:/perl/bin/perl.exe # enable buffer autoflush $|=1; # read from standard input while (<>) { # perform string substitution: s...@http://www.ewq@http:

Re: [squid-users] squid redirect not working

2010-03-12 Thread jayesh chavan
Hi, I want to direct all my squid cache miss to my local web-server apache.How to configure squid for that purpose? Regards, Jayesh

[squid-users] redirecting to apache

2010-03-12 Thread jayesh chavan
Hi, Can anyone tell me plz,how to redirect squid to a file in apache-httpdocs running on localhost. Regards, Jayesh

[squid-users] squid redirect not working

2010-03-09 Thread jayesh chavan
Hi, I have written redirect program which is not working.The program is as follow: #!c:/perl/bin/perl.exe $|=1; while (<>) { @X = split; $url = $X[0]; if ($url !~ /^http:\/\/www\.hostname\.com/) { $_ = $url; s/^http:\/\/(.*)\/(.*)/http:\/\/www.hostname.com\/\2/; print "301:$_\n"; } else { pr

[squid-users] squid redirection after cache miss

2010-03-09 Thread jayesh chavan
Hi, can we redirect squid after cache miss occurs.also i want to ask can we deliver local files using squid redirection?means suppose i have one file corresponding to google.com,then can i use it to deliver it to client using squid redirection?

[squid-users] Hierarchical Squid Configuartion

2010-03-06 Thread jayesh chavan
Hi, I am installing a squid proxy on a windows machine which has parent proxy at 192.168.7.253.My ip address is 192.168.7.232.My prixy listens on port 8080 and parent proxy listens on port 3128.But its not working.Below are all non-commented lines in my configuration files: acl all src all a