prash reddy wrote: > Hi, > > Thanks for responses, sorry to ask the same question again, bcoz i > could not slove the problem. > As i found that IE fetching the entire webpage from weblogic server > intsead of from local cache when i hit the back button. > > So, is there any directive or apache setting that might prevent the > client(browser) to fetch the web page from weblogic server when i hit > the back button. Instead, it can fetch it from local cache. Well IE suffers from many caching bugs, but if you say it used work then try using mod_cache, or just set last modified headers (if you can - if the file isnt dynamic) and if the file is dynamic then your application logic should send the correct headers for the browser functionality it needs. For instance using <IfModule mod_expires.c> ExpiresActive On ExpiresByType image/gif A86400 ExpiresByType image/png A86400 ExpiresByType text/html A3600 #html expires after 1 hour from when accessed </IfModule> would instruct Apache to send the headers Expires: Fri, 16 Mar 2007 23:50:25 GMT Cache-Control: max-age=3600 which might suffice for you. MSIE will then need to start sending this typoe of request header: If-Modified-Since: Sat, 23 Dec 2006 06:55:25 GMT If-None-Match: "5edc1-5ae-c934e2c" If MSIE sends this kind of thing you know that it is saying "do you have a newer version for me" to Apache, if the answer is no then it wont request the file and will retrieve it from its cache. > > Any ideas apprciated. > > Thanks.., > Sharath > > On 3/16/07, *matt farey* <matt.farey@xxxxxxxxx > <mailto:matt.farey@xxxxxxxxx>> wrote: > > > > prash reddy wrote: > > Hi All, > > > > I am working on Apache 2.0.50 on Linux, proxying the requests to > > weblogic server by path using the location block. > > > > Here is the problem: In application,When i simply hit the > browser back > > button, i can see that all the commentents being lost which were > > entered in previuos page. > this is just the way the browser handles caching, simple, set up > apache > to send the same headers that your iPlanet server did, and things > will > work the same. You must use a proxy to see what headers your old > server > sent, or review its config, then set up Apache accordingly, it > really is > this simple. > > > > Its only happening with MSIE, where as it is working fine with > firefox. > > > > is it a problem with application code or apache webserver settings? > > > > Thnaks > > sharath > > > > -- > Matthew Farey > > > > --------------------------------------------------------------------- > The official User-To-User support forum of the Apache HTTP Server > Project. > See <URL:http://httpd.apache.org/userslist.html> for more info. > To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx > <mailto:users-unsubscribe@xxxxxxxxxxxxxxxx> > " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx > <mailto:users-digest-unsubscribe@xxxxxxxxxxxxxxxx> > For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx > <mailto:users-help@xxxxxxxxxxxxxxxx> > > --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx