Return-Path: Delivered-To: apmail-httpd-users-archive@www.apache.org Received: (qmail 76017 invoked from network); 14 Apr 2005 14:39:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 14 Apr 2005 14:39:17 -0000 Received: (qmail 43393 invoked by uid 500); 14 Apr 2005 14:38:43 -0000 Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 43333 invoked by uid 500); 14 Apr 2005 14:38:41 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: List-Post: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 43312 invoked by uid 99); 14 Apr 2005 14:38:41 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from Unknown (HELO mail.winfreeacademy.com) (12.45.130.164) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 14 Apr 2005 07:38:33 -0700 Received: from vams.winfreeacademy.com (localhost.localdomain [127.0.0.1]) by mail.winfreeacademy.com (Postfix) with SMTP id 3AF671A979 for ; Thu, 14 Apr 2005 09:38:22 -0500 (CDT) Received: from winfreeacademy.com (ns1.winfreeacademy.com [12.45.130.162]) by mail.winfreeacademy.com (Postfix) with ESMTP id D39FC1A979 for ; Thu, 14 Apr 2005 09:38:21 -0500 (CDT) Message-ID: <425E805D.40402@winfreeacademy.com> Date: Thu, 14 Apr 2005 09:38:21 -0500 From: Laura Vance Organization: WACS User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.3) Gecko/20030312 X-Accept-Language: en-us, en MIME-Version: 1.0 To: users@httpd.apache.org References: <20050413064528.80736.qmail@web52908.mail.yahoo.com> In-Reply-To: <20050413064528.80736.qmail@web52908.mail.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-AntiVirus: Scanned By Vexira Mail Shield X-Virus-Checked: Checked Subject: Re: [users@httpd] How can i minimise the hitts of weblogic server for the static sources. X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N It sounds like you're talking about a cache issue. Does your server have a setting that is telling the browser to not cache anything? Does client browsing your site have their browser cache turned off? Even with it all turned off, you'll still get log entries, but it will be a different result (304 - ) instead of (200 ). The 304 code tells the browser that the file is in their cache. The only thing this does is saves on the file transfer. You will always get the log entries, because apache is set up to log everything. If you could turn your logs off, then when you needed to see something, nobody would be able to help you. Accurate detailed logs are very important... you could even say they are critical. rajas kumar wrote: > Hai thanx, but I think this is the way to creating custom logs. I dont > want to do as u mentioned because its internally hits the server each > time when we send request. Is there any other why to stop hitting > weblogic server for the satic files(jif,images,jsscripts) plz tell > me....... > > */Eimantas Vai�i�nas /* wrote: > > On Wednesday 13 April 2005 04:11, rajas kumar wrote: > > This is my acces log of weblogic. Each time i given request for > images and > > jsscripts access log should not be come in the picture. Below > log which > > shows for jsp pages as well as images and jsscripts. For images and > > jsscripts i dont want to hit the weblogic server how can do the > configure > > to avoid hitting for the images and jsscripts. > > It's possible to tell apache NOT to log certain file types. Use > SetEnvIf > directive and then 'env=' parameter of CustomLog directive for > OTHER file > types. I.e.: > --- > SetEnvIf Request_URI "\.gif$" static > SetEnvIf Request_URI "\.jpg$" static > SetEnvIf Request_URI "\.css$" static > SetEnvIf Request_URI "\.js$" static > > CustomLog /path/to/log/file logFormat env=!static > --- > > > -- > Eimantas Vai�i�nas > VU Skai�iavimo centras > > --------------------------------------------------------------------- > The official User-To-User support forum of the Apache HTTP Server > Project. > See for more info. > To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org > " from the digest: users-digest-unsubscribe@httpd.apache.org > For additional commands, e-mail: users-help@httpd.apache.org > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > -- Thanks, Laura Vance Systems Engineer Winfree Academy Charter Schools 6221 Riverside Dr. Suite 110 Irving, Tx 75039 Web: www.winfreeacademy.com --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org " from the digest: users-digest-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org